|
@@ -130,7 +130,7 @@
|
|
|
<div class="box1">
|
|
|
<h4>审批流程</h4>
|
|
|
<div>
|
|
|
- <p v-if="processingTime">已用时:{{ processingTime }}</p>
|
|
|
+ <p v-if="processingTime">已用时:{{ formData.process_time }}</p>
|
|
|
</div>
|
|
|
<el-timeline style="width: 700px">
|
|
|
<template v-for="(item, index) in formData.examines" :key="index">
|
|
@@ -211,7 +211,8 @@ const formData = ref({
|
|
|
processingTime: '',
|
|
|
examines: [],
|
|
|
attachs: [],
|
|
|
- examine_attachs: []
|
|
|
+ examine_attachs: [],
|
|
|
+ process_time: ''
|
|
|
});
|
|
|
|
|
|
const baseUrl = import.meta.env.VITE_APP_BASE_API;
|
|
@@ -289,6 +290,7 @@ const submitForm = () => {
|
|
|
await submitExamine(form2.value);
|
|
|
proxy?.$modal.msgSuccess('审批意见已提交');
|
|
|
buttonDisabled.value = true;
|
|
|
+ fetchInformation();
|
|
|
} finally {
|
|
|
buttonLoading.value = false;
|
|
|
}
|