lilei 3 years ago
parent
commit
6d75629569

+ 1 - 1
public/version.json

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

+ 1 - 1
src/views/numsGoodsShelves/approveStore/authPass.vue

@@ -131,7 +131,7 @@
             </a-col>
           </a-row>
           <a-form-model-item :wrapper-col="{ span: 12, offset: 6 }" style="text-align: center;margin-top: 30px;">
-            <a-button type="primary" @click="saveForm" size="large" id="authPass-btn-submit" style="padding: 0 60px;">保存</a-button>
+            <a-button type="primary" @click="saveForm" size="large" id="authPass-btn-submit" style="padding: 0 60px;">审核通过</a-button>
           </a-form-model-item>
         </a-form-model>
       </a-card>

+ 10 - 10
src/views/numsGoodsShelves/approveStore/list.vue

@@ -9,12 +9,12 @@
       <div ref="tableSearch" class="table-page-search-wrapper">
         <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
           <a-row :gutter="15">
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-item label="联系人手机">
                 <a-input allowClear placeholder="请输入联系人手机" v-model.tirm="queryParam.contactPhone"/>
               </a-form-item>
             </a-col>
-            <a-col :md="6" :sm="24">
+            <a-col :md="4" :sm="24">
               <a-form-item label="联系人姓名">
                 <a-input allowClear placeholder="请输入联系人姓名" v-model.tirm="queryParam.contactName"/>
               </a-form-item>
@@ -35,8 +35,8 @@
                   allowClear></v-select>
               </a-form-item>
             </a-col>
-            <a-col :md="6" :offset="18" :sm="24" style="margin-bottom: 10px">
-              <div style="float: right;">
+            <a-col :md="6" :sm="24">
+              <div>
                 <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="approveStore-refresh">查询</a-button>
                 <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="approveStore-reset">重置</a-button>
               </div>
@@ -103,14 +103,14 @@ export default {
       columns: [
         { title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
         { title: '提交时间', dataIndex: 'applyTime', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '联系人手机', dataIndex: 'contactPhone', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '联系人姓名', dataIndex: 'contactName', width: '8%', 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: '16%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
-        { title: '门头照片', dataIndex: 'storeImage', width: '8%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
-        { title: '营业执照', dataIndex: 'licenseImage', width: '8%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
+        { title: '门店地址', dataIndex: 'addrDetail', width: '28%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
+        { 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 || '--' } },
-        { title: '操作', scopedSlots: { customRender: 'action' }, width: '12%', align: 'center' }
+        { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
       ],
       // 加载数据方法 必须为 Promise 对象
       loadData: parameter => {