Commit bd864e77 authored by lxd's avatar lxd

feat: 样式修复

parent f5bdc007
......@@ -30,6 +30,7 @@ export function columns(res, pages) {
dataIndex: 'index',
hideInSearch: true,
width: '50px',
align: 'center',
render: (text, record, index) => (current - 1) * pageSize + index + 1,
},
{
......@@ -42,6 +43,7 @@ export function columns(res, pages) {
title: '付款单批次号',
dataIndex: 'payBatchNo',
width: '160px',
align: 'center',
},
{
title: '付款单生成日期',
......@@ -85,47 +87,56 @@ export function columns(res, pages) {
dataIndex: 'saleAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '退款总额',
dataIndex: 'refundAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '红字金额',
dataIndex: 'pastRefundAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '蓝字金额',
dataIndex: 'currentRefundAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '应付金额',
dataIndex: 'payableAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '是否缺少红字发票',
dataIndex: 'redInvoiceState',
valueEnum: redInvoiceState,
align: 'center',
width: 100,
},
{
title: '付款状态',
dataIndex: 'payState',
valueEnum: payStateEnum,
width: '110px',
align: 'center',
},
{
title: '发票状态',
dataIndex: 'blueInvoiceState',
valueEnum: orderStateNum,
width: '110px',
align: 'center',
},
{
title: '操作',
......@@ -134,7 +145,7 @@ export function columns(res, pages) {
key: 'option',
align: 'center',
fixed: 'right',
width: 200,
width: 80,
render: (_, row) => (
<div>
<Button
......
.button {
display: block;
margin-bottom: 10px;
}
......
......@@ -20,18 +20,21 @@ export function columns(pages) {
dataIndex: 'index',
hideInSearch: true,
width: '50px',
align: 'center',
render: (text, record, index) => (current - 1) * pageSize + index + 1,
},
{
title: '供应商名称',
dataIndex: 'supplierName',
width: '150px',
align: 'center',
hideInSearch: true,
},
{
title: '结算单批次号',
dataIndex: 'settleBatchNo',
width: '160px',
align: 'center',
},
{
title: '账单日期',
......@@ -57,18 +60,21 @@ export function columns(pages) {
valueEnum: activeStateEnum,
width: '120px',
filters: false,
align: 'center',
},
{
title: '金额',
dataIndex: 'amount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '笔数',
dataIndex: 'quantity',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '状态',
......@@ -76,6 +82,7 @@ export function columns(pages) {
valueEnum: orderStateNum,
width: '100px',
filters: false,
align: 'center',
},
];
}
......
......@@ -26,6 +26,7 @@ export function columns(pages) {
dataIndex: 'index',
hideInSearch: true,
width: '50px',
align: 'center',
render: (text, record, index) => (current - 1) * pageSize + index + 1,
},
{
......@@ -33,16 +34,19 @@ export function columns(pages) {
dataIndex: 'supplierName',
width: '150px',
hideInSearch: true,
align: 'center',
},
{
title: '付款单批次号',
dataIndex: 'payBatchNo',
width: '160px',
align: 'center',
},
{
title: '结算单批次号',
dataIndex: 'settleBatchNo',
width: '150px',
align: 'center',
},
{
title: '结算单生成日期',
......@@ -70,6 +74,7 @@ export function columns(pages) {
width: '120px',
hideInSearch: true,
filters: false,
align: 'center',
},
{
title: '结算单生成日期',
......@@ -84,18 +89,21 @@ export function columns(pages) {
dataIndex: 'saleAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '退款金额',
dataIndex: 'refundAmount',
width: '100px',
hideInSearch: true,
align: 'center',
},
{
title: '结算金额',
dataIndex: 'payableAmount',
width: '130px',
hideInSearch: true,
align: 'center',
},
{
title: '结算状态',
......@@ -104,12 +112,14 @@ export function columns(pages) {
width: '100px',
initialValue: 0,
filters: false,
align: 'center',
},
{
title: '是否生成付款单',
dataIndex: 'isCreatePaymentBill',
valueEnum: paymentStateEnum,
hideInTable: true,
align: 'center',
},
];
}
......
......@@ -42,7 +42,7 @@ const SettlementSheet = () => {
return true;
}
notification.error({
message: `${billPeriodData.text}帐期最多生成${billPeriodData.maxlength}付款单`,
message: `${billPeriodData.text}帐期最多可选${billPeriodData.maxlength}`,
});
return false;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment