apply-clients 5.0.35-46 → 5.0.35-47
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/package.json
CHANGED
|
@@ -1417,15 +1417,27 @@
|
|
|
1417
1417
|
if (this.$refs.service_show.data.fields[i].label === '楼号' && this.$refs.service_show.data.fields[i].value) {
|
|
1418
1418
|
address += this.$refs.service_show.data.fields[i].value
|
|
1419
1419
|
}
|
|
1420
|
+
if (this.$refs.service_show.data.fields[i].label === '楼号' && this.$refs.service_show.data.fields[i].value) {
|
|
1421
|
+
address += '栋'
|
|
1422
|
+
}
|
|
1420
1423
|
if (this.$refs.service_show.data.fields[i].label === '单元号' && this.$refs.service_show.data.fields[i].value) {
|
|
1421
1424
|
address += '-' +this.$refs.service_show.data.fields[i].value
|
|
1422
1425
|
}
|
|
1426
|
+
if (this.$refs.service_show.data.fields[i].label === '单元号' && this.$refs.service_show.data.fields[i].value) {
|
|
1427
|
+
address += '单元'
|
|
1428
|
+
}
|
|
1423
1429
|
if (this.$refs.service_show.data.fields[i].label === '楼层' && this.$refs.service_show.data.fields[i].value) {
|
|
1424
1430
|
address += '-' +this.$refs.service_show.data.fields[i].value
|
|
1425
1431
|
}
|
|
1432
|
+
if (this.$refs.service_show.data.fields[i].label === '楼层' && this.$refs.service_show.data.fields[i].value) {
|
|
1433
|
+
address += '层'
|
|
1434
|
+
}
|
|
1426
1435
|
if (this.$refs.service_show.data.fields[i].label === '门牌号' && this.$refs.service_show.data.fields[i].value) {
|
|
1427
1436
|
address += '-' +this.$refs.service_show.data.fields[i].value
|
|
1428
1437
|
}
|
|
1438
|
+
if (this.$refs.service_show.data.fields[i].label === '门牌号' && this.$refs.service_show.data.fields[i].value) {
|
|
1439
|
+
address += '室'
|
|
1440
|
+
}
|
|
1429
1441
|
|
|
1430
1442
|
}
|
|
1431
1443
|
console.log('获取到的address=>' + address)
|