fix:【BPM 工作流】多次点击流程模型的“排序”后,取消拖拽排序

This commit is contained in:
YunaiV 2025-07-21 16:02:42 +08:00
parent 3ea5bac27a
commit ab46ecb8ea

View File

@ -510,11 +510,16 @@ const isManagerUser = (row: any) => {
/** 处理模型的排序 **/
const handleModelSort = () => {
if (isModelSorting.value) {
//
handleModelSortCancel()
} else {
//
originalData.value = cloneDeep(props.categoryInfo.modelList)
isModelSorting.value = true
initSort()
}
}
/** 处理模型的排序提交 */
const handleModelSortSubmit = async () => {