lilei hace 2 años
padre
commit
026883143b
Se han modificado 2 ficheros con 6 adiciones y 5 borrados
  1. 1 1
      public/version.json
  2. 5 4
      src/views/numsGoodsShelves/approveStore/list.vue

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1659336020969
+  "version": 1659336409019
 }

+ 5 - 4
src/views/numsGoodsShelves/approveStore/list.vue

@@ -58,7 +58,7 @@
         bordered>
         <!-- 图片 -->
         <template slot="imageUrl" slot-scope="text, record">
-          <div v-if="text.length">
+          <div v-if="text&&text.length">
             <img :src="text" width="30" height="30" class="imageUrl" @click="inited([text])" />
           </div>
           <span v-else>--</span>
@@ -66,7 +66,8 @@
         <!-- 地址 -->
         <template slot="addr" slot-scope="text, record">
           <div>
-            {{ record.addrProvinceName +'-'+ record.addrCityName +'-'+ record.addrDistrictName +'-'+ record.addrDetail }}
+            {{ record.addrProvinceName +'-'+ record.addrCityName +'-'+ record.addrDistrictName }}
+            <div style="word-wrap: wrap;">{{ record.addrDetail }}</div>
           </div>
         </template>
         <!-- 操作 -->
@@ -106,8 +107,8 @@ export default {
         { title: '提交时间', dataIndex: 'applyTime', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '联系人手机', dataIndex: 'contactPhone', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '联系人姓名', dataIndex: 'contactName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '门店名称', dataIndex: 'storeName', width: '15%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
-        { title: '门店地址', dataIndex: 'addrDetail', width: '28%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
+        { title: '门店名称', dataIndex: 'storeName', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '门店地址', dataIndex: 'addrDetail', width: '28%', align: 'center', scopedSlots: { customRender: 'addr' } },
         { title: '门头照片', dataIndex: 'storeImage', width: '6%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
         { title: '营业执照', dataIndex: 'licenseImage', width: '6%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
         { title: '状态', dataIndex: 'auditStatusDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },