fix : 屏蔽导出修复角色权限

This commit is contained in:
2024-06-11 20:56:22 +08:00
parent 78ab1ddc45
commit a2977d0702
4 changed files with 47 additions and 36 deletions

View File

@@ -52,7 +52,6 @@ const router = useRouter()
const route = useRoute()
const processStore = useProcessStore()
const loading = ref(false)
const showTinymce = ref(true)
const showTable = ref(true)
const processInstanceData = ref()
const fundForm = ref()
@@ -249,10 +248,8 @@ const getDetailInfo = async () => {
})
if (res.code === 1000) {
formData.value = res.data
showTinymce.value = false
showTable.value = false
nextTick(() => {
showTinymce.value = true
showTable.value = true
})
}