From fb217eddbee6a7cd789f314361bbd56b379c0978 Mon Sep 17 00:00:00 2001 From: jishenghua <752718920@qq.com> Date: Mon, 20 May 2024 23:03:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=BA=93=E5=AD=98=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E5=92=8C=E8=B4=A6=E6=88=B7=E6=B5=81=E6=B0=B4=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=9A=84=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/report/modules/AccountInOutList.vue | 1 + jshERP-web/src/views/report/modules/MaterialInOutList.vue | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/jshERP-web/src/views/report/modules/AccountInOutList.vue b/jshERP-web/src/views/report/modules/AccountInOutList.vue index a9897860..07d6a286 100644 --- a/jshERP-web/src/views/report/modules/AccountInOutList.vue +++ b/jshERP-web/src/views/report/modules/AccountInOutList.vue @@ -24,6 +24,7 @@ rowKey="id" :columns="columns" :dataSource="dataSource" + :components="handleDrag(columns)" :pagination="ipagination" :loading="loading" @change="handleTableChange"> diff --git a/jshERP-web/src/views/report/modules/MaterialInOutList.vue b/jshERP-web/src/views/report/modules/MaterialInOutList.vue index 2ab967aa..1739960a 100644 --- a/jshERP-web/src/views/report/modules/MaterialInOutList.vue +++ b/jshERP-web/src/views/report/modules/MaterialInOutList.vue @@ -53,6 +53,7 @@ rowKey="id" :columns="columns" :dataSource="dataSource" + :components="handleDrag(columns)" :pagination="ipagination" :loading="loading" @change="handleTableChange"> @@ -112,10 +113,10 @@ } }, { - title: '单据编号', dataIndex: 'number', width: 100, + title: '单据编号', dataIndex: 'number', width: 120, scopedSlots: { customRender: 'numberCustomRender' }, }, - { title: '类型', dataIndex: 'type', width: 100}, + { title: '类型', dataIndex: 'type', width: 80}, { title: '条码', dataIndex: 'barCode', width: 100}, { title: '名称', dataIndex: 'materialName', width: 200}, { title: '仓库名称', dataIndex: 'depotName', width: 80},