|
|
@ -563,16 +563,18 @@ import DataStdMainTable from '@/views/system/flow/dataStdMainAppr.vue'; // 路 |
|
|
|
import DataStdDictTable from '@/views/system/flow/dataStdDictAppr.vue'; // 路径根据实际调整 |
|
|
|
import DataStdCodeTable from '@/views/system/flow/dataStdCodeAppr.vue'; // 路径根据实际调整 |
|
|
|
import DataAssetMainAppr from "@/views/system/flow/dataAssetMainAppr.vue"; // 路径根据实际调整 |
|
|
|
import { ref, nextTick, computed, watch, reactive, onMounted } from 'vue' |
|
|
|
import cache from "../../../plugins/cache.js"; |
|
|
|
import {Graph} from "@antv/x6"; |
|
|
|
import useUserStore from "@/store/modules/user.js"; |
|
|
|
|
|
|
|
const userStore = useUserStore(); // 正确调用 |
|
|
|
const dsSysList = userStore.dsSysList; // 访问属性 |
|
|
|
const stdMainVisible = ref(false); |
|
|
|
const stdDictVisible = ref(false); |
|
|
|
const stdCodeVisible = ref(false); |
|
|
|
const dataAssetMainVisible = ref(false); |
|
|
|
const { proxy } = getCurrentInstance(); |
|
|
|
import { ref, nextTick, computed, watch, reactive, onMounted } from 'vue' |
|
|
|
import cache from "../../../plugins/cache.js"; |
|
|
|
import {Graph} from "@antv/x6"; |
|
|
|
|
|
|
|
const flowTab = ref('waiting') |
|
|
|
const selectedFlowId = ref(''); |
|
|
|
|
|
|
@ -884,6 +886,7 @@ function showBusinessDataDialog(row){ |
|
|
|
} |
|
|
|
table.showTabClas = showOldTabClas |
|
|
|
oldTableInfo.value = JSON.parse(JSON.stringify(table)) |
|
|
|
oldTableInfo.value.ssysCd = dsSysList.find(item => item.id === oldTableInfo.value.ssysId)?.name |
|
|
|
newTableInfo.value = { |
|
|
|
applyStatus:data.table.applyStatus, |
|
|
|
applyTime:data.table.applyTime, |
|
|
@ -894,7 +897,7 @@ function showBusinessDataDialog(row){ |
|
|
|
pic:data.table.pic, |
|
|
|
recStat:data.table.recStat, |
|
|
|
recSubmPrsn:data.table.recSubmPrsn, |
|
|
|
ssysCd:data.table.ssysCd, |
|
|
|
ssysCd:dsSysList.find(item => item.id === data.table.ssysId)?.name, |
|
|
|
tabClas:data.table.tabClas, |
|
|
|
tabCrrctName:data.table.tabCrrctName, |
|
|
|
tabDesc:data.table.tabDesc, |
|
|
|