# Conflicts:
#	pnpm-lock.yaml
#	src/views/ai/model/model/index.vue
#	src/views/bpm/model/form/index.vue
This commit is contained in:
YunaiV
2025-03-14 22:18:04 +08:00
82 changed files with 3492 additions and 1955 deletions

View File

@ -507,3 +507,18 @@ export function jsonParse(str: string) {
return ''
}
}
/**
* 截取字符串
*
* @param name
* @param start
* @param end
*/
export const sliceName = (name: string,start: number, end : number) => {
if (name.length > end) {
return name.slice(start, end)
}
return name
}