Commit 58dd505b by zhuxiaomei

添加街道字段

parent e0504d9a
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
label-width="25%" label-width="25%"
label-align="center" label-align="center"
v-model="areaObj" v-model="areaObj"
label="单位地址" label="省市区"
@click="showCityPicker=true" @click="showCityPicker=true"
:columns-placeholder="['请选择', '请选择', '请选择']" :columns-placeholder="['请选择', '请选择', '请选择']"
></van-field> ></van-field>
...@@ -88,6 +88,16 @@ ...@@ -88,6 +88,16 @@
</table-row> </table-row>
<table-row> <table-row>
<table-col> <table-col>
<van-field label-class="cus-field-class"
label-width="25%"
label-align="center"
v-model="nonNetTested.testedStreet"
label="街道"
></van-field>
</table-col>
</table-row>
<table-row>
<table-col>
<van-field <van-field
label-class="cus-field-class" label-class="cus-field-class"
label-width="50%" label-width="50%"
...@@ -790,6 +800,7 @@ export default { ...@@ -790,6 +800,7 @@ export default {
testedProvince: '', testedProvince: '',
testedCity: '', testedCity: '',
testedCountry: '', testedCountry: '',
testedStreet:'',
legalPerson: '', legalPerson: '',
sales: '', sales: '',
license: '', license: '',
...@@ -988,6 +999,7 @@ export default { ...@@ -988,6 +999,7 @@ export default {
this.nonNetTested.testedProvince = res.testedProvince ? res.testedProvince : '' this.nonNetTested.testedProvince = res.testedProvince ? res.testedProvince : ''
this.nonNetTested.testedCity = res.testedCity ? res.testedCity : '' this.nonNetTested.testedCity = res.testedCity ? res.testedCity : ''
this.nonNetTested.testedCountry = res.testedCountry ? res.testedCountry : '' this.nonNetTested.testedCountry = res.testedCountry ? res.testedCountry : ''
this.nonNetTested.testedStreet = res.testedStreet ? res.testedStreet : ''
this.nonNetTested.address = res.address ? res.address : '' this.nonNetTested.address = res.address ? res.address : ''
this.nonNetTested.areaType = res.areaType ? res.areaType : '' this.nonNetTested.areaType = res.areaType ? res.areaType : ''
this.nonNetTested.permitType = res.permitType ? res.permitType : '' this.nonNetTested.permitType = res.permitType ? res.permitType : ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment