63b5ec48 by 杨威

宗地分割后的各个宗地的面积分摊表数据更新

1 parent 677059bc
......@@ -47,7 +47,7 @@ export default {
methods: {
loadingStatus() {
console.log("是否禁用")
let bsm=this.$store.state.zdbsm;
let bsm=this.$route.query.bsm;
queryStatus(bsm).then(res => {
if (res.success) {
let qszt = res.result.qszt;
......@@ -89,8 +89,16 @@ export default {
},
created() {},
mounted() {},
computed: {},
watch: {},
computed: {
zdbsm() {
return this.$route.query.bsm;
},
},
watch: {
zdbsm: function (val) {
this.loadingStatus();
},
},
};
</script>
<style scoped lang="less">
......