|
@@ -93,7 +93,7 @@
|
|
|
:styleType="2"
|
|
|
:title="'所属网点'"
|
|
|
:list="websitList"
|
|
|
- :keyName="'name'"
|
|
|
+ :keyName="'label'"
|
|
|
@cancel="isShowWebsitDialog = false"
|
|
|
@confirm="confirmWebsitDialog"
|
|
|
>
|
|
@@ -188,7 +188,7 @@ export default {
|
|
|
examineStatus: ['OK', 'EXPIRED']
|
|
|
})
|
|
|
.then(res => {
|
|
|
- this.websitList = res.data
|
|
|
+ this.websitList = res.data.map(item => ({ ...item, label: `(${item.websitId})${item.name}` }))
|
|
|
if (this.websitList.length == 1) {
|
|
|
this.websit = this.websitList[0]
|
|
|
}
|