Commit fb374516 authored by 黄奎's avatar 黄奎

页面修改

parent 6f61403c
...@@ -1844,7 +1844,8 @@ ...@@ -1844,7 +1844,8 @@
// 获取国内机场 // 获取国内机场
let msg = { let msg = {
City_id: 0, City_id: 0,
Country_id: 2 Country_id: 2,
TrafficType: 1,
}; };
this.apipost( this.apipost(
"airport_post_GetList", "airport_post_GetList",
...@@ -1863,7 +1864,8 @@ ...@@ -1863,7 +1864,8 @@
// 获取日本机场 // 获取日本机场
let msg = { let msg = {
City_id: 0, City_id: 0,
Country_id: 651 Country_id: 651,
TrafficType: 1
}; };
this.apipost( this.apipost(
"airport_post_GetList", "airport_post_GetList",
......
This diff is collapsed.
...@@ -407,7 +407,7 @@ ...@@ -407,7 +407,7 @@
Arrival_city: "0", Arrival_city: "0",
Arrival_airport: "0", Arrival_airport: "0",
Status: "0", Status: "0",
TrafficType:1 TrafficType: 1
}, },
addMsg: { addMsg: {
ID: 0, ID: 0,
...@@ -429,7 +429,7 @@ ...@@ -429,7 +429,7 @@
synchronization: 0, synchronization: 0,
StartDate: "", StartDate: "",
EndDate: "", EndDate: "",
TrafficType:1, TrafficType: 1,
}, },
SeasonTypeList: [], SeasonTypeList: [],
DataList: [], DataList: [],
...@@ -551,7 +551,8 @@ ...@@ -551,7 +551,8 @@
getaAirport(ID, blo) { getaAirport(ID, blo) {
//根据城市获取起飞机场 //根据城市获取起飞机场
let msg = { let msg = {
City_id: ID City_id: ID,
TrafficType: 1,
}; };
this.apipost( this.apipost(
"airport_post_GetList", "airport_post_GetList",
...@@ -590,7 +591,7 @@ ...@@ -590,7 +591,7 @@
synchronization: 0, synchronization: 0,
StartDate: "", StartDate: "",
EndDate: "", EndDate: "",
TrafficType:1, TrafficType: 1,
}; };
this.addMsg = newMsg; this.addMsg = newMsg;
}, },
...@@ -598,7 +599,8 @@ ...@@ -598,7 +599,8 @@
getaStopAirport(ID, blo) { getaStopAirport(ID, blo) {
this.apipost( this.apipost(
"airport_post_GetList", { "airport_post_GetList", {
City_id: ID City_id: ID,
TrafficType: 1,
}, },
res => { res => {
if (this.outerVisible) { if (this.outerVisible) {
...@@ -617,7 +619,8 @@ ...@@ -617,7 +619,8 @@
getaArrivalAirport(ID, blo) { getaArrivalAirport(ID, blo) {
//根据城市获取到达机场 //根据城市获取到达机场
let msg = { let msg = {
City_id: ID City_id: ID,
TrafficType: 1,
}; };
this.apipost( this.apipost(
"airport_post_GetList", "airport_post_GetList",
......
...@@ -169,8 +169,10 @@ ...@@ -169,8 +169,10 @@
<tr> <tr>
<th width="">动车号</th> <th width="">动车号</th>
<th width="">出发城市</th> <th width="">出发城市</th>
<th width="">出发站点</th>
<th>出发时间</th> <th>出发时间</th>
<th>到达城市</th> <th>到达城市</th>
<th>达到站点</th>
<th>到达时间</th> <th>到达时间</th>
<th>{{$t("admin.admin_czPerson")}}</th> <th>{{$t("admin.admin_czPerson")}}</th>
<th>{{$t("hotel.table_operattime")}}</th> <th>{{$t("hotel.table_operattime")}}</th>
...@@ -180,8 +182,10 @@ ...@@ -180,8 +182,10 @@
<td>{{item.Flight_number}} <td>{{item.Flight_number}}
</td> </td>
<td>{{item.DepartureCityName}}</td> <td>{{item.DepartureCityName}}</td>
<td>{{item.DName}}</td>
<td>{{item.Departure_time}}</td> <td>{{item.Departure_time}}</td>
<td>{{item.ArrivalCityName}}</td> <td>{{item.ArrivalCityName}}</td>
<td>{{item.AName}}</td>
<td>{{item.Arrival_time}}</td> <td>{{item.Arrival_time}}</td>
<td>{{item.emName}}</td> <td>{{item.emName}}</td>
<td>{{item.UpdateDate}}</td> <td>{{item.UpdateDate}}</td>
...@@ -216,21 +220,35 @@ ...@@ -216,21 +220,35 @@
<el-input v-model="addMsg.Flight_number" placeholder="请填写动车号"></el-input> <el-input v-model="addMsg.Flight_number" placeholder="请填写动车号"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="出发城市" prop="Departure_city"> <el-form-item label="出发城市" prop="Departure_city">
<el-select v-model="addMsg.Departure_city" filterable :placeholder="$t('system.ph_flightCity')"> <el-select v-model="addMsg.Departure_city" filterable placeholder="请选择出发城市"
@change="getaAirport(addMsg.Departure_city,false)">
<el-option v-for='item in cityList' :key="item.ID" :label="item.Name" :value="item.ID"> <el-option v-for='item in cityList' :key="item.ID" :label="item.Name" :value="item.ID">
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="出发车站" prop="Departure_airport">
<el-select v-model="addMsg.Departure_airport" filterable placeholder="请选择出发车站">
<el-option v-for='item in layer_Departure_airport' :key="item.ID" :label="item.Name" :value="item.ID">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="出发时间" prop="Departure_time" class='flightMg_delete_icon time'> <el-form-item label="出发时间" prop="Departure_time" class='flightMg_delete_icon time'>
<el-input type="text" v-model="addMsg.Departure_time" @keyup.native="checkTime(addMsg,'Departure_time')" <el-input type="text" v-model="addMsg.Departure_time" @keyup.native="checkTime(addMsg,'Departure_time')"
maxlength="5" :placeholder="$t('system.ph_time')"></el-input> maxlength="5" :placeholder="$t('system.ph_time')"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="到达城市" prop="Arrival_city"> <el-form-item label="到达城市" prop="Arrival_city">
<el-select v-model="addMsg.Arrival_city" filterable :placeholder="$t('system.ph_flightCity')"> <el-select v-model="addMsg.Arrival_city" filterable placeholder="请选择到达城市"
@change="getaArrivalAirport(addMsg.Arrival_city,false)">
<el-option v-for='item in cityList' :key="item.ID" :label="item.Name" :value="item.ID"> <el-option v-for='item in cityList' :key="item.ID" :label="item.Name" :value="item.ID">
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="到达车站" prop="Arrival_airport">
<el-select v-model="addMsg.Arrival_airport" filterable placeholder="请选择到达车站">
<el-option v-for='item in layer_Arrival_airport' :key="item.ID" :label="item.Name" :value="item.ID">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="到达时间" prop="Arrival_time" class='flightMg_delete_icon time'> <el-form-item label="到达时间" prop="Arrival_time" class='flightMg_delete_icon time'>
<el-input type="text" v-model="addMsg.Arrival_time" @keyup.native="checkTime(addMsg,'Arrival_time')" <el-input type="text" v-model="addMsg.Arrival_time" @keyup.native="checkTime(addMsg,'Arrival_time')"
maxlength="5" :placeholder="$t('system.ph_time')"></el-input> maxlength="5" :placeholder="$t('system.ph_time')"></el-input>
...@@ -422,7 +440,8 @@ ...@@ -422,7 +440,8 @@
getaAirport(ID, blo) { getaAirport(ID, blo) {
//根据城市获取起飞机场 //根据城市获取起飞机场
let msg = { let msg = {
City_id: ID City_id: ID,
TrafficType: 2,
}; };
this.apipost( this.apipost(
"airport_post_GetList", "airport_post_GetList",
...@@ -461,7 +480,7 @@ ...@@ -461,7 +480,7 @@
synchronization: 0, synchronization: 0,
StartDate: "", StartDate: "",
EndDate: "", EndDate: "",
TrafficType:2, TrafficType: 2,
}; };
this.addMsg = newMsg; this.addMsg = newMsg;
}, },
...@@ -469,7 +488,8 @@ ...@@ -469,7 +488,8 @@
getaStopAirport(ID, blo) { getaStopAirport(ID, blo) {
this.apipost( this.apipost(
"airport_post_GetList", { "airport_post_GetList", {
City_id: ID City_id: ID,
TrafficType: 2,
}, },
res => { res => {
if (this.outerVisible) { if (this.outerVisible) {
...@@ -486,9 +506,10 @@ ...@@ -486,9 +506,10 @@
); );
}, },
getaArrivalAirport(ID, blo) { getaArrivalAirport(ID, blo) {
//根据城市获取到达机场 //根据城市获取到达车站
let msg = { let msg = {
City_id: ID City_id: ID,
TrafficType: 2,
}; };
this.apipost( this.apipost(
"airport_post_GetList", "airport_post_GetList",
......
...@@ -467,14 +467,17 @@ ...@@ -467,14 +467,17 @@
class="TCL-flighInfoList"> class="TCL-flighInfoList">
<span class="travelnowrap"> <span class="travelnowrap">
<span class="TCL-FlightNumber">{{subItem.Flight_number}}</span> <span class="TCL-FlightNumber">{{subItem.Flight_number}}</span>
<span v-if="subItem.DIATA">({{subItem.DIATA}})</span>{{subItem.DepartureName}} <span><template v-if="subItem.DIATA">({{subItem.DIATA}})</template>
<template v-else>({{subItem.dName}})</template></span>
{{subItem.DepartureName}}
{{subItem.StopoverName==''?'':'-('+subItem.StopoverIATA+')'+subItem.StopoverName}} {{subItem.StopoverName==''?'':'-('+subItem.StopoverIATA+')'+subItem.StopoverName}}
<template v-if="subItem.ArrivalCityName"> <template v-if="subItem.ArrivalCityName">
<span v-if="subItem.AIATA"> <span v-if="subItem.AIATA">
-({{subItem.AIATA}}) -({{subItem.AIATA}})
</span> </span>
<span v-else>-</span> <span v-else>-</span>
{{subItem.ArrivalCityName}} {{subItem.ArrivalCityName}}
<template v-if="!subItem.DIATA">({{subItem.aName}})</template>
</template> </template>
<span v-if="subItem.FlightState==1" class="TCL-greenType">【OK】</span> <span v-if="subItem.FlightState==1" class="TCL-greenType">【OK】</span>
<span v-else class="TCL-redType">【{{$t('visa.v_zanding')}}】</span> <span v-else class="TCL-redType">【{{$t('visa.v_zanding')}}】</span>
...@@ -486,7 +489,7 @@ ...@@ -486,7 +489,7 @@
class="TCL-flighInfoList"> class="TCL-flighInfoList">
<span class="travelnowrap"> <span class="travelnowrap">
<span class="TCL-FlightNumber">{{subItem.Flight_number}}</span> <span class="TCL-FlightNumber">{{subItem.Flight_number}}</span>
{{subItem.aName}} {{subItem.Departure_time}} {{subItem.aName}} {{subItem.Departure_time}}
- -
{{subItem.dName}} {{subItem.Arrival_time}} {{subItem.dName}} {{subItem.Arrival_time}}
<span v-if="subItem.FlightState==1" class="TCL-greenType">【OK】</span> <span v-if="subItem.FlightState==1" class="TCL-greenType">【OK】</span>
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -160,7 +160,8 @@ ...@@ -160,7 +160,8 @@
City_id: '', City_id: '',
Name: '', Name: '',
IATA: '', IATA: '',
ICAO: '' ICAO: '',
TrafficType:1,//机场
}, },
addMsg: { addMsg: {
ID: '', ID: '',
...@@ -176,7 +177,8 @@ ...@@ -176,7 +177,8 @@
//经 //经
Lng:'', Lng:'',
//纬 //纬
Lat:'' Lat:'',
TrafficType:1,//机场
}, },
DataList: [], DataList: [],
BranchGetList: [], BranchGetList: [],
......
This diff is collapsed.
...@@ -1139,7 +1139,14 @@ export default { ...@@ -1139,7 +1139,14 @@ export default {
meta: { meta: {
title: '机场管理' title: '机场管理'
}, },
},
{
path: '/stationManagement', //车站管理
name: 'stationManagement',
component: resolve => require(['@/components/systemManagement/stationManagement'], resolve),
meta: {
title: '车站管理'
},
}, },
{ {
path: '/aviationConfiguration', //航空模板配置 path: '/aviationConfiguration', //航空模板配置
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment