修改宗地表单从路由参数获取宗地标识码
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -705,7 +705,7 @@ export default { | ... | @@ -705,7 +705,7 @@ export default { |
705 | return this.formData.zddm; | 705 | return this.formData.zddm; |
706 | }, | 706 | }, |
707 | zdbsm() { | 707 | zdbsm() { |
708 | return this.$store.state.zdbsm; | 708 | return this.$route.query.bsm; |
709 | }, | 709 | }, |
710 | }, | 710 | }, |
711 | watch: { | 711 | watch: { |
... | @@ -720,7 +720,7 @@ export default { | ... | @@ -720,7 +720,7 @@ export default { |
720 | }, | 720 | }, |
721 | zdbsm:function (val) { | 721 | zdbsm:function (val) { |
722 | this.getZdjbxxData(val) | 722 | this.getZdjbxxData(val) |
723 | this.curZdbsm = this.$route.query.bsm; | 723 | this.curZdbsm = val; |
724 | } | 724 | } |
725 | }, | 725 | }, |
726 | }; | 726 | }; | ... | ... |
-
Please register or sign in to post a comment