perf: bpm模型复制优化
parent
2f7200abdb
commit
e44f48c0c4
|
@ -254,6 +254,7 @@ import { checkPermi } from '@/utils/permission'
|
||||||
import { useUserStoreWithOut } from '@/store/modules/user'
|
import { useUserStoreWithOut } from '@/store/modules/user'
|
||||||
import { useAppStore } from '@/store/modules/app'
|
import { useAppStore } from '@/store/modules/app'
|
||||||
import { cloneDeep } from 'lodash-es'
|
import { cloneDeep } from 'lodash-es'
|
||||||
|
import {useTagsView} from "@/hooks/web/useTagsView";
|
||||||
|
|
||||||
defineOptions({ name: 'BpmModel' })
|
defineOptions({ name: 'BpmModel' })
|
||||||
|
|
||||||
|
@ -474,6 +475,7 @@ const handleDeleteCategory = async () => {
|
||||||
} catch {}
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const tagsView = useTagsView();
|
||||||
/** 添加流程模型弹窗 */
|
/** 添加流程模型弹窗 */
|
||||||
const modelFormRef = ref()
|
const modelFormRef = ref()
|
||||||
const openModelForm = (type: string, id?: number) => {
|
const openModelForm = (type: string, id?: number) => {
|
||||||
|
@ -483,6 +485,10 @@ const openModelForm = (type: string, id?: number) => {
|
||||||
push({
|
push({
|
||||||
name: 'BpmModelUpdate',
|
name: 'BpmModelUpdate',
|
||||||
params: { id, type }
|
params: { id, type }
|
||||||
|
}).then((_) => {
|
||||||
|
if (type === 'copy') {
|
||||||
|
tagsView.setTitle('复制流程')
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -160,6 +160,8 @@ const initData = async () => {
|
||||||
// 复制场景
|
// 复制场景
|
||||||
if (route.params.type === 'copy') {
|
if (route.params.type === 'copy') {
|
||||||
delete formData.value.id
|
delete formData.value.id
|
||||||
|
formData.value.name += '副本'
|
||||||
|
formData.value.key += '_copy'
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 新增场景
|
// 新增场景
|
||||||
|
|
Loading…
Reference in New Issue