fix : 修复页面bug

This commit is contained in:
2024-07-18 22:06:23 +08:00
parent 3ec7a9c78e
commit 9d5c393ebe
28 changed files with 562 additions and 286 deletions

View File

@@ -23,7 +23,7 @@
<fvTable style="width: 100%;max-height: 300px;" v-if="showTable" height="300" :tableConfig="tableConfig"
:data="fileList" :isSettingCol="false" :pagination="false">
<template #empty>
<el-empty :image-size="99" description="暂无数据" style="padding: 0"/>
<el-empty :image-size="90" description="暂无数据" style="padding: 0"/>
</template>
</fvTable>
<div class="oper-page-btn">
@@ -240,27 +240,29 @@ const handleSubmit = async (instance) => {
if (res.code === 1000) {
tagsViewStore.delVisitedViews(router.currentRoute.value.path)
if (route.query.type === '40') {
console.log('归档实施')
await router.push({
name: 'Filing/attachment',
query: {
id: route.query.projectId
id: route.query.projectId,
requirementId: route.query.requirementId
}
})
} else {
if (router.query.type || router.query.type !== '40') {
if (route.query.type === 'list') {
router.push({
name: 'Implementation/attachment',
query: {
projectId: route.query.projectId
id: route.query.projectId
}
})
} else {
await router.push({
name: 'Implementation/detail',
query: {
id: route.query.id,
state: route.query.state,
id: route.query.requirementId,
projectId: route.query.projectId,
state: route.query.state,
step: '40'
}
})