armg 1 jaar geleden
bovenliggende
commit
fd70a877e8

+ 0 - 1
ruoyi-ui/src/components/Crontab/index.vue

@@ -182,7 +182,6 @@ export default {
       "updateCrontabValue", name, value, from;
       this.crontabValueObj[name] = value;
       if (from && from !== name) {
-        console.log(`来自组件 ${from} 改变了 ${name} ${value}`);
         this.changeRadio(name, value);
       }
     },

+ 1 - 1
ruoyi-ui/src/main.js

@@ -116,7 +116,7 @@ new Vue({
 })
 
 router.beforeEach((to, from, next) => {
-  console.log("=====",to, from)
+  // console.log("=====",to, from)
   // 全局前置守卫逻辑
   next()
 });

+ 3 - 1
ruoyi-ui/src/views/invest/channel/index.vue

@@ -458,7 +458,9 @@ export default {
         this.form = response.data;
         this.open = true;
         this.title = "修改渠道信息";
-        this.$refs.fileItems.getListFileBusinessId(id);
+        setTimeout(() => {
+          this.$refs.fileItems.getListFileBusinessId(id);
+        }, 200);
       });
     },
     /** 提交按钮 */

+ 3 - 0
ruoyi-ui/src/views/invest/components/contractList.vue

@@ -448,6 +448,9 @@ export default {
         this.form.projectGroup = response.data.tProjectPool.projectGroup;
         this.open = true;
         this.title = "修改合同管理";
+        setTimeout(() => {
+          this.$refs.fileItems.getListFileBusinessId(id);
+        }, 200);
       });
     },
     /** 提交按钮 */

+ 0 - 1
ruoyi-ui/src/views/invest/components/fileItem.vue

@@ -33,7 +33,6 @@ export default {
     };
   },
   mounted() {
-    console.log("======文件组件")
     if (this.id) {
       this.getListFileBusinessId(this.id);
     }

+ 3 - 0
ruoyi-ui/src/views/invest/components/fileList.vue

@@ -442,6 +442,9 @@ export default {
         this.form.projectStage = response.data.tProjectPool.projectStage;
         this.open = true;
         this.title = "修改文件资料";
+        setTimeout(() => {
+          this.$refs.fileItems.getListFileBusinessId(id);
+        }, 200);
       });
     },
     /** 提交按钮 */

+ 3 - 0
ruoyi-ui/src/views/invest/components/followList.vue

@@ -514,6 +514,9 @@ export default {
         this.form.projectStage = response.data.tProjectPool.projectStage;
         this.open = true;
         this.title = "修改跟进记录";
+        setTimeout(() => {
+          this.$refs.fileItems.getListFileBusinessId(id);
+        }, 200);
       });
     },
     /** 提交按钮 */

+ 3 - 0
ruoyi-ui/src/views/invest/components/meetingList.vue

@@ -587,6 +587,9 @@ export default {
         this.form.projectGroup = response.data.tProjectPool.projectGroup;
         this.open = true;
         this.title = "修改会议记录";
+        setTimeout(() => {
+          this.$refs.fileItems.getListFileBusinessId(id);
+        }, 200);
       });
     },
     /** 提交按钮 */

+ 1 - 1
ruoyi-ui/src/views/invest/pool/detail.vue

@@ -189,7 +189,7 @@ export default {
       this.$refs[name].handleAdd(this.id);
     },
     handleClick(tab, event) {
-      console.log(tab, event);
+      // console.log(tab, event);
     },
     getDetail() {
       getPool(this.id).then((response) => {

+ 3 - 1
ruoyi-ui/src/views/study/gen/index.vue

@@ -346,7 +346,9 @@ export default {
         this.form = response.data;
         this.open = true;
         this.title = "修改研究资料管理";
-        this.$refs.fileItems.getListFileBusinessId(id);
+        setTimeout(() => {
+          this.$refs.fileItems.getListFileBusinessId(id);
+        }, 200);
       });
     },
     /** 提交按钮 */