Commit d6896231 by zhangzhijie

从案件标注页跳转到标注详情页时正确显示标注页,而不是退回页

parent c0a547db
......@@ -1047,7 +1047,8 @@ export default {
//this.getBz();
this.isCheck = this.$route.query.isCheck;
this.bzzt = this.$route.query.bzzt;
if (this.bzzt == 1) {
if (this.$route.query.bzDetailStatus == '1') {
this.bzDetail();
}
axios.get(`JsonData/CODE_BLHLX.json`).then((response) => {
......@@ -1542,7 +1543,7 @@ export default {
self.bshClass.forEach((item2) => {
if (item2.num == item.bshlx) {
self.$set(item, "className", item2.val);
}
});
});
......@@ -1592,7 +1593,7 @@ export default {
self.bshClass.forEach((item2) => {
if (item2.num == item.bshlx) {
self.$set(item, "className", item2.val);
}
});
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment