fix : 修复专项资金显示情况

This commit is contained in:
2024-06-07 13:24:17 +08:00
parent ec7cf224d3
commit 9655c41492
6 changed files with 84 additions and 109 deletions

View File

@@ -159,7 +159,7 @@ const rules = reactive({
const processStore = useProcessStore()
const processInstanceData = ref()
const processDiagramViewer = ref(false)
const loading = ref(true)
const loading = ref(false)
const showTable = ref(true)
const route = useRoute()
const router = useRouter()
@@ -365,7 +365,6 @@ const handleBack = () => {
onMounted(async () => {
await init()
if (route.query.id) {
loading.value = true
await getDetailInfo()
}
})