|
@@ -131,12 +131,18 @@ export default {
|
|
};
|
|
};
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
- console.log(this.process_router_list);
|
|
|
|
const { back } = this.$route.query;
|
|
const { back } = this.$route.query;
|
|
if (back) {
|
|
if (back) {
|
|
this.parmValue = JSON.parse(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();
|
|
this.searchList();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -152,6 +158,7 @@ export default {
|
|
id: to === "code" ? order_code : order_id,
|
|
id: to === "code" ? order_code : order_id,
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+ console.log(this.parmValue);
|
|
let routerModel = {
|
|
let routerModel = {
|
|
options: JSON.parse(JSON.stringify(this.parmValue)),
|
|
options: JSON.parse(JSON.stringify(this.parmValue)),
|
|
router: this.$route.fullPath,
|
|
router: this.$route.fullPath,
|