b037b29a by weimo934

feat(jzd,jzx):界址点、线保存后重新加载

1 parent 8a077920
......@@ -166,6 +166,7 @@
},
mounted() {
let bsm = this.$store.state.zdbsm
this.bsm=bsm;
this.getData(bsm)
},
methods: {
......@@ -260,6 +261,7 @@
computed: {},
watch: {
"$store.state.zdbsm": function (bsm) {
this.bsm=bsm
this.getData(bsm)
}
},
......
......@@ -233,6 +233,7 @@
},
mounted() {
let bsm = this.$store.state.zdbsm
this.bsm=bsm;
this.getData(bsm)
},
methods: {
......@@ -327,6 +328,7 @@
computed: {},
watch: {
"$store.state.zdbsm": function (bsm) {
this.bsm=bsm;
this.getData(bsm)
}
},
......