fix(bpm): bpm开启,gateway及bpm改造,bpm前端bug解决

This commit is contained in:
徐煜东
2025-04-05 13:15:53 +08:00
parent 94dc68d4d7
commit a0dc7a0a4b
2 changed files with 7130 additions and 8187 deletions

15300
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -536,3 +536,20 @@ export const sliceName = (name: string, start: number, end: number) => {
}
return name
}
/**
* 截取字符串
*
* @param str 字符串
* @param start 开始位置
* @param end 结束位置
*/
export const subString = (str: string, start: number, end: number) => {
if (str.length > end) {
return str.slice(start, end)
}
return str
}