|
|
@ -1,5 +1,5 @@
|
|
|
|
import { useState, useEffect } from "react";
|
|
|
|
import { useState, useEffect } from "react";
|
|
|
|
import { Grid, Divider, Layout, Modal, Form, Input, Col, Row, Space, Collapse, Table, Button, Select, App, Popconfirm, Switch } from "antd";
|
|
|
|
import { Grid, Divider, DatePicker, Modal, Form, Input, Col, Row, Space, Collapse, Table, Button, Select, App, Popconfirm, Switch } from "antd";
|
|
|
|
import { PhoneOutlined, FrownTwoTone, LikeTwoTone, ArrowUpOutlined, ArrowDownOutlined, PlusOutlined } from "@ant-design/icons";
|
|
|
|
import { PhoneOutlined, FrownTwoTone, LikeTwoTone, ArrowUpOutlined, ArrowDownOutlined, PlusOutlined } from "@ant-design/icons";
|
|
|
|
import { useParams, useHref, useNavigate, NavLink } from "react-router-dom";
|
|
|
|
import { useParams, useHref, useNavigate, NavLink } from "react-router-dom";
|
|
|
|
import { isEmpty, formatColonTime } from "@/utils/commons";
|
|
|
|
import { isEmpty, formatColonTime } from "@/utils/commons";
|
|
|
@ -165,53 +165,53 @@ const AirticketPlan = props => {
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item label="出发日期、航司、航班">
|
|
|
|
<Form.Item label="出发日期、航司、航班" required>
|
|
|
|
<Space>
|
|
|
|
<Space>
|
|
|
|
<Form.Item name="StartDate" noStyle>
|
|
|
|
<Form.Item name="StartDate" noStyle rules={[{ required: true, message: "请输入出发日期!" }]}>
|
|
|
|
<Input placeholder="出发日期" />
|
|
|
|
<Input placeholder="出发日期" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="FlightCompany" noStyle>
|
|
|
|
<Form.Item name="FlightCompany" noStyle>
|
|
|
|
<Input placeholder="航空公司" />
|
|
|
|
<Input placeholder="航空公司" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="FlightNo" noStyle>
|
|
|
|
<Form.Item name="FlightNo" noStyle rules={[{ required: true, message: "请输入航班号!" }]}>
|
|
|
|
<Input placeholder="航班号" />
|
|
|
|
<Input placeholder="航班号" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item label="出发">
|
|
|
|
<Form.Item label="出发" required>
|
|
|
|
<Space>
|
|
|
|
<Space>
|
|
|
|
<Form.Item name="FromAirport" noStyle>
|
|
|
|
<Form.Item name="FromAirport" noStyle rules={[{ required: true, message: "请输入出发机场!" }]}>
|
|
|
|
<Input placeholder="机场" />
|
|
|
|
<Input placeholder="机场" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="FromTerminal" noStyle>
|
|
|
|
<Form.Item name="FromTerminal" noStyle>
|
|
|
|
<Input placeholder="航站楼" />
|
|
|
|
<Input placeholder="航站楼" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="FlightStart" noStyle>
|
|
|
|
<Form.Item name="FlightStart" noStyle rules={[{ required: true, message: "请输入出发时间!" }]}>
|
|
|
|
<Input placeholder="出发时间" />
|
|
|
|
<Input placeholder="出发时间" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item label="抵达">
|
|
|
|
<Form.Item label="抵达" required>
|
|
|
|
<Space>
|
|
|
|
<Space>
|
|
|
|
<Form.Item name="ToAirport" noStyle>
|
|
|
|
<Form.Item name="ToAirport" noStyle rules={[{ required: true, message: "请输入抵达机场!" }]}>
|
|
|
|
<Input placeholder="机场" />
|
|
|
|
<Input placeholder="机场" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="ToTerminal" noStyle>
|
|
|
|
<Form.Item name="ToTerminal" noStyle>
|
|
|
|
<Input placeholder="航站楼" />
|
|
|
|
<Input placeholder="航站楼" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="FlightEnd" noStyle>
|
|
|
|
<Form.Item name="FlightEnd" noStyle rules={[{ required: true, message: "请输入抵达时间!" }]}>
|
|
|
|
<Input placeholder="抵达时间" />
|
|
|
|
<Input placeholder="抵达时间" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item label="仓位和行李">
|
|
|
|
<Form.Item label="仓位和行李" required>
|
|
|
|
<Space>
|
|
|
|
<Space>
|
|
|
|
<Form.Item name="FlightCabin" noStyle>
|
|
|
|
<Form.Item name="FlightCabin" noStyle rules={[{ required: true, message: "请输入仓位!" }]}>
|
|
|
|
<Input placeholder="仓位" />
|
|
|
|
<Input placeholder="仓位" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item name="Baggage" noStyle>
|
|
|
|
<Form.Item name="Baggage" noStyle>
|
|
|
|
<Input placeholder="行李说明" />
|
|
|
|
<Input placeholder="行李说明 20KG" />
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|
</Space>
|
|
|
|
</Space>
|
|
|
|
</Form.Item>
|
|
|
|
</Form.Item>
|
|
|
|