项目监督列表、项目委托列表项目名称列宽优化

This commit is contained in:
zhangyx
2022-06-15 16:52:15 +08:00
parent 7dc348be97
commit e4d912cb79
14 changed files with 140 additions and 117 deletions

View File

@ -46,12 +46,12 @@ const Invoice: React.FC<any> = (props) => {
title: '项目名称',
dataIndex: 'projectName',
valueType: 'text',
width: '12%',
width: '25%',
},
{
title: '费用名称',
dataIndex: 'commodityName',
width: '8%',
width: '6.1%',
valueType: 'text',
hideInSearch: true,//列表中显示,查询条件中不显示
render: (_, record) => {
@ -78,14 +78,14 @@ const Invoice: React.FC<any> = (props) => {
title: '支付单位',
valueType: 'text',
hideInSearch: true,//列表中显示,查询条件中不显示
width: '10%',
width: '15%',
dataIndex: 'payerName',
},
{
title: '支付方式',
valueType: 'text',
hideInSearch: true,//列表中显示,查询条件中不显示
width: '8%',
width: '5%',
dataIndex: 'paymentMethod',
valueEnum: {
"0": { text: '线上', status: '' },
@ -103,7 +103,7 @@ const Invoice: React.FC<any> = (props) => {
title: '付款状态',
valueType: 'text',
hideInSearch: true,//列表中显示,查询条件中不显示
width: '8%',
width: '5%',
dataIndex: 'payState',
valueEnum: {
"0": { text: '未支付', status: '' },
@ -119,14 +119,14 @@ const Invoice: React.FC<any> = (props) => {
title: '金额',
valueType: 'money',
hideInSearch: true,//列表中显示,查询条件中不显示
width: '8%',
width: '4%',
dataIndex: 'amount',
},
{
title: '发票状态',
valueType: 'select',
dataIndex: 'invoiceState',
width: '8%',
width: '4.8%',
valueEnum: {
"0": { text: '未开', status: '' },
"1": { text: '已开', status: '' },
@ -136,7 +136,7 @@ const Invoice: React.FC<any> = (props) => {
title: '需要邮寄',
valueType: 'text',
hideInSearch: true,//列表中显示,查询条件中不显示
width: '8%',
width: '4.8%',
dataIndex: 'mail',
valueEnum: {
"0": { text: '不需要', status: '' },
@ -147,7 +147,7 @@ const Invoice: React.FC<any> = (props) => {
title: '邮寄状态',
valueType: 'text',
dataIndex: 'mailState',
width: '8%',
width: '4.8%',
valueEnum: {
"0": { text: '未邮寄', status: '' },
"1": { text: '已邮寄', status: '' },
@ -158,7 +158,7 @@ const Invoice: React.FC<any> = (props) => {
dataIndex: 'type',
hideInSearch: true,//列表中显示,查询条件中不显示
valueType: 'text',
width: '8%',
width: '5%',
valueEnum: {
"0": { text: '增值税普通发票' },
"1": { text: '增值税专用发票' },