apply-clients 3.5.5-99 → 3.5.6-10
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/build/dev-server.js +2 -2
- package/package.json +1 -1
- package/src/filiale/dingcheng/android/AppInstallationDetails.vue +477 -478
- package/src/filiale/dingcheng/pc/InstallationDetails.vue +607 -608
- package/src/filiale/fugou/android/AppDevicesManagement.vue +516 -521
- package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -542
- package/src/filiale/fugou/pc/ServiceControl.vue +9 -0
- package/src/filiale/gongyi/pc/chargeManagement.vue +765 -765
- package/src/filiale/jinhuang/pc/ContractList.vue +222 -220
- package/src/filiale/jinhuang/pc/ServiceControl.vue +2016 -2016
- package/src/filiale/jinhuang/pc/SupervisoryList.vue +478 -459
- package/src/filiale/shexian/android/AppServiceControl.vue +1786 -1763
- package/src/filiale/shexian/android/AppSign.vue +152 -152
- package/src/filiale/yangchunboneng/android/AppContractCharge.vue +15 -3
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1144 -1116
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +4 -4
|
@@ -1392,7 +1392,7 @@ export default {
|
|
|
1392
1392
|
let f_room = this.getLableValue('门牌号') || ''
|
|
1393
1393
|
let f_room_suffix = f_room ? '' : ''
|
|
1394
1394
|
|
|
1395
|
-
let f_address = f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix
|
|
1395
|
+
let f_address = f_street + f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix
|
|
1396
1396
|
this.setLabelValue("地址", f_address)
|
|
1397
1397
|
}
|
|
1398
1398
|
}
|
|
@@ -1465,7 +1465,7 @@ export default {
|
|
|
1465
1465
|
let http = new HttpResetClass()
|
|
1466
1466
|
let res = await http.load(
|
|
1467
1467
|
'POST',
|
|
1468
|
-
|
|
1468
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/apply_singleTable`,
|
|
1469
1469
|
{data: data},
|
|
1470
1470
|
{resolveMsg: null, rejectMsg: '街道/乡镇查询失败!!!'}
|
|
1471
1471
|
)
|
|
@@ -1485,7 +1485,7 @@ export default {
|
|
|
1485
1485
|
let http2 = new HttpResetClass()
|
|
1486
1486
|
let res2 = await http2.load(
|
|
1487
1487
|
'POST',
|
|
1488
|
-
|
|
1488
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/apply_singleTable`,
|
|
1489
1489
|
{data: data2},
|
|
1490
1490
|
{resolveMsg: null, rejectMsg: '小区查询失败!!!'}
|
|
1491
1491
|
)
|
|
@@ -1509,7 +1509,7 @@ export default {
|
|
|
1509
1509
|
let http = new HttpResetClass()
|
|
1510
1510
|
let res = await http.load(
|
|
1511
1511
|
'POST',
|
|
1512
|
-
|
|
1512
|
+
`${this.$androidUtil.getProxyUrl()}/rs/sql/apply_singleTable`,
|
|
1513
1513
|
{data: data},
|
|
1514
1514
|
{resolveMsg: null, rejectMsg: '街道/乡镇查询失败!!!'}
|
|
1515
1515
|
)
|