fix : 修复项目立项重新提交等操作替换到详情页面

This commit is contained in:
2024-06-09 19:12:37 +08:00
parent 812298acce
commit c3e006bba8
2 changed files with 19 additions and 21 deletions

View File

@@ -13,8 +13,15 @@
@getAttachment="getAttachment"
@getOtherFile="getOtherFile" :showFileList="true" :formData="formData"
:preview="route.query.state==3"/>
<div v-if="route.query.state==3">
<baseTitle title="审批记录"></baseTitle>
<div class="process">
<operation-render v-if="processDiagramViewer" :operation-list="data.operationList"
:state="data.state"/>
</div>
</div>
<baseTitle title="流程"></baseTitle>
<div class="approval-record">
<baseTitle title="流程"></baseTitle>
<process-diagram-viewer mode="view" idName="projectApply" v-if="processDiagramViewer"/>
</div>
<div class="oper-page-btn">
@@ -25,6 +32,7 @@
</template>
<script setup lang="jsx">
import OperationRender from '@/views/workflow/common/OperationRender.vue'
import ProcessDiagramViewer from '@/views/workflow/common/ProcessDiagramViewer.vue';
import {ElNotification} from "element-plus";
import {getApplyProcess, projectApply, resubmitApply, getApplyDetail} from "@/api/project-manage";
@@ -42,6 +50,10 @@ const props = defineProps({
showTable: {
type: Boolean,
default: false
},
data: {
type: Array,
default: []
}
})
const rules = reactive({
@@ -101,7 +113,7 @@ const handleSubmit = (instance) => {
attachment.value.allFileList.forEach(item => {
files.push(getFileParam(item))
})
}else {
} else {
otherFileList.value.forEach(item => {
files.push(getFileParam(item))
})
@@ -131,8 +143,8 @@ const handleSubmit = (instance) => {
let res
if (route.query.state === '3') {
res = await resubmitApply(params)
}else {
res = await projectApply(params)
} else {
res = await projectApply(params)
}
ElNotification({
title: '提示',