address-client 3.2.14 → 3.2.18
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/{7.1 → 6.1.1}/executionHistory/executionHistory.bin +0 -0
- package/.gradle/6.1.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/{7.1 → 6.1.1}/fileChanges/last-build.bin +0 -0
- package/.gradle/{7.1 → 6.1.1}/fileHashes/fileHashes.bin +0 -0
- package/.gradle/6.1.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/{7.1/dependencies-accessors → 6.1.1}/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/AddressClient.iml +13 -0
- package/build/dev-server.js +125 -125
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/gradlew +1 -3
- package/gradlew.bat +18 -7
- package/package.json +1 -1
- package/src/components/AddressList.vue +613 -613
- package/src/components/StreetList.vue +4 -4
- package/src/filiale/qianneng/UserAddress.vue +976 -970
- package/src/filiale/shanggao/AddAreaMsg.vue +746 -0
- package/src/filiale/shanggao/AddStreetOrPcd.vue +312 -0
- package/src/filiale/shanggao/AreaList.vue +431 -0
- package/src/filiale/shanggao/BuildingList.vue +129 -0
- package/src/filiale/shanggao/StreetList.vue +240 -0
- package/src/filiale/shanggao/UserAddress.vue +944 -0
- package/src/filiale/shanggao/sale.js +15 -0
- package/src/filiale/shaoguan/AddAreaMsg.vue +629 -629
- package/src/filiale/shaoguan/UserAddress.vue +1 -3
- package/src/main.js +1 -1
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
|
@@ -71,9 +71,9 @@
|
|
|
71
71
|
<th><nobr>省份</nobr></th>
|
|
72
72
|
<th><nobr>城市</nobr></th>
|
|
73
73
|
<th><nobr>区/县</nobr></th>
|
|
74
|
-
<th><nobr>街道/乡镇</nobr></th>
|
|
75
74
|
<th><data-order field="f_iscity" name="地区类型"
|
|
76
75
|
:order.sync="$parent.$parent.$parent.$parent.orderFields.f_iscity"></data-order></th>
|
|
76
|
+
<th><nobr>街道/乡镇</nobr></th>
|
|
77
77
|
<th><nobr>街道编号</nobr></th>
|
|
78
78
|
<th><data-order field="f_address" name="详细地址"
|
|
79
79
|
:order.sync="$parent.$parent.$parent.$parent.orderFields.f_address"></data-order></th>
|
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
<td style="text-align:center"><nobr>{{row.f_province}}</nobr></td>
|
|
89
89
|
<td style="text-align:center"><nobr>{{row.f_city}}</nobr></td>
|
|
90
90
|
<td style="text-align:center"><nobr>{{row.f_district}}</nobr></td>
|
|
91
|
-
<td style="text-align:center"><nobr>{{row.f_street}}</nobr></td>
|
|
92
91
|
<td style="text-align:center"><nobr>{{row.f_iscity}}</nobr></td>
|
|
92
|
+
<td style="text-align:center"><nobr>{{row.f_street}}</nobr></td>
|
|
93
93
|
<td style="text-align:center"><nobr>{{row.f_street_number}}</nobr></td>
|
|
94
94
|
<td style="text-align:center"><nobr>{{row.f_pcd}}{{row.f_street}}</nobr></td>
|
|
95
95
|
<td style="text-align:center"><nobr>{{row.f_org_name}}</nobr></td>
|
|
@@ -118,11 +118,11 @@
|
|
|
118
118
|
data () {
|
|
119
119
|
return {
|
|
120
120
|
criteriaShow: false,
|
|
121
|
-
model: new PagedList('rs/sql/address_getstreetlist',20,{orderitem: this.orderitem?'"' + this.orderitem + ' "':`'
|
|
121
|
+
model: new PagedList('rs/sql/address_getstreetlist',20,{orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_city,f_district,f_iscity,f_street desc'`}),
|
|
122
122
|
addflag: false,
|
|
123
123
|
getfield: {},
|
|
124
124
|
//排序
|
|
125
|
-
orderitem:'
|
|
125
|
+
orderitem:'f_city,f_district,f_iscity,f_street desc',
|
|
126
126
|
addtitle:'',
|
|
127
127
|
// 公司下拉
|
|
128
128
|
curorgid: [this.$login.f.orgid],
|