Bladeren bron

fix:修复有赞业务转单记录路由参数

snow 2 jaren geleden
bovenliggende
commit
1711b2b5f5
1 gewijzigde bestanden met toevoegingen van 11 en 2 verwijderingen
  1. 11 2
      src/views/youzan/othTransferOrderLog/index.vue

+ 11 - 2
src/views/youzan/othTransferOrderLog/index.vue

@@ -235,6 +235,13 @@ export default {
     };
   },
   mounted() {
+    if (this.$route.query.back) {
+      const { sinput = '', size, page, ...rest } = JSON.parse(this.$route.query.back)
+      this.sinput = sinput;
+      this.parmValue = rest;
+      this.pageInfo.curr = page;
+      this.pageInfo.size = size;
+    }
     this.searchList();
   },
   methods: {
@@ -286,9 +293,11 @@ export default {
         // // this.parmValue.selSelect = this.selSelect ;
         // this.parmValue.sinput = this.sinput;
         //
-        console.log(this.parmValue);
         let routerModel = {
-          options: JSON.parse(JSON.stringify(this.parmValue)),
+          options: JSON.parse(JSON.stringify({
+            ...this.parmValue,
+            sinput: this.sinput
+          })),
           router: this.$route.path,
         };
         model.preModel = JSON.stringify(routerModel);