linwenxin 4 bulan lalu
induk
melakukan
44568e88b6
1 mengubah file dengan 12 tambahan dan 8 penghapusan
  1. 12 8
      src/packageMine/pages/masterGroup/createGroup.vue

+ 12 - 8
src/packageMine/pages/masterGroup/createGroup.vue

@@ -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) {