address-client 3.2.12 → 3.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gradle/6.1.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/6.1.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/{3.5/file-changes → 6.1.1/fileChanges}/last-build.bin +0 -0
- package/.gradle/6.1.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/6.1.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/{buildOutputCleanup/built.bin → 6.1.1/gc.properties} +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/.gradle/checksums/checksums.lock +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/build/dev-server.js +125 -125
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/gradlew +183 -0
- package/gradlew.bat +100 -0
- package/package.json +1 -1
- package/src/components/AddressList.vue +613 -613
- package/src/components/CityList.vue +133 -133
- package/src/components/StreetList.vue +4 -4
- package/src/filiale/WEINAN/AddAreaMsg.vue +656 -656
- package/src/filiale/WEINAN/AreaList.vue +390 -390
- package/src/filiale/qianneng/UserAddress.vue +976 -970
- package/src/filiale/shaoguan/AddAreaMsg.vue +1 -3
- package/src/filiale/shaoguan/UserAddress.vue +1 -3
- package/src/filiale/tongchuan/AreaList.vue +315 -315
- package/src/filiale/tongchuan/CityList.vue +133 -133
- package/src/filiale/tongchuan/StreetList.vue +208 -208
- package/src/filiale/tongchuan/sale.js +19 -19
- package/src/main.js +1 -1
- package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
|
@@ -38,10 +38,8 @@
|
|
|
38
38
|
close-on-select search="true" @change="streetChange">
|
|
39
39
|
</v-select>
|
|
40
40
|
</div>
|
|
41
|
-
<div class="col-sm-6 form-group"
|
|
41
|
+
<div class="col-sm-6 form-group" >
|
|
42
42
|
<label class="font_normal_body">片  区</label>
|
|
43
|
-
<input type="text" style="width:60%" class="input_search" v-show="false" v-model="$refs.slice.selectedItems"
|
|
44
|
-
v-validate:slice='{required: true }'>
|
|
45
43
|
<v-select :value.sync="areamodel.slice_area" v-model="areamodel.slice_area"
|
|
46
44
|
:options='sliceArea' placeholder='片区/管理站' filer-key="name"
|
|
47
45
|
close-on-select v-ref:slice>
|
|
@@ -74,10 +74,8 @@
|
|
|
74
74
|
</v-select>
|
|
75
75
|
</div>
|
|
76
76
|
|
|
77
|
-
<div class="col-sm-6 form-group "
|
|
77
|
+
<div class="col-sm-6 form-group ">
|
|
78
78
|
<label class="font_normal_body">片  区</label>
|
|
79
|
-
<input type="text" style="width:60%" class="input_search" v-show="false" v-model="$refs.slice.selectedItems"
|
|
80
|
-
v-validate:slice_area1='{required: true }'>
|
|
81
79
|
<v-select :value.sync="model.slice_area" v-model="model.slice_area" :value-single="true"
|
|
82
80
|
:options='sliceArea' placeholder='片区/管理站' filer-key="name"
|
|
83
81
|
close-on-select v-ref:slice>
|