修改行政区划后更新底盘代码,保存时判断bdcdyh
Showing
1 changed file
with
6 additions
and
1 deletions
... | @@ -55,7 +55,7 @@ | ... | @@ -55,7 +55,7 @@ |
55 | </td> | 55 | </td> |
56 | <td colspan="2" class="tdright">地籍子区</td> | 56 | <td colspan="2" class="tdright">地籍子区</td> |
57 | <td colspan="2"> | 57 | <td colspan="2"> |
58 | <el-select class="formSelect" :disabled="formData.qszt!='0'" v-model="formData.djzqbsm"> | 58 | <el-select class="formSelect" @change="changeDjzq" :disabled="formData.qszt!='0'" v-model="formData.djzqbsm"> |
59 | <el-option | 59 | <el-option |
60 | v-for="item in $store.state.djzqList" | 60 | v-for="item in $store.state.djzqList" |
61 | :key="item.bsm" | 61 | :key="item.bsm" |
... | @@ -858,6 +858,7 @@ | ... | @@ -858,6 +858,7 @@ |
858 | this.formData.djzqbsm = ""; | 858 | this.formData.djzqbsm = ""; |
859 | this.djqList = res.result; | 859 | this.djqList = res.result; |
860 | this.$store.state.djqList = res.result; | 860 | this.$store.state.djqList = res.result; |
861 | this.generatorDpdm(); | ||
861 | }) | 862 | }) |
862 | .catch((error) => { | 863 | .catch((error) => { |
863 | }); | 864 | }); |
... | @@ -868,10 +869,14 @@ | ... | @@ -868,10 +869,14 @@ |
868 | this.formData.djzqbsm = ""; | 869 | this.formData.djzqbsm = ""; |
869 | this.djzqList = res.result; | 870 | this.djzqList = res.result; |
870 | this.$store.state.djzqList = res.result; | 871 | this.$store.state.djzqList = res.result; |
872 | this.generatorDpdm(); | ||
871 | }) | 873 | }) |
872 | .catch((error) => { | 874 | .catch((error) => { |
873 | }); | 875 | }); |
874 | }, | 876 | }, |
877 | changeDjzq() { | ||
878 | this.generatorDpdm(); | ||
879 | }, | ||
875 | //判断容密高是否为区间 | 880 | //判断容密高是否为区间 |
876 | isInterval(val) { | 881 | isInterval(val) { |
877 | if (val == '>' || val == '<' || val == '=' || val == '>=' || val == '<=' || val == null) { | 882 | if (val == '>' || val == '<' || val == '=' || val == '>=' || val == '<=' || val == null) { | ... | ... |
-
Please register or sign in to post a comment