瀏覽代碼

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

hxy 2 周之前
父節點
當前提交
9dd3c0bbf9
共有 1 個文件被更改,包括 4 次插入8 次删除
  1. 4 8
      ruoyi-ui/src/views/project/termination/detail.vue

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

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