|
@@ -32,7 +32,7 @@
|
|
|
:styleType="2"
|
|
|
:title="'所属网点'"
|
|
|
:list="websitList"
|
|
|
- :keyName="'name'"
|
|
|
+ :keyName="'label'"
|
|
|
@cancel="isShowWebsitDialog = false"
|
|
|
@confirm="confirmWebsitDialog"
|
|
|
>
|
|
@@ -77,13 +77,17 @@ export default {
|
|
|
|
|
|
methods: {
|
|
|
getWebsitList() {
|
|
|
- this.$api.get('/user/apply/websit').then(res => {
|
|
|
- this.websitList = res.data
|
|
|
- if (this.websitList.length == 1) {
|
|
|
- this.websit = this.websitList[0]
|
|
|
- this.getBrandList()
|
|
|
- }
|
|
|
- })
|
|
|
+ this.$api
|
|
|
+ .get('/user/apply/websit', {
|
|
|
+ examineStatus: ['OK']
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ this.websitList = res.data.map(item => ({ ...item, label: `(${item.websitId})${item.name}` }))
|
|
|
+ if (this.websitList.length == 1) {
|
|
|
+ this.websit = this.websitList[0]
|
|
|
+ this.getBrandList()
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
confirmWebsitDialog(e) {
|