xuefy 3 سال پیش
والد
کامیت
b7fe0243c2

+ 12 - 1
front-vue/src/views/service/credit/addInformation.vue

@@ -1241,7 +1241,18 @@ export default {
         this.goShow = false;
         Cookies.set("/credit/goFinance/"+this.form.zfiId + "/", this.$route.fullPath)
         this.$router.push({ path: "/credit/goFinance/"+this.form.zfiId + "/" });
-    }
+    },
+    //返回到列表页
+    goParent(){
+         var self = this
+        this.pdfShowDialog = false;
+        self.$store.dispatch(
+            "tagsView/delView",
+            self.$route
+            );
+         //self.$router.push("/Bill/credit")
+         self.$router.push("/Bill/finance/credit")
+    },
     
   }
 };

+ 1 - 7
front-vue/src/views/service/credit/pdfShow.vue

@@ -614,15 +614,9 @@ export default {
     },
     //去融资
     goFinance(){
-        //关闭当前页
-         this.$store.dispatch(
-            "tagsView/delView",
-            this.$route
-            );
         //关闭弹框
         this.goShow = false;
-        //关闭文件弹框
-        this.closePdfShow();
+        this.goParent();
         Cookies.set("/credit/goFinance/"+this.zfiId + "/", this.$route.fullPath)
         this.$router.push({ path: "/credit/goFinance/"+this.zfiId + "/" });
     }

+ 11 - 0
front-vue/src/views/service/credit/signFor.vue

@@ -1146,6 +1146,17 @@ export default {
         this.goShow = false;
         Cookies.set("/credit/goFinance/"+this.zfiId + "/", this.$route.fullPath)
         this.$router.push({ path: "/credit/goFinance/"+this.zfiId + "/" });
+    },
+    //返回到列表页
+    goParent(){
+         var self = this
+        this.pdfShowDialog = false;
+        self.$store.dispatch(
+            "tagsView/delView",
+            self.$route
+            );
+         //self.$router.push("/Bill/credit")
+         self.$router.push("/Bill/finance/credit")
     }
   }
 };