address-client 3.2.3 → 3.2.6
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/{5.2.1/fileChanges → 3.5/file-changes}/last-build.bin +0 -0
- package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
- package/.gradle/{5.2.1/gc.properties → buildOutputCleanup/built.bin} +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +1 -0
- package/AddressClient.iml +13 -0
- package/build/dev-server.js +125 -125
- package/package.json +1 -1
- package/src/components/AddressList.vue +16 -14
- package/src/components/AreaList.vue +123 -10
- package/src/components/CityList.vue +133 -133
- package/src/components/StreetList.vue +210 -210
- package/src/components/UserAddress.vue +2 -4
- package/src/filiale/WEINAN/AddAreaMsg.vue +656 -656
- package/src/filiale/WEINAN/AddressList.vue +6 -0
- package/src/filiale/gongyi/AddAreaMsg.vue +11 -0
- 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 +21 -21
- package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +0 -5
- package/gradlew +0 -172
- package/gradlew.bat +0 -84
|
@@ -115,6 +115,12 @@
|
|
|
115
115
|
close-on-select>
|
|
116
116
|
</v-select>
|
|
117
117
|
</div>
|
|
118
|
+
<div :class="$parent.$parent.style" >
|
|
119
|
+
<label class="font_normal_body">片  区</label>
|
|
120
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_slice_area" style="width:60%"
|
|
121
|
+
condition="a.f_slice_area like '%{}%'" placeholder="片区"
|
|
122
|
+
:size="model.f_slice_area ? model.f_slice_area.length*2 : 8"/>
|
|
123
|
+
</div>
|
|
118
124
|
</div>
|
|
119
125
|
</div>
|
|
120
126
|
</criteria>
|
|
@@ -38,6 +38,17 @@
|
|
|
38
38
|
close-on-select search="true" @change="streetChange">
|
|
39
39
|
</v-select>
|
|
40
40
|
</div>
|
|
41
|
+
<div class="col-sm-6 form-group"
|
|
42
|
+
:class="[$v.f_hand_month.required ? 'has-error' : 'has-success']">
|
|
43
|
+
<label class="font_normal_body">抄表月份</label>
|
|
44
|
+
<input type="text" style="width:60%" class="input_search" v-show="false" v-model="areamodel.f_hand_month"
|
|
45
|
+
v-validate:f_hand_month='{required: true }'>
|
|
46
|
+
<v-select
|
|
47
|
+
:value.sync="areamodel.f_hand_month" :value-single="true"
|
|
48
|
+
:options='handmonth' placeholder='请选择'
|
|
49
|
+
close-on-select search="true" v-ref:f_hand_month>
|
|
50
|
+
</v-select>
|
|
51
|
+
</div>
|
|
41
52
|
<div class="col-sm-6 form-group" :class="[$v.slice.required ? 'has-error' : 'has-success']">
|
|
42
53
|
<label class="font_normal_body">片  区</label>
|
|
43
54
|
<input type="text" style="width:60%" class="input_search" v-show="false" v-model="$refs.slice.selectedItems"
|