uu
This commit is contained in:
parent
370fd0b414
commit
0cfde79286
@ -154,19 +154,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
async addEmptyItem(item) {
|
||||
const list = await this.getListData({
|
||||
regionType: this.curTabIndex + 1,
|
||||
parentId: item.code
|
||||
})
|
||||
// 选择最后一个tab视图 才做追加
|
||||
if (list.length > 0 && this.curTabIndex + 1 == this.submitVals.regIds.length) {
|
||||
this.submitVals.regIds.push(undefined)
|
||||
this.submitVals.regNames.push('请选择')
|
||||
}
|
||||
if(list.length > 0) {
|
||||
this.curTabIndex = this.curTabIndex + 1
|
||||
}
|
||||
async addEmptyItem() {
|
||||
this.submitVals.regIds.push(undefined)
|
||||
this.submitVals.regNames.push('请选择')
|
||||
this.curTabIndex = this.curTabIndex + 1
|
||||
},
|
||||
async selectItemRegion(item = {}) {
|
||||
this.keywords = ''
|
||||
@ -177,14 +168,22 @@
|
||||
this.submitVals.regIds.push(item.code)
|
||||
this.submitVals.regNames.push(item.name)
|
||||
}
|
||||
// 选中后切换下一层级视图
|
||||
this.addEmptyItem(item)
|
||||
const list = await this.getListData({
|
||||
regionType: this.curTabIndex + 1,
|
||||
parentId: item.code
|
||||
})
|
||||
// 选择最后一个tab视图 才做追加
|
||||
if (list.length > 0 && this.curTabIndex + 1 == this.submitVals.regIds.length) {
|
||||
this.addEmptyItem(item)
|
||||
}
|
||||
},
|
||||
handleCloseModal() {
|
||||
this.$emit('update:show', false)
|
||||
},
|
||||
handleSubmitValue() {
|
||||
const val = this.submitVals
|
||||
val.regIds = val.regIds.filter(t=> typeof(t) != 'undefined')
|
||||
val.regNames = val.regNames.filter(t=> t != '请选择')
|
||||
this.$emit('onSure', val)
|
||||
this.$emit('update:value', val)
|
||||
this.handleCloseModal()
|
||||
|
||||
@ -156,9 +156,8 @@
|
||||
Object.assign(this.submitParam, data)
|
||||
},
|
||||
handleAddressChoose(data) {
|
||||
data.regIds.map((regId, index)=> {
|
||||
let nameCodeMap = addressNameCodeMap[index]
|
||||
this.submitParam[nameCodeMap.codeKey] = regId
|
||||
addressNameCodeMap.map((nameCodeMap, index)=> {
|
||||
this.submitParam[nameCodeMap.codeKey] = data.regIds[index]
|
||||
this.submitParam[nameCodeMap.nameKey] = data.regNames[index]
|
||||
})
|
||||
},
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
<view class="pgb-header">
|
||||
<view class="com-jianju">
|
||||
<!-- 关键字搜索框 -->
|
||||
<tpx-search placeholder="选择地址" v-model:value="addressText" @click="showAddress"></tpx-search>
|
||||
<tpx-search placeholder="选择地址" :value="getAddressDetail(searchParam, false)" @click="showAddress"></tpx-search>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@ -73,6 +73,7 @@
|
||||
onUnload() {
|
||||
},
|
||||
methods: {
|
||||
getAddressDetail,
|
||||
getListFun: apiService.getSendSiteList,
|
||||
initData(){
|
||||
|
||||
@ -85,11 +86,9 @@
|
||||
this.addressModal.show = true
|
||||
},
|
||||
handleAddressChoose(data) {
|
||||
data.regIds.map((regId, index)=> {
|
||||
let nameCodeMap = addressNameCodeMap[index]
|
||||
this.searchParam[nameCodeMap.codeKey] = regId
|
||||
addressNameCodeMap.map((nameCodeMap, index)=> {
|
||||
this.searchParam[nameCodeMap.codeKey] = data.regIds[index]
|
||||
this.searchParam[nameCodeMap.nameKey] = data.regNames[index]
|
||||
this.addressText = getAddressDetail(this.searchParam)
|
||||
})
|
||||
},
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user