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