|
@@ -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);
|