e492487f by 杨威

修改宗地表单从路由参数获取宗地标识码

1 parent abbafe22
......@@ -705,7 +705,7 @@ export default {
return this.formData.zddm;
},
zdbsm() {
return this.$store.state.zdbsm;
return this.$route.query.bsm;
},
},
watch: {
......@@ -720,7 +720,7 @@ export default {
},
zdbsm:function (val) {
this.getZdjbxxData(val)
this.curZdbsm = this.$route.query.bsm;
this.curZdbsm = val;
}
},
};
......