1730532197@qq.com

lwj

...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 </el-form-item> 22 </el-form-item>
23 23
24 <el-form-item> 24 <el-form-item>
25 - <el-button type="primary" icon="el-icon-search" size="mini" @click="findSourceFlightAndFlightDate">查询实际目的航班 25 + <el-button type="primary" icon="el-icon-search" size="mini" @click="findSourceFlightAndFlightDate">查询实际配载航班
26 </el-button>&#12288; 26 </el-button>&#12288;
27 <span style="color: red;">注:原航班+日期查询该日期的航班实际情况</span> 27 <span style="color: red;">注:原航班+日期查询该日期的航班实际情况</span>
28 </el-form-item> 28 </el-form-item>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
39 <el-table v-loading="loading" :data="sourceFlightRulesList"> 39 <el-table v-loading="loading" :data="sourceFlightRulesList">
40 40
41 <el-table-column label="原航班" align="center" prop="sourceFlightNo" /> 41 <el-table-column label="原航班" align="center" prop="sourceFlightNo" />
42 - <el-table-column label="目的航班排序" align="center" prop="flightRank" width="280" /> 42 + <el-table-column label="配载航班排序" align="center" prop="flightRank" width="280" />
43 <!-- <el-table-column label="优先级" align="center" prop="priority" /> --> 43 <!-- <el-table-column label="优先级" align="center" prop="priority" /> -->
44 <el-table-column label="周期" align="center" prop="dayOfWeek" width="180" /> 44 <el-table-column label="周期" align="center" prop="dayOfWeek" width="180" />
45 <el-table-column label="状态" align="center" prop="status" :formatter="statusFormat" /> 45 <el-table-column label="状态" align="center" prop="status" :formatter="statusFormat" />
...@@ -62,11 +62,11 @@ ...@@ -62,11 +62,11 @@
62 62
63 63
64 <!-- 查看目的航班对话框 --> 64 <!-- 查看目的航班对话框 -->
65 - <el-dialog title="实际目的航班" :visible.sync="openFlightDate" width="70%"> 65 + <el-dialog title="实际配载航班" :visible.sync="openFlightDate" width="70%">
66 <el-table v-loading="loadingFlightDate" :data="sourceFlightAndFlightDate"> 66 <el-table v-loading="loadingFlightDate" :data="sourceFlightAndFlightDate">
67 67
68 <el-table-column label="原航班" align="center" prop="sourceFlightNo" /> 68 <el-table-column label="原航班" align="center" prop="sourceFlightNo" />
69 - <el-table-column label="实际目的航班" align="center" prop="actualFlight" width="280" /> 69 + <el-table-column label="实际配载航班" align="center" prop="actualFlight" width="280" />
70 <el-table-column label="航班日期" align="center" prop="flightDate" /> 70 <el-table-column label="航班日期" align="center" prop="flightDate" />
71 <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200"> 71 <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
72 <template slot-scope="scope"> 72 <template slot-scope="scope">
...@@ -107,11 +107,11 @@ ...@@ -107,11 +107,11 @@
107 </el-col> 107 </el-col>
108 108
109 <el-col :span="24" style="margin-bottom: 5%;"> 109 <el-col :span="24" style="margin-bottom: 5%;">
110 - <span style="color: red;margin-left: 10%;">提示:目的航班之同请用分号分隔【符号不区分中英文】,例:CA1053:C7433</span><br /> 110 + <span style="color: red;margin-left: 10%;">提示:配载航班之同请用分号分隔【符号不区分中英文】,例:CA1053:C7433</span><br />
111 - <span style="color: red;margin-left: 10%;">提示:如果需要设置目的航班延迟或提前可以直接在目的航斑后加减【+-】天数。如:CA1053+1:CZ433-1</span> 111 + <span style="color: red;margin-left: 10%;">提示:如果需要设置配载航班延迟或提前可以直接在目的航斑后加减【+-】天数。如:CA1053+1:CZ433-1</span>
112 </el-col> 112 </el-col>
113 <el-col :span="24"> 113 <el-col :span="24">
114 - <el-form-item label="目的航班" prop="flightRank"> 114 + <el-form-item label="配载航班" prop="flightRank">
115 <el-input type="textarea" v-model="form.flightRank" :rows="4"></el-input> 115 <el-input type="textarea" v-model="form.flightRank" :rows="4"></el-input>
116 </el-form-item> 116 </el-form-item>
117 </el-col> 117 </el-col>
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
216 }], 216 }],
217 flightRank: [{ 217 flightRank: [{
218 required: true, 218 required: true,
219 - message: "目的航班不能为空", 219 + message: "配载航班不能为空",
220 trigger: "blur" 220 trigger: "blur"
221 }], 221 }],
222 } 222 }
......