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