|
@@ -641,6 +641,7 @@ const MyService = Form.create()(
|
|
|
title: "订单部门",
|
|
|
dataIndex: "depName",
|
|
|
key: "depName",
|
|
|
+ width: 100,
|
|
|
},
|
|
|
{
|
|
|
title: "下单时间",
|
|
@@ -671,19 +672,25 @@ const MyService = Form.create()(
|
|
|
title: "签单金额(万元)",
|
|
|
dataIndex: "totalAmount",
|
|
|
key: "totalAmount",
|
|
|
- width: 82,
|
|
|
+ render: (text) => {
|
|
|
+ return <div style={{ textAlign: "center" }}>{text}</div>
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: "开票金额(万元)",
|
|
|
dataIndex: "invoiceAmount",
|
|
|
key: "invoiceAmount",
|
|
|
- width: 82,
|
|
|
+ render: (text) => {
|
|
|
+ return <div style={{ textAlign: "center" }}>{text}</div>
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: "已收款(万元)",
|
|
|
dataIndex: "settlementAmount",
|
|
|
key: "settlementAmount",
|
|
|
- width: 82,
|
|
|
+ render: (text) => {
|
|
|
+ return <div style={{ textAlign: "center" }}>{text}</div>
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
title: "结算状态",
|