lilei 2 år sedan
förälder
incheckning
0343cfefbf

+ 1 - 1
public/version.json

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

+ 5 - 6
src/views/customerManagement/customerInfo/detailModal.vue

@@ -19,7 +19,7 @@
           <a-descriptions-item label="客户地址:" :span="3">{{ addressStr }}</a-descriptions-item>
           <a-descriptions-item label="客户传真:">{{ detailData&&detailData.fax || '--' }}</a-descriptions-item>
           <a-descriptions-item label="配送方式:">{{ detailData&&detailData.dispatchTypeDictValue || '--' }}</a-descriptions-item>
-          <a-descriptions-item label="是否为下级:">{{ detailData&&detailData.mainFlagDictValue || '--' }}</a-descriptions-item>
+          <a-descriptions-item label="是否为下级:">{{ detailData&&detailData.dealerFlagDictValue || '--' }}</a-descriptions-item>
           <a-descriptions-item label="价格类型:">{{ detailData&&detailData.priceTypeDictValue || '--' }}</a-descriptions-item>
           <a-descriptions-item label="收款方式:">{{ detailData&&detailData.settleStyleSnDictValue || '--' }}</a-descriptions-item>
           <a-descriptions-item label="客户类型:">{{ detailData&&detailData.customerTypeName || '--' }}</a-descriptions-item>
@@ -35,7 +35,6 @@
             :columns="columns"
             :data="loadData"
             :defaultLoadData="false"
-            :scroll="{ y: 240 }"
             bordered>
             </s-table>
           </div>
@@ -78,10 +77,10 @@ export default {
       isShow: this.openModal, //  是否打开弹框
       detailData: null, //  网点数据
       columns: [
-        { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
-        { title: '合并时间', dataIndex: 'createDate', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '被合并客户名称', dataIndex: 'customerName', width: '42%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
-        { title: '主体客户名称', dataIndex: 'contactName', width: '42%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
+        { title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
+        { title: '合并时间', dataIndex: 'createDate', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '被合并客户名称', dataIndex: 'customerName', width: '40%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
+        { title: '主体客户名称', dataIndex: 'contactName', width: '40%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
       ],
       // 加载数据方法 必须为 Promise 对象
       loadData: parameter => {

+ 1 - 1
src/views/customerManagement/customerInfo/list.vue

@@ -169,7 +169,7 @@ export default {
         { title: '联系手机', dataIndex: 'contactMobile', width: '9%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '创建时间', dataIndex: 'createDate', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '最后销售时间', dataIndex: 'lastSaleTime', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '是否为下级', dataIndex: 'mainFlagDictValue', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '是否为下级', dataIndex: 'dealerFlagDictValue', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '启用禁用', scopedSlots: { customRender: 'enableAction' }, width: '8%', align: 'center' },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
       ],