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

This reverts commit a0dc7a0a4b.
This commit is contained in:
徐煜东
2025-04-05 13:48:21 +08:00
parent a0dc7a0a4b
commit e289d5c91b
2 changed files with 8241 additions and 7184 deletions

15408
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -536,20 +536,3 @@ 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
}