|
@@ -307,7 +307,7 @@ export default {
|
|
|
rules: this.formOptions.gpsAddress.isRules,
|
|
|
errLabel: '省'
|
|
|
},
|
|
|
- options: this.provinceList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ options: [...this.provinceList.map((v, i) => ({ value: v.id, label: v.name })), ...this.provinceList_cp],
|
|
|
attributes: {
|
|
|
disabled: !this.formOptions.gpsAddress.isEdit,
|
|
|
clearable: true,
|
|
@@ -317,7 +317,10 @@ export default {
|
|
|
events: {
|
|
|
change: val => {
|
|
|
// 获取省名称
|
|
|
- this.orderInfo.province = this.provinceList.find(item => item.id === val)?.name || ''
|
|
|
+ this.orderInfo.province =
|
|
|
+ [...this.provinceList.map((v, i) => ({ value: v.id, label: v.name })), ...this.provinceList_cp].find(
|
|
|
+ item => item.id === val
|
|
|
+ )?.name || ''
|
|
|
// 清除市区街道以及详细地址数据
|
|
|
this.delDataK(1)
|
|
|
lbsAmapRegion({ pid: val }).then(res => {
|
|
@@ -337,7 +340,12 @@ export default {
|
|
|
rules: this.formOptions.gpsAddress.isRules,
|
|
|
errLabel: '市'
|
|
|
},
|
|
|
- options: this.cityList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ options: [
|
|
|
+ ...this.cityList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ ...this.cityList_cp.filter(_ => {
|
|
|
+ return this.provinceList_cp.find(item => item.value === this.orderInfo.provinceId)
|
|
|
+ })
|
|
|
+ ],
|
|
|
attributes: {
|
|
|
disabled: !this.formOptions.gpsAddress.isEdit,
|
|
|
clearable: true,
|
|
@@ -347,7 +355,12 @@ export default {
|
|
|
events: {
|
|
|
change: val => {
|
|
|
// 获取市名称
|
|
|
- this.orderInfo.city = this.cityList.find(item => item.id === val).name
|
|
|
+ this.orderInfo.city = [
|
|
|
+ ...this.cityList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ ...this.cityList_cp.filter(_ => {
|
|
|
+ return this.provinceList_cp.find(item => item.value === this.orderInfo.provinceId)
|
|
|
+ })
|
|
|
+ ].find(item => item.id === val).name
|
|
|
// 清除区街道以及详细地址数据
|
|
|
this.delDataK(2)
|
|
|
lbsAmapRegion({ pid: val }).then(res => {
|
|
@@ -356,6 +369,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
{
|
|
|
isShow: this.formOptions.gpsAddress.isShow,
|
|
|
name: 'el-select',
|
|
@@ -367,7 +381,12 @@ export default {
|
|
|
rules: this.formOptions.gpsAddress.isRules,
|
|
|
errLabel: '区'
|
|
|
},
|
|
|
- options: this.areaList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ options: [
|
|
|
+ ...this.areaList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ ...this.areaList_cp.filter(_ => {
|
|
|
+ return this.cityList_cp.find(item => item.value === this.orderInfo.cityId)
|
|
|
+ })
|
|
|
+ ],
|
|
|
attributes: {
|
|
|
disabled: !this.formOptions.gpsAddress.isEdit,
|
|
|
clearable: true,
|
|
@@ -377,7 +396,12 @@ export default {
|
|
|
events: {
|
|
|
change: val => {
|
|
|
// 获取区名称
|
|
|
- this.orderInfo.area = this.areaList.find(item => item.id === val).name
|
|
|
+ this.orderInfo.area = [
|
|
|
+ ...this.areaList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ ...this.areaList_cp.filter(_ => {
|
|
|
+ return this.cityList_cp.find(item => item.value === this.orderInfo.cityId)
|
|
|
+ })
|
|
|
+ ].find(item => item.id === val).name
|
|
|
// 清除街道以及详细地址数据
|
|
|
this.delDataK(3)
|
|
|
lbsAmapRegion({ pid: val }).then(res => {
|
|
@@ -397,7 +421,12 @@ export default {
|
|
|
rules: this.formOptions.gpsAddress.isRules,
|
|
|
errLabel: '街道'
|
|
|
},
|
|
|
- options: this.streetList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ options: [
|
|
|
+ ...this.streetList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ ...this.streetList_cp.filter(_ => {
|
|
|
+ return this.areaList_cp.find(item => item.value === this.orderInfo.areaId)
|
|
|
+ })
|
|
|
+ ],
|
|
|
attributes: {
|
|
|
disabled: !this.formOptions.gpsAddress.isEdit,
|
|
|
clearable: true,
|
|
@@ -407,7 +436,12 @@ export default {
|
|
|
events: {
|
|
|
change: val => {
|
|
|
// 获取街道名称
|
|
|
- this.orderInfo.street = this.streetList.find(item => item.id === val).name
|
|
|
+ this.orderInfo.street = [
|
|
|
+ ...this.streetList.map((v, i) => ({ value: v.id, label: v.name })),
|
|
|
+ ...this.streetList_cp.filter(_ => {
|
|
|
+ return this.areaList_cp.find(item => item.value === this.orderInfo.areaId)
|
|
|
+ })
|
|
|
+ ].find(item => item.id === val).name
|
|
|
// 清除详细地址数据
|
|
|
this.delDataK(4)
|
|
|
}
|