diff --git a/src/views/airticket/Invoice.jsx b/src/views/airticket/Invoice.jsx index 8a8fb81..254a752 100644 --- a/src/views/airticket/Invoice.jsx +++ b/src/views/airticket/Invoice.jsx @@ -30,15 +30,6 @@ const Invoice = props => { key: "CostType", dataIndex: "CostType", }, - { - title: "手续费", - children: [ - { - title: vEIFlightBill && vEIFlightBill.reduce((acc, curr) => acc + curr.ServiceFee, 0), - dataIndex: "ServiceFee", - }, - ], - }, { title: "出发日期", key: "StartDate", @@ -90,6 +81,15 @@ const Invoice = props => { ], key: "Cost", }, + { + title: "手续费", + children: [ + { + title: vEIFlightBill && vEIFlightBill.reduce((acc, curr) => acc + curr.ServiceFee, 0), + dataIndex: "ServiceFee", + }, + ], + }, { title: "折扣", key: "Discount", diff --git a/src/views/airticket/Plan.jsx b/src/views/airticket/Plan.jsx index 0088f94..6344045 100644 --- a/src/views/airticket/Plan.jsx +++ b/src/views/airticket/Plan.jsx @@ -53,11 +53,6 @@ const AirticketPlan = props => { key: "CostType", dataIndex: "CostType", }, - { - title: "手续费", - key: "ServiceFee", - dataIndex: "ServiceFee", - }, { title: "PNR", key: "PNR", @@ -82,6 +77,11 @@ const AirticketPlan = props => { dataIndex: "Cost", render: (text, record) => (record.CostType == "出票" ? text : "-"), }, + { + title: "手续费", + key: "ServiceFee", + dataIndex: "ServiceFee", + }, { title: "折扣", key: "Discount",