Commit 2f9342a3 authored by 黄奎's avatar 黄奎

页面修改

parent bf8b4e81
...@@ -225,7 +225,9 @@ ...@@ -225,7 +225,9 @@
<th>{{$t("system.query_arrivalAir")}}</th> <th>{{$t("system.query_arrivalAir")}}</th>
<th>{{$t("system.query_arrivalTime")}}</th> <th>{{$t("system.query_arrivalTime")}}</th>
<th>{{$t("admin.admin_czPerson")}}</th> <th>{{$t("admin.admin_czPerson")}}</th>
<th>飞行时间</th>
<th>{{$t("hotel.table_operattime")}}</th> <th>{{$t("hotel.table_operattime")}}</th>
<th width="200">{{$t("admin.admin_operate")}}</th> <th width="200">{{$t("admin.admin_operate")}}</th>
</tr> </tr>
<tr v-for="(item,index) in DataList" :key="index"> <tr v-for="(item,index) in DataList" :key="index">
...@@ -240,6 +242,7 @@ ...@@ -240,6 +242,7 @@
<td>{{item.AName}}</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.FlyTime}}</td>
<td>{{item.UpdateDate}}</td> <td>{{item.UpdateDate}}</td>
<td style="position: relative;"> <td style="position: relative;">
<el-row> <el-row>
...@@ -349,6 +352,10 @@ ...@@ -349,6 +352,10 @@
<el-form-item :label="$t('system.query_arrivalTime')" prop="Arrival_time" class='flightMg_delete_icon time'> <el-form-item :label="$t('system.query_arrivalTime')" 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>
</el-form-item>
<el-form-item label="飞行时间" prop="FlyTime" class='flightMg_delete_icon time'>
<el-input type="text" v-model="addMsg.FlyTime" @keyup.native="checkTime(addMsg,'FlyTime')"
maxlength="5" :placeholder="$t('system.ph_time')"></el-input>
</el-form-item> </el-form-item>
<el-form-item class="flightMg_info"> <el-form-item class="flightMg_info">
<el-checkbox v-model="checked">{{$t('system.table_tips_fmgCk')}}</el-checkbox> <el-checkbox v-model="checked">{{$t('system.table_tips_fmgCk')}}</el-checkbox>
...@@ -407,7 +414,8 @@ ...@@ -407,7 +414,8 @@
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,
...@@ -430,6 +438,7 @@ ...@@ -430,6 +438,7 @@
StartDate: "", StartDate: "",
EndDate: "", EndDate: "",
TrafficType: 1, TrafficType: 1,
FlyTime:"",//飞行时间
}, },
SeasonTypeList: [], SeasonTypeList: [],
DataList: [], DataList: [],
...@@ -592,6 +601,7 @@ ...@@ -592,6 +601,7 @@
StartDate: "", StartDate: "",
EndDate: "", EndDate: "",
TrafficType: 1, TrafficType: 1,
FlyTime:"",//飞行时间
}; };
this.addMsg = newMsg; this.addMsg = newMsg;
}, },
......
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