Procházet zdrojové kódy

11482-【CR】【投资系统】增加审批流程-终止流程详情

hxy před 2 týdny
rodič
revize
9dd3c0bbf9

+ 4 - 8
ruoyi-ui/src/views/project/termination/detail.vue

@@ -120,6 +120,9 @@
 <script>
 import poolForm from "../../invest/components/poolForm";
 import flowBase from "../flowBase.vue";
+import{
+  getTerminationInfo,
+} from "@/api/project/termination/pool"
 
 import {
   getPool
@@ -181,16 +184,9 @@ export default {
     // 获取投决申请
     getlistProjectPoolIdNewTermination() {
       let that = this;
-      listProjectPoolIdNewTermination(this.id).then((response) => {
+      getTerminationInfo(this.$route.query.pInstId).then((response) => {
         if (response && response.data) {
           that.formZZApply = response.data;
-          /*setTimeout(() => {
-            that.$refs.fileItemTJApply.handleButton();
-            that.$refs.fileItemTJApply.fileList = [];
-            that.$refs.fileItemTJApply.getListFileBusinessId(
-              that.formTJApply.id
-            );
-          }, 300);*/
         }
       });
     },