[update 打包管理维护] 去掉空白列

This commit is contained in:
danshihao
2024-04-03 14:35:16 +08:00
parent df047d91f5
commit 530134a3dc
@@ -86,7 +86,7 @@
bordered bordered
rowKey="id" rowKey="id"
:columns="columns" :columns="columns"
:scroll="{x: 1000}" :scroll="{x: 1300}"
:dataSource="dataSource" :dataSource="dataSource"
:pagination="false" :pagination="false"
:loading="loading" :loading="loading"
@@ -155,7 +155,7 @@
ref="footTable" ref="footTable"
:rowKey="record=>record.id" :rowKey="record=>record.id"
:columns="columnsFooter" :columns="columnsFooter"
:scroll="{x: 1000}" :scroll="{x: 1300}"
:dataSource="footerDataSource" :dataSource="footerDataSource"
:showHeader="false" :showHeader="false"
:pagination="false" :pagination="false"
@@ -270,7 +270,7 @@ const defaultTableColumns = [
{ {
title: '打包项目名称', title: '打包项目名称',
align: 'center', align: 'center',
width: 280, // width: 300,
dataIndex: 'chargeProject', dataIndex: 'chargeProject',
scopedSlots: { customRender: 'projectName' } scopedSlots: { customRender: 'projectName' }
}, { }, {
@@ -282,19 +282,19 @@ const defaultTableColumns = [
}, { }, {
title: '待确收金额', title: '待确收金额',
align: 'center', align: 'center',
width: 120, width: 200,
dataIndex: 'receivableAmount', dataIndex: 'receivableAmount',
scopedSlots: { customRender: 'allMoney' } scopedSlots: { customRender: 'allMoney' }
}, { }, {
title: '企业联系人', title: '企业联系人',
align: 'center', align: 'center',
width: 100, width: 140,
dataIndex: 'contactsTemporaryName', dataIndex: 'contactsTemporaryName',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, { }, {
title: '联系人电话', title: '联系人电话',
align: 'center', align: 'center',
width: 100, width: 120,
dataIndex: 'phone', dataIndex: 'phone',
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, { }, {