From 0dd8cc7a69436ba19ddbf3ab0ca224313049130d Mon Sep 17 00:00:00 2001 From: YCC Date: Fri, 6 Sep 2024 14:31:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A1=A8=E6=A0=BC=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/airticket/Invoice.jsx | 18 +++++++++--------- src/views/airticket/Plan.jsx | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) 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",