linwenxin hace 4 meses
padre
commit
97d626560e

+ 1 - 1
src/packageMaterial/pages/apply/website.vue

@@ -27,7 +27,7 @@
             @tap="chooseWebsit(item)"
           >
             <view class="left" @tap="changeMapCenter(item)">
-              <view class="name">{{ item.name }}</view>
+              <view class="name">({{ item.websitId }}){{ item.name }}</view>
               <view class="row">联系电话:{{ item.websitPhone || '' }}</view>
               <view class="row">联系地址:{{ item.address || '' }}</view>
             </view>

+ 2 - 2
src/packageMaterial/pages/newSale/index.vue

@@ -95,7 +95,7 @@
       :styleType="2"
       :title="'所属网点'"
       :list="websitList"
-      :keyName="'name'"
+      :keyName="'label'"
       @cancel="isShowWebsitDialog = false"
       @confirm="confirmWebsitDialog"
     >
@@ -202,7 +202,7 @@ export default {
 
     getWebsitList(cb) {
       this.$api.get('/user/apply/websit').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]
         }

+ 2 - 2
src/packageMaterial/pages/sale/index.vue

@@ -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]
           }