From 5c6327313bd6789c425607a5400b7ec60ee08206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Thu, 16 Sep 2021 23:58:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E6=8D=AE=E5=88=97=E8=A1=A8=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/bill/OtherInList.vue | 2 +- jshERP-web/src/views/bill/OtherOutList.vue | 2 +- jshERP-web/src/views/bill/PurchaseBackList.vue | 2 +- jshERP-web/src/views/bill/PurchaseInList.vue | 2 +- jshERP-web/src/views/bill/PurchaseOrderList.vue | 2 +- jshERP-web/src/views/bill/RetailBackList.vue | 2 +- jshERP-web/src/views/bill/RetailOutList.vue | 2 +- jshERP-web/src/views/bill/SaleBackList.vue | 2 +- jshERP-web/src/views/bill/SaleOrderList.vue | 2 +- jshERP-web/src/views/bill/SaleOutList.vue | 2 +- jshERP-web/src/views/financial/AdvanceInList.vue | 2 +- jshERP-web/src/views/financial/ItemInList.vue | 2 +- jshERP-web/src/views/financial/ItemOutList.vue | 2 +- jshERP-web/src/views/financial/MoneyInList.vue | 2 +- jshERP-web/src/views/financial/MoneyOutList.vue | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/jshERP-web/src/views/bill/OtherInList.vue b/jshERP-web/src/views/bill/OtherInList.vue index c8f5493a..b006793c 100644 --- a/jshERP-web/src/views/bill/OtherInList.vue +++ b/jshERP-web/src/views/bill/OtherInList.vue @@ -162,7 +162,7 @@ }, // 表头 columns: [ - { title: '供应商', dataIndex: 'organName',width:120}, + { title: '供应商', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/OtherOutList.vue b/jshERP-web/src/views/bill/OtherOutList.vue index e5a5c2c6..3a42027a 100644 --- a/jshERP-web/src/views/bill/OtherOutList.vue +++ b/jshERP-web/src/views/bill/OtherOutList.vue @@ -162,7 +162,7 @@ }, // 表头 columns: [ - { title: '客户', dataIndex: 'organName',width:120}, + { title: '客户', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/PurchaseBackList.vue b/jshERP-web/src/views/bill/PurchaseBackList.vue index cbca4ac2..3be96acc 100644 --- a/jshERP-web/src/views/bill/PurchaseBackList.vue +++ b/jshERP-web/src/views/bill/PurchaseBackList.vue @@ -162,7 +162,7 @@ }, // 表头 columns: [ - { title: '供应商', dataIndex: 'organName',width:120}, + { title: '供应商', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/PurchaseInList.vue b/jshERP-web/src/views/bill/PurchaseInList.vue index 737c3598..b7fa1890 100644 --- a/jshERP-web/src/views/bill/PurchaseInList.vue +++ b/jshERP-web/src/views/bill/PurchaseInList.vue @@ -163,7 +163,7 @@ }, // 表头 columns: [ - { title: '供应商', dataIndex: 'organName',width:120}, + { title: '供应商', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/PurchaseOrderList.vue b/jshERP-web/src/views/bill/PurchaseOrderList.vue index 17b34169..6a84d3bd 100644 --- a/jshERP-web/src/views/bill/PurchaseOrderList.vue +++ b/jshERP-web/src/views/bill/PurchaseOrderList.vue @@ -164,7 +164,7 @@ }, // 表头 columns: [ - { title: '供应商', dataIndex: 'organName',width:120}, + { title: '供应商', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/RetailBackList.vue b/jshERP-web/src/views/bill/RetailBackList.vue index 97c6fc03..d1c209b2 100644 --- a/jshERP-web/src/views/bill/RetailBackList.vue +++ b/jshERP-web/src/views/bill/RetailBackList.vue @@ -162,7 +162,7 @@ }, // 表头 columns: [ - { title: '会员', dataIndex: 'organName',width:120}, + { title: '会员', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/RetailOutList.vue b/jshERP-web/src/views/bill/RetailOutList.vue index 6b8b9366..2753f7e6 100644 --- a/jshERP-web/src/views/bill/RetailOutList.vue +++ b/jshERP-web/src/views/bill/RetailOutList.vue @@ -162,7 +162,7 @@ }, // 表头 columns: [ - { title: '会员', dataIndex: 'organName',width:120}, + { title: '会员', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/SaleBackList.vue b/jshERP-web/src/views/bill/SaleBackList.vue index 99e82173..00a85e18 100644 --- a/jshERP-web/src/views/bill/SaleBackList.vue +++ b/jshERP-web/src/views/bill/SaleBackList.vue @@ -162,7 +162,7 @@ }, // 表头 columns: [ - { title: '客户', dataIndex: 'organName',width:120}, + { title: '客户', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/SaleOrderList.vue b/jshERP-web/src/views/bill/SaleOrderList.vue index ecc64fe9..6d2ebcfc 100644 --- a/jshERP-web/src/views/bill/SaleOrderList.vue +++ b/jshERP-web/src/views/bill/SaleOrderList.vue @@ -164,7 +164,7 @@ }, // 表头 columns: [ - { title: '客户', dataIndex: 'organName',width:120}, + { title: '客户', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/bill/SaleOutList.vue b/jshERP-web/src/views/bill/SaleOutList.vue index 5d3f4224..c855ea28 100644 --- a/jshERP-web/src/views/bill/SaleOutList.vue +++ b/jshERP-web/src/views/bill/SaleOutList.vue @@ -163,7 +163,7 @@ }, // 表头 columns: [ - { title: '客户', dataIndex: 'organName',width:120}, + { title: '客户', dataIndex: 'organName',width:120, ellipsis:true}, { title: '单据编号', dataIndex: 'number',width:160, customRender:function (text,record,index) { if(record.linkNumber) { diff --git a/jshERP-web/src/views/financial/AdvanceInList.vue b/jshERP-web/src/views/financial/AdvanceInList.vue index 930a1cfc..cc266947 100644 --- a/jshERP-web/src/views/financial/AdvanceInList.vue +++ b/jshERP-web/src/views/financial/AdvanceInList.vue @@ -154,7 +154,7 @@ }, // 表头 columns: [ - { title: '付款会员', dataIndex: 'organName',width:140}, + { title: '付款会员', dataIndex: 'organName',width:140, ellipsis:true}, { title: '财务人员', dataIndex: 'handsPersonName',width:140}, { title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160}, diff --git a/jshERP-web/src/views/financial/ItemInList.vue b/jshERP-web/src/views/financial/ItemInList.vue index bfa85593..3de4daa8 100644 --- a/jshERP-web/src/views/financial/ItemInList.vue +++ b/jshERP-web/src/views/financial/ItemInList.vue @@ -154,7 +154,7 @@ }, // 表头 columns: [ - { title: '客户', dataIndex: 'organName',width:140}, + { title: '客户', dataIndex: 'organName',width:140, ellipsis:true}, { title: '财务人员', dataIndex: 'handsPersonName',width:140}, { title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160}, diff --git a/jshERP-web/src/views/financial/ItemOutList.vue b/jshERP-web/src/views/financial/ItemOutList.vue index b2b029de..5acf1d13 100644 --- a/jshERP-web/src/views/financial/ItemOutList.vue +++ b/jshERP-web/src/views/financial/ItemOutList.vue @@ -154,7 +154,7 @@ }, // 表头 columns: [ - { title: '供应商', dataIndex: 'organName',width:140}, + { title: '供应商', dataIndex: 'organName',width:140, ellipsis:true}, { title: '财务人员', dataIndex: 'handsPersonName',width:140}, { title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160}, diff --git a/jshERP-web/src/views/financial/MoneyInList.vue b/jshERP-web/src/views/financial/MoneyInList.vue index ff450ecb..b09836cc 100644 --- a/jshERP-web/src/views/financial/MoneyInList.vue +++ b/jshERP-web/src/views/financial/MoneyInList.vue @@ -155,7 +155,7 @@ }, // 表头 columns: [ - { title: '客户', dataIndex: 'organName',width:140}, + { title: '客户', dataIndex: 'organName',width:140, ellipsis:true}, { title: '财务人员', dataIndex: 'handsPersonName',width:140}, { title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160}, diff --git a/jshERP-web/src/views/financial/MoneyOutList.vue b/jshERP-web/src/views/financial/MoneyOutList.vue index 6c76a3d5..70af521e 100644 --- a/jshERP-web/src/views/financial/MoneyOutList.vue +++ b/jshERP-web/src/views/financial/MoneyOutList.vue @@ -155,7 +155,7 @@ }, // 表头 columns: [ - { title: '供应商', dataIndex: 'organName',width:140}, + { title: '供应商', dataIndex: 'organName',width:140, ellipsis:true}, { title: '财务人员', dataIndex: 'handsPersonName',width:140}, { title: '单据编号', dataIndex: 'billNo',width:160}, { title: '单据日期 ', dataIndex: 'billTimeStr',width:160},