xiaodai2022 hace 2 años
padre
commit
8adeb3cc22

+ 6 - 3
src/components/globalComponents/Breadcrumb/main.vue

@@ -29,7 +29,7 @@ export default {
     return {
       levelList: null,
       isShow: false,
-      backOtions: null,
+      backOtions: "",
       backUrl: "",
     };
   },
@@ -68,11 +68,13 @@ export default {
         let model = JSON.parse(preModel);
         this.isShow = true;
         const { options, router } = model;
-        this.backOtions = options;
+        this.backOtions = JSON.stringify(options);
         this.backUrl = router;
       } else {
         this.isShow = false;
+        // this.backOtions = "";
       }
+      console.log("active" + this.backOtions);
     },
     isDashboard(route) {
       const name = route && route.name;
@@ -92,10 +94,11 @@ export default {
       if (!this.isShow) {
         return;
       }
+      console.log("wantto" + this.backOtions);
       window.vm.$router.push({
         path: this.backUrl,
         query: {
-          back: JSON.stringify(this.backOtions),
+          back: this.backOtions,
         },
       });
     },

+ 9 - 2
src/views/process/oing/index.vue

@@ -131,12 +131,18 @@ export default {
     };
   },
   mounted() {
-    console.log(this.process_router_list);
     const { back } = this.$route.query;
     if (back) {
       this.parmValue = JSON.parse(back);
+      const {page,size}=this.parmValue
+       this.pageInfo= {
+        size: size,
+        curr: page,
+        total: 0,
+      }
     }
-    this.searchProList();
+
+    // this.searchProList();
     this.searchList();
   },
   methods: {
@@ -152,6 +158,7 @@ export default {
           id: to === "code" ? order_code : order_id,
         };
 
+        console.log(this.parmValue);
         let routerModel = {
           options: JSON.parse(JSON.stringify(this.parmValue)),
           router: this.$route.fullPath,