From 7e135f349e185b602fa07015dd8982769f194797 Mon Sep 17 00:00:00 2001 From: Ycc Date: Wed, 18 Jun 2025 10:36:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=B4=A6=E5=8D=95=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trainticket/invoice.jsx | 14 ++++++++------ src/views/trainticket/invoicePaid.jsx | 2 +- src/views/trainticket/plan.jsx | 4 ++-- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/views/trainticket/invoice.jsx b/src/views/trainticket/invoice.jsx index 65fcec0..b392089 100644 --- a/src/views/trainticket/invoice.jsx +++ b/src/views/trainticket/invoice.jsx @@ -47,15 +47,15 @@ const Invoice = props => { }, { title: "出发", - key: "FromAirport", - dataIndex: "FromAirport", - render: (text, record) => (record.CostType == "出票" ? `${record.FromCity}` : "-"), + key: "CLF_FromAirport", + dataIndex: "CLF_FromAirport", + render: (text, record) => (record.CostType == "出票" ? text : "-"), }, { title: "抵达", key: "ToAirport", dataIndex: "ToAirport", - render: (text, record) => (record.CostType == "出票" ? `${record.ToCity}` : "-"), + render: (text, record) => (record.CostType == "出票" ? text : "-"), }, { title: "车次", @@ -71,8 +71,8 @@ const Invoice = props => { }, { title: "车票类型", - key: "FlightType", - dataIndex: "FlightType", + key: "SeatClass", + dataIndex: "SeatClass", render: (text, record) => (record.CostType == "出票" ? text : "-"), }, { @@ -206,6 +206,8 @@ const Invoice = props => { }} onSubmit={(err, formVal, filedsVal) => { getVEIFlightBill(travelAgencyId, formVal.referenceNo, formVal.invoiceCheckStatus, formVal.startdate, formVal.endtime); + console.log(vEIFlightBill); + }} /> diff --git a/src/views/trainticket/invoicePaid.jsx b/src/views/trainticket/invoicePaid.jsx index a85e84a..84d9eee 100644 --- a/src/views/trainticket/invoicePaid.jsx +++ b/src/views/trainticket/invoicePaid.jsx @@ -126,7 +126,7 @@ const InvoicePaid = props => { 账单明细 {invoiceNO} - + diff --git a/src/views/trainticket/plan.jsx b/src/views/trainticket/plan.jsx index 03cc5a8..ee89060 100644 --- a/src/views/trainticket/plan.jsx +++ b/src/views/trainticket/plan.jsx @@ -568,8 +568,8 @@ const TrainticketPlan = props => { label: "改签", }, { - value: "退票", - label: "退票", + value: "取消", + label: "取消", }, ]} />