正在显示
13 个修改的文件
包含
22 行增加
和
123 行删除
| @@ -224,49 +224,55 @@ | @@ -224,49 +224,55 @@ | ||
| 224 | </template> | 224 | </template> |
| 225 | </el-table-column> | 225 | </el-table-column> |
| 226 | <el-table-column | 226 | <el-table-column |
| 227 | - fixed | ||
| 228 | prop="name" | 227 | prop="name" |
| 229 | label="姓名" | 228 | label="姓名" |
| 230 | width="150"> | 229 | width="150"> |
| 231 | </el-table-column> | 230 | </el-table-column> |
| 232 | <el-table-column | 231 | <el-table-column |
| 233 | - fixed | ||
| 234 | prop="gender" | 232 | prop="gender" |
| 235 | label="性别" | 233 | label="性别" |
| 236 | width="150"> | 234 | width="150"> |
| 237 | </el-table-column> | 235 | </el-table-column> |
| 238 | <el-table-column | 236 | <el-table-column |
| 239 | - fixed | ||
| 240 | prop="nationality" | 237 | prop="nationality" |
| 241 | label="国籍" | 238 | label="国籍" |
| 242 | width="150"> | 239 | width="150"> |
| 243 | </el-table-column> | 240 | </el-table-column> |
| 244 | <el-table-column | 241 | <el-table-column |
| 245 | - fixed | ||
| 246 | prop="certType" | 242 | prop="certType" |
| 247 | label="证件类型" | 243 | label="证件类型" |
| 248 | width="150"> | 244 | width="150"> |
| 249 | </el-table-column> | 245 | </el-table-column> |
| 250 | <el-table-column | 246 | <el-table-column |
| 251 | - fixed | ||
| 252 | prop="ceterNo" | 247 | prop="ceterNo" |
| 253 | label="证件编辑" | 248 | label="证件编辑" |
| 254 | width="150"> | 249 | width="150"> |
| 255 | </el-table-column> | 250 | </el-table-column> |
| 256 | <el-table-column | 251 | <el-table-column |
| 257 | - fixed | ||
| 258 | prop="gareer" | 252 | prop="gareer" |
| 259 | label="职务" | 253 | label="职务" |
| 260 | width="150"> | 254 | width="150"> |
| 261 | </el-table-column> | 255 | </el-table-column> |
| 262 | <el-table-column | 256 | <el-table-column |
| 263 | - fixed | ||
| 264 | prop="meno" | 257 | prop="meno" |
| 265 | label="备注" | 258 | label="备注" |
| 266 | width="350"> | 259 | width="350"> |
| 267 | </el-table-column> | 260 | </el-table-column> |
| 268 | </el-table> | 261 | </el-table> |
| 269 | </el-row> | 262 | </el-row> |
| 263 | + <el-row> | ||
| 264 | + <div class="block"> | ||
| 265 | + <el-pagination | ||
| 266 | + @size-change="handleSizeChange" | ||
| 267 | + @current-change="handleCurrentChange" | ||
| 268 | + :current-page="currentPage" | ||
| 269 | + :page-sizes="[10, 20, 30, 40]" | ||
| 270 | + :page-size="pageSize" | ||
| 271 | + layout="total, sizes, prev, pager, next, jumper" | ||
| 272 | + :total="total"> | ||
| 273 | + </el-pagination> | ||
| 274 | + </div> | ||
| 275 | + </el-row> | ||
| 270 | <!--对话提示框--> | 276 | <!--对话提示框--> |
| 271 | <el-row> | 277 | <el-row> |
| 272 | <el-dialog | 278 | <el-dialog |
| @@ -458,6 +464,10 @@ background-color: white; | @@ -458,6 +464,10 @@ background-color: white; | ||
| 458 | flightDate: '20160502', | 464 | flightDate: '20160502', |
| 459 | }], | 465 | }], |
| 460 | centerDialogVisible:false, | 466 | centerDialogVisible:false, |
| 467 | + labelPosition:'left', | ||
| 468 | + currentPage: 1, | ||
| 469 | + pageSize:10, | ||
| 470 | + total:0, | ||
| 461 | msg:undefined | 471 | msg:undefined |
| 462 | } | 472 | } |
| 463 | }, | 473 | }, |
| @@ -491,11 +501,12 @@ background-color: white; | @@ -491,11 +501,12 @@ background-color: white; | ||
| 491 | }, | 501 | }, |
| 492 | // 分页 | 502 | // 分页 |
| 493 | handleSizeChange(val) { | 503 | handleSizeChange(val) { |
| 494 | - console.log(`每页 ${val} 条`); | 504 | + this.pageSize=val; |
| 495 | }, | 505 | }, |
| 496 | handleCurrentChange(val) { | 506 | handleCurrentChange(val) { |
| 497 | - console.log(`当前页: ${val}`); | ||
| 498 | - }, | 507 | + this.currentPage=val; |
| 508 | + this.submitForm(); | ||
| 509 | + } | ||
| 499 | }, | 510 | }, |
| 500 | mounted(){ | 511 | mounted(){ |
| 501 | this.defaultData(); | 512 | this.defaultData(); |
| @@ -44,67 +44,56 @@ | @@ -44,67 +44,56 @@ | ||
| 44 | </template> | 44 | </template> |
| 45 | </el-table-column> | 45 | </el-table-column> |
| 46 | <el-table-column | 46 | <el-table-column |
| 47 | - fixed | ||
| 48 | prop=airwayCode" | 47 | prop=airwayCode" |
| 49 | label="航空器所有人代码" | 48 | label="航空器所有人代码" |
| 50 | width="120"> | 49 | width="120"> |
| 51 | </el-table-column> | 50 | </el-table-column> |
| 52 | <el-table-column | 51 | <el-table-column |
| 53 | - fixed | ||
| 54 | prop="airwayNameEn" | 52 | prop="airwayNameEn" |
| 55 | label="所有人英文名称" | 53 | label="所有人英文名称" |
| 56 | width="120"> | 54 | width="120"> |
| 57 | </el-table-column> | 55 | </el-table-column> |
| 58 | <el-table-column | 56 | <el-table-column |
| 59 | - fixed | ||
| 60 | prop="airwayNameCn" | 57 | prop="airwayNameCn" |
| 61 | label="所有人中文名称" | 58 | label="所有人中文名称" |
| 62 | width="150"> | 59 | width="150"> |
| 63 | </el-table-column> | 60 | </el-table-column> |
| 64 | <el-table-column | 61 | <el-table-column |
| 65 | - fixed | ||
| 66 | prop="aircraftNo" | 62 | prop="aircraftNo" |
| 67 | label="航空器注册编号" | 63 | label="航空器注册编号" |
| 68 | width="120"> | 64 | width="120"> |
| 69 | </el-table-column> | 65 | </el-table-column> |
| 70 | <el-table-column | 66 | <el-table-column |
| 71 | - fixed | ||
| 72 | prop="certNo" | 67 | prop="certNo" |
| 73 | label="国际证书编号" | 68 | label="国际证书编号" |
| 74 | width="120"> | 69 | width="120"> |
| 75 | </el-table-column> | 70 | </el-table-column> |
| 76 | <el-table-column | 71 | <el-table-column |
| 77 | - fixed | ||
| 78 | prop="ownerCo" | 72 | prop="ownerCo" |
| 79 | label="航空器所有人" | 73 | label="航空器所有人" |
| 80 | width="120"> | 74 | width="120"> |
| 81 | </el-table-column> | 75 | </el-table-column> |
| 82 | <el-table-column | 76 | <el-table-column |
| 83 | - fixed | ||
| 84 | prop="areoNationality" | 77 | prop="areoNationality" |
| 85 | label="国籍" | 78 | label="国籍" |
| 86 | width="80"> | 79 | width="80"> |
| 87 | </el-table-column> | 80 | </el-table-column> |
| 88 | <el-table-column | 81 | <el-table-column |
| 89 | - fixed | ||
| 90 | prop="areoModel" | 82 | prop="areoModel" |
| 91 | label="机型" | 83 | label="机型" |
| 92 | width="80"> | 84 | width="80"> |
| 93 | </el-table-column> | 85 | </el-table-column> |
| 94 | <el-table-column | 86 | <el-table-column |
| 95 | - fixed | ||
| 96 | prop="deliverDate" | 87 | prop="deliverDate" |
| 97 | label="交付日期" | 88 | label="交付日期" |
| 98 | width="120"> | 89 | width="120"> |
| 99 | </el-table-column> | 90 | </el-table-column> |
| 100 | <el-table-column | 91 | <el-table-column |
| 101 | - fixed | ||
| 102 | prop="statusMsg" | 92 | prop="statusMsg" |
| 103 | label="海关回执" | 93 | label="海关回执" |
| 104 | width="120"> | 94 | width="120"> |
| 105 | </el-table-column> | 95 | </el-table-column> |
| 106 | <el-table-column | 96 | <el-table-column |
| 107 | - fixed | ||
| 108 | prop="" | 97 | prop="" |
| 109 | label="报文操作" | 98 | label="报文操作" |
| 110 | width="150"> | 99 | width="150"> |
| @@ -53,62 +53,51 @@ | @@ -53,62 +53,51 @@ | ||
| 53 | </template> | 53 | </template> |
| 54 | </el-table-column> | 54 | </el-table-column> |
| 55 | <el-table-column | 55 | <el-table-column |
| 56 | - fixed | ||
| 57 | prop="flightNo" | 56 | prop="flightNo" |
| 58 | label="航班号" | 57 | label="航班号" |
| 59 | width="80"> | 58 | width="80"> |
| 60 | </el-table-column> | 59 | </el-table-column> |
| 61 | <el-table-column | 60 | <el-table-column |
| 62 | - fixed | ||
| 63 | prop="flightDate" | 61 | prop="flightDate" |
| 64 | label="航班日期" | 62 | label="航班日期" |
| 65 | width="120"> | 63 | width="120"> |
| 66 | </el-table-column> | 64 | </el-table-column> |
| 67 | <el-table-column | 65 | <el-table-column |
| 68 | - fixed | ||
| 69 | prop="aircraftNo" | 66 | prop="aircraftNo" |
| 70 | label="航空器注册编码" | 67 | label="航空器注册编码" |
| 71 | width="120"> | 68 | width="120"> |
| 72 | </el-table-column> | 69 | </el-table-column> |
| 73 | - | ||
| 74 | <el-table-column | 70 | <el-table-column |
| 75 | - fixed | ||
| 76 | prop="departurePort" | 71 | prop="departurePort" |
| 77 | label="出发港" | 72 | label="出发港" |
| 78 | width="80"> | 73 | width="80"> |
| 79 | </el-table-column> | 74 | </el-table-column> |
| 80 | <el-table-column | 75 | <el-table-column |
| 81 | - fixed | ||
| 82 | prop="arrivalPort" | 76 | prop="arrivalPort" |
| 83 | label="目的港" | 77 | label="目的港" |
| 84 | width="80"> | 78 | width="80"> |
| 85 | </el-table-column> | 79 | </el-table-column> |
| 86 | <el-table-column | 80 | <el-table-column |
| 87 | - fixed | ||
| 88 | prop="customDistrictNo" | 81 | prop="customDistrictNo" |
| 89 | label="关区代码" | 82 | label="关区代码" |
| 90 | width="80"> | 83 | width="80"> |
| 91 | </el-table-column> | 84 | </el-table-column> |
| 92 | <el-table-column | 85 | <el-table-column |
| 93 | - fixed | ||
| 94 | prop="transportflag" | 86 | prop="transportflag" |
| 95 | label="运输计划" | 87 | label="运输计划" |
| 96 | width="150"> | 88 | width="150"> |
| 97 | </el-table-column> | 89 | </el-table-column> |
| 98 | <el-table-column | 90 | <el-table-column |
| 99 | - fixed | ||
| 100 | prop="departuredatetime" | 91 | prop="departuredatetime" |
| 101 | label="离港时间" | 92 | label="离港时间" |
| 102 | width="120"> | 93 | width="120"> |
| 103 | </el-table-column> | 94 | </el-table-column> |
| 104 | <el-table-column | 95 | <el-table-column |
| 105 | - fixed | ||
| 106 | prop="statusMsg" | 96 | prop="statusMsg" |
| 107 | label="海关回执" | 97 | label="海关回执" |
| 108 | width="150"> | 98 | width="150"> |
| 109 | </el-table-column> | 99 | </el-table-column> |
| 110 | <el-table-column | 100 | <el-table-column |
| 111 | - fixed | ||
| 112 | prop="" | 101 | prop="" |
| 113 | label="报文操作" | 102 | label="报文操作" |
| 114 | width="150"> | 103 | width="150"> |
| @@ -59,61 +59,51 @@ | @@ -59,61 +59,51 @@ | ||
| 59 | </template> | 59 | </template> |
| 60 | </el-table-column> | 60 | </el-table-column> |
| 61 | <el-table-column | 61 | <el-table-column |
| 62 | - fixed | ||
| 63 | prop=aircraftNo" | 62 | prop=aircraftNo" |
| 64 | label="航空器注册号" | 63 | label="航空器注册号" |
| 65 | width="120"> | 64 | width="120"> |
| 66 | </el-table-column> | 65 | </el-table-column> |
| 67 | <el-table-column | 66 | <el-table-column |
| 68 | - fixed | ||
| 69 | prop="flightNo" | 67 | prop="flightNo" |
| 70 | label="航班号" | 68 | label="航班号" |
| 71 | width="80"> | 69 | width="80"> |
| 72 | </el-table-column> | 70 | </el-table-column> |
| 73 | <el-table-column | 71 | <el-table-column |
| 74 | - fixed | ||
| 75 | prop="flightDate" | 72 | prop="flightDate" |
| 76 | label="航班日期" | 73 | label="航班日期" |
| 77 | width="150"> | 74 | width="150"> |
| 78 | </el-table-column> | 75 | </el-table-column> |
| 79 | <el-table-column | 76 | <el-table-column |
| 80 | - fixed | ||
| 81 | prop="accessFlag" | 77 | prop="accessFlag" |
| 82 | label="进出港标识" | 78 | label="进出港标识" |
| 83 | width="120"> | 79 | width="120"> |
| 84 | </el-table-column> | 80 | </el-table-column> |
| 85 | <el-table-column | 81 | <el-table-column |
| 86 | - fixed | ||
| 87 | prop="departureAirport" | 82 | prop="departureAirport" |
| 88 | label="出发港" | 83 | label="出发港" |
| 89 | width="80"> | 84 | width="80"> |
| 90 | </el-table-column> | 85 | </el-table-column> |
| 91 | <el-table-column | 86 | <el-table-column |
| 92 | - fixed | ||
| 93 | prop="departuredatetime" | 87 | prop="departuredatetime" |
| 94 | label="出发时间" | 88 | label="出发时间" |
| 95 | width="150"> | 89 | width="150"> |
| 96 | </el-table-column> | 90 | </el-table-column> |
| 97 | <el-table-column | 91 | <el-table-column |
| 98 | - fixed | ||
| 99 | prop="arrivalAirport" | 92 | prop="arrivalAirport" |
| 100 | label="目的港" | 93 | label="目的港" |
| 101 | width="80"> | 94 | width="80"> |
| 102 | </el-table-column> | 95 | </el-table-column> |
| 103 | <el-table-column | 96 | <el-table-column |
| 104 | - fixed | ||
| 105 | prop="arrivaldatetime" | 97 | prop="arrivaldatetime" |
| 106 | label="到达时间" | 98 | label="到达时间" |
| 107 | width="150"> | 99 | width="150"> |
| 108 | </el-table-column> | 100 | </el-table-column> |
| 109 | <el-table-column | 101 | <el-table-column |
| 110 | - fixed | ||
| 111 | prop="statusMsg" | 102 | prop="statusMsg" |
| 112 | label="海关回执" | 103 | label="海关回执" |
| 113 | width="150"> | 104 | width="150"> |
| 114 | </el-table-column> | 105 | </el-table-column> |
| 115 | <el-table-column | 106 | <el-table-column |
| 116 | - fixed | ||
| 117 | prop="" | 107 | prop="" |
| 118 | label="报文操作" | 108 | label="报文操作" |
| 119 | width="150"> | 109 | width="150"> |
| @@ -39,49 +39,41 @@ | @@ -39,49 +39,41 @@ | ||
| 39 | </template> | 39 | </template> |
| 40 | </el-table-column> | 40 | </el-table-column> |
| 41 | <el-table-column | 41 | <el-table-column |
| 42 | - fixed | ||
| 43 | prop="username" | 42 | prop="username" |
| 44 | label="用户名" | 43 | label="用户名" |
| 45 | width="120"> | 44 | width="120"> |
| 46 | </el-table-column> | 45 | </el-table-column> |
| 47 | <el-table-column | 46 | <el-table-column |
| 48 | - fixed | ||
| 49 | prop="flightno" | 47 | prop="flightno" |
| 50 | label="航班号" | 48 | label="航班号" |
| 51 | width="80"> | 49 | width="80"> |
| 52 | </el-table-column> | 50 | </el-table-column> |
| 53 | <el-table-column | 51 | <el-table-column |
| 54 | - fixed | ||
| 55 | prop="ietype" | 52 | prop="ietype" |
| 56 | label="进出港" | 53 | label="进出港" |
| 57 | width="80"> | 54 | width="80"> |
| 58 | </el-table-column> | 55 | </el-table-column> |
| 59 | <el-table-column | 56 | <el-table-column |
| 60 | - fixed | ||
| 61 | prop="createby" | 57 | prop="createby" |
| 62 | label="创建人" | 58 | label="创建人" |
| 63 | width="120"> | 59 | width="120"> |
| 64 | </el-table-column> | 60 | </el-table-column> |
| 65 | <el-table-column | 61 | <el-table-column |
| 66 | - fixed | ||
| 67 | prop="createtime" | 62 | prop="createtime" |
| 68 | label="创建时间" | 63 | label="创建时间" |
| 69 | width="120"> | 64 | width="120"> |
| 70 | </el-table-column> | 65 | </el-table-column> |
| 71 | <el-table-column | 66 | <el-table-column |
| 72 | - fixed | ||
| 73 | prop="updateby" | 67 | prop="updateby" |
| 74 | label="更新人" | 68 | label="更新人" |
| 75 | width="120"> | 69 | width="120"> |
| 76 | </el-table-column> | 70 | </el-table-column> |
| 77 | <el-table-column | 71 | <el-table-column |
| 78 | - fixed | ||
| 79 | prop="updatetime" | 72 | prop="updatetime" |
| 80 | label="更新时间" | 73 | label="更新时间" |
| 81 | width="120"> | 74 | width="120"> |
| 82 | </el-table-column> | 75 | </el-table-column> |
| 83 | <el-table-column | 76 | <el-table-column |
| 84 | - fixed | ||
| 85 | prop="" | 77 | prop="" |
| 86 | label="报文操作" | 78 | label="报文操作" |
| 87 | width="150"> | 79 | width="150"> |
| @@ -53,61 +53,51 @@ | @@ -53,61 +53,51 @@ | ||
| 53 | </template> | 53 | </template> |
| 54 | </el-table-column> | 54 | </el-table-column> |
| 55 | <el-table-column | 55 | <el-table-column |
| 56 | - fixed | ||
| 57 | prop="flightNo" | 56 | prop="flightNo" |
| 58 | label="航班号" | 57 | label="航班号" |
| 59 | width="80"> | 58 | width="80"> |
| 60 | </el-table-column> | 59 | </el-table-column> |
| 61 | <el-table-column | 60 | <el-table-column |
| 62 | - fixed | ||
| 63 | prop="flightDate" | 61 | prop="flightDate" |
| 64 | label="航班日期" | 62 | label="航班日期" |
| 65 | width="120"> | 63 | width="120"> |
| 66 | </el-table-column> | 64 | </el-table-column> |
| 67 | <el-table-column | 65 | <el-table-column |
| 68 | - fixed | ||
| 69 | prop="aircraftNo" | 66 | prop="aircraftNo" |
| 70 | label="航空器注册编码" | 67 | label="航空器注册编码" |
| 71 | width="120"> | 68 | width="120"> |
| 72 | </el-table-column> | 69 | </el-table-column> |
| 73 | <el-table-column | 70 | <el-table-column |
| 74 | - fixed | ||
| 75 | prop="arrivalPort" | 71 | prop="arrivalPort" |
| 76 | label="目的港" | 72 | label="目的港" |
| 77 | width="80"> | 73 | width="80"> |
| 78 | </el-table-column> | 74 | </el-table-column> |
| 79 | <el-table-column | 75 | <el-table-column |
| 80 | - fixed | ||
| 81 | prop="customDistrictNo" | 76 | prop="customDistrictNo" |
| 82 | label="关区代码" | 77 | label="关区代码" |
| 83 | width="80"> | 78 | width="80"> |
| 84 | </el-table-column> | 79 | </el-table-column> |
| 85 | <el-table-column | 80 | <el-table-column |
| 86 | - fixed | ||
| 87 | prop="transportflag" | 81 | prop="transportflag" |
| 88 | label="运输计划" | 82 | label="运输计划" |
| 89 | width="80"> | 83 | width="80"> |
| 90 | </el-table-column> | 84 | </el-table-column> |
| 91 | <el-table-column | 85 | <el-table-column |
| 92 | - fixed | ||
| 93 | prop="departuredatetime" | 86 | prop="departuredatetime" |
| 94 | label="离港时间" | 87 | label="离港时间" |
| 95 | width="120"> | 88 | width="120"> |
| 96 | </el-table-column> | 89 | </el-table-column> |
| 97 | <el-table-column | 90 | <el-table-column |
| 98 | - fixed | ||
| 99 | prop="arrivaldatetime" | 91 | prop="arrivaldatetime" |
| 100 | label="抵港时间" | 92 | label="抵港时间" |
| 101 | width="120"> | 93 | width="120"> |
| 102 | </el-table-column> | 94 | </el-table-column> |
| 103 | <el-table-column | 95 | <el-table-column |
| 104 | - fixed | ||
| 105 | prop="statusMsg" | 96 | prop="statusMsg" |
| 106 | label="海关回执" | 97 | label="海关回执" |
| 107 | width="150"> | 98 | width="150"> |
| 108 | </el-table-column> | 99 | </el-table-column> |
| 109 | <el-table-column | 100 | <el-table-column |
| 110 | - fixed | ||
| 111 | prop="" | 101 | prop="" |
| 112 | label="报文操作" | 102 | label="报文操作" |
| 113 | width="150"> | 103 | width="150"> |
| @@ -53,61 +53,51 @@ | @@ -53,61 +53,51 @@ | ||
| 53 | </template> | 53 | </template> |
| 54 | </el-table-column> | 54 | </el-table-column> |
| 55 | <el-table-column | 55 | <el-table-column |
| 56 | - fixed | ||
| 57 | prop="flightNo" | 56 | prop="flightNo" |
| 58 | label="航班号" | 57 | label="航班号" |
| 59 | width="80"> | 58 | width="80"> |
| 60 | </el-table-column> | 59 | </el-table-column> |
| 61 | <el-table-column | 60 | <el-table-column |
| 62 | - fixed | ||
| 63 | prop="flightDate" | 61 | prop="flightDate" |
| 64 | label="航班日期" | 62 | label="航班日期" |
| 65 | width="120"> | 63 | width="120"> |
| 66 | </el-table-column> | 64 | </el-table-column> |
| 67 | <el-table-column | 65 | <el-table-column |
| 68 | - fixed | ||
| 69 | prop="aircraftNo" | 66 | prop="aircraftNo" |
| 70 | label="航空器注册编码" | 67 | label="航空器注册编码" |
| 71 | width="120"> | 68 | width="120"> |
| 72 | </el-table-column> | 69 | </el-table-column> |
| 73 | <el-table-column | 70 | <el-table-column |
| 74 | - fixed | ||
| 75 | prop="departurePort" | 71 | prop="departurePort" |
| 76 | label="出发港" | 72 | label="出发港" |
| 77 | width="80"> | 73 | width="80"> |
| 78 | </el-table-column> | 74 | </el-table-column> |
| 79 | <el-table-column | 75 | <el-table-column |
| 80 | - fixed | ||
| 81 | prop="arrivalPort" | 76 | prop="arrivalPort" |
| 82 | label="目的港" | 77 | label="目的港" |
| 83 | width="80"> | 78 | width="80"> |
| 84 | </el-table-column> | 79 | </el-table-column> |
| 85 | <el-table-column | 80 | <el-table-column |
| 86 | - fixed | ||
| 87 | prop="customDistrictNo" | 81 | prop="customDistrictNo" |
| 88 | label="关区代码" | 82 | label="关区代码" |
| 89 | width="80"> | 83 | width="80"> |
| 90 | </el-table-column> | 84 | </el-table-column> |
| 91 | <el-table-column | 85 | <el-table-column |
| 92 | - fixed | ||
| 93 | prop="transportflag" | 86 | prop="transportflag" |
| 94 | label="运输计划" | 87 | label="运输计划" |
| 95 | width="120"> | 88 | width="120"> |
| 96 | </el-table-column> | 89 | </el-table-column> |
| 97 | <el-table-column | 90 | <el-table-column |
| 98 | - fixed | ||
| 99 | prop="departuredatetime" | 91 | prop="departuredatetime" |
| 100 | label="离港时间" | 92 | label="离港时间" |
| 101 | width="120"> | 93 | width="120"> |
| 102 | </el-table-column> | 94 | </el-table-column> |
| 103 | <el-table-column | 95 | <el-table-column |
| 104 | - fixed | ||
| 105 | prop="statusMsg" | 96 | prop="statusMsg" |
| 106 | label="海关回执" | 97 | label="海关回执" |
| 107 | width="150"> | 98 | width="150"> |
| 108 | </el-table-column> | 99 | </el-table-column> |
| 109 | <el-table-column | 100 | <el-table-column |
| 110 | - fixed | ||
| 111 | prop="" | 101 | prop="" |
| 112 | label="报文操作" | 102 | label="报文操作" |
| 113 | width="150"> | 103 | width="150"> |
| @@ -53,61 +53,51 @@ | @@ -53,61 +53,51 @@ | ||
| 53 | </template> | 53 | </template> |
| 54 | </el-table-column> | 54 | </el-table-column> |
| 55 | <el-table-column | 55 | <el-table-column |
| 56 | - fixed | ||
| 57 | prop="flightNo" | 56 | prop="flightNo" |
| 58 | label="航班号" | 57 | label="航班号" |
| 59 | width="80"> | 58 | width="80"> |
| 60 | </el-table-column> | 59 | </el-table-column> |
| 61 | <el-table-column | 60 | <el-table-column |
| 62 | - fixed | ||
| 63 | prop="flightDate" | 61 | prop="flightDate" |
| 64 | label="航班日期" | 62 | label="航班日期" |
| 65 | width="120"> | 63 | width="120"> |
| 66 | </el-table-column> | 64 | </el-table-column> |
| 67 | <el-table-column | 65 | <el-table-column |
| 68 | - fixed | ||
| 69 | prop="aircraftNo" | 66 | prop="aircraftNo" |
| 70 | label="航空器注册编码" | 67 | label="航空器注册编码" |
| 71 | width="120"> | 68 | width="120"> |
| 72 | </el-table-column> | 69 | </el-table-column> |
| 73 | <el-table-column | 70 | <el-table-column |
| 74 | - fixed | ||
| 75 | prop="departurePort" | 71 | prop="departurePort" |
| 76 | label="出发港" | 72 | label="出发港" |
| 77 | width="80"> | 73 | width="80"> |
| 78 | </el-table-column> | 74 | </el-table-column> |
| 79 | <el-table-column | 75 | <el-table-column |
| 80 | - fixed | ||
| 81 | prop="arrivalPort" | 76 | prop="arrivalPort" |
| 82 | label="目的港" | 77 | label="目的港" |
| 83 | width="80"> | 78 | width="80"> |
| 84 | </el-table-column> | 79 | </el-table-column> |
| 85 | <el-table-column | 80 | <el-table-column |
| 86 | - fixed | ||
| 87 | prop="customDistrictNo" | 81 | prop="customDistrictNo" |
| 88 | label="关区代码" | 82 | label="关区代码" |
| 89 | width="80"> | 83 | width="80"> |
| 90 | </el-table-column> | 84 | </el-table-column> |
| 91 | <el-table-column | 85 | <el-table-column |
| 92 | - fixed | ||
| 93 | prop="transportflag" | 86 | prop="transportflag" |
| 94 | label="运输计划" | 87 | label="运输计划" |
| 95 | width="150"> | 88 | width="150"> |
| 96 | </el-table-column> | 89 | </el-table-column> |
| 97 | <el-table-column | 90 | <el-table-column |
| 98 | - fixed | ||
| 99 | prop="departuredatetime" | 91 | prop="departuredatetime" |
| 100 | label="离港时间" | 92 | label="离港时间" |
| 101 | width="120"> | 93 | width="120"> |
| 102 | </el-table-column> | 94 | </el-table-column> |
| 103 | <el-table-column | 95 | <el-table-column |
| 104 | - fixed | ||
| 105 | prop="statusMsg" | 96 | prop="statusMsg" |
| 106 | label="海关回执" | 97 | label="海关回执" |
| 107 | width="150"> | 98 | width="150"> |
| 108 | </el-table-column> | 99 | </el-table-column> |
| 109 | <el-table-column | 100 | <el-table-column |
| 110 | - fixed | ||
| 111 | prop="" | 101 | prop="" |
| 112 | label="报文操作" | 102 | label="报文操作" |
| 113 | width="150"> | 103 | width="150"> |
| @@ -44,62 +44,51 @@ | @@ -44,62 +44,51 @@ | ||
| 44 | </template> | 44 | </template> |
| 45 | </el-table-column> | 45 | </el-table-column> |
| 46 | <el-table-column | 46 | <el-table-column |
| 47 | - fixed | ||
| 48 | prop="flightNo" | 47 | prop="flightNo" |
| 49 | label="航班号" | 48 | label="航班号" |
| 50 | width="80"> | 49 | width="80"> |
| 51 | </el-table-column> | 50 | </el-table-column> |
| 52 | <el-table-column | 51 | <el-table-column |
| 53 | - fixed | ||
| 54 | prop="airwayCode" | 52 | prop="airwayCode" |
| 55 | label="航空公司代码" | 53 | label="航空公司代码" |
| 56 | width="120"> | 54 | width="120"> |
| 57 | </el-table-column> | 55 | </el-table-column> |
| 58 | - | ||
| 59 | <el-table-column | 56 | <el-table-column |
| 60 | - fixed | ||
| 61 | prop="flightDate" | 57 | prop="flightDate" |
| 62 | label="航空公司中文" | 58 | label="航空公司中文" |
| 63 | width="150"> | 59 | width="150"> |
| 64 | </el-table-column> | 60 | </el-table-column> |
| 65 | <el-table-column | 61 | <el-table-column |
| 66 | - fixed | ||
| 67 | prop="transportAgentCode" | 62 | prop="transportAgentCode" |
| 68 | label="传输代理人" | 63 | label="传输代理人" |
| 69 | width="120"> | 64 | width="120"> |
| 70 | </el-table-column> | 65 | </el-table-column> |
| 71 | <el-table-column | 66 | <el-table-column |
| 72 | - fixed | ||
| 73 | prop="groundAgentCode" | 67 | prop="groundAgentCode" |
| 74 | label="地面代理人" | 68 | label="地面代理人" |
| 75 | width="120"> | 69 | width="120"> |
| 76 | </el-table-column> | 70 | </el-table-column> |
| 77 | <el-table-column | 71 | <el-table-column |
| 78 | - fixed | ||
| 79 | prop="linesType" | 72 | prop="linesType" |
| 80 | label="运输计划" | 73 | label="运输计划" |
| 81 | width="150"> | 74 | width="150"> |
| 82 | </el-table-column> | 75 | </el-table-column> |
| 83 | <el-table-column | 76 | <el-table-column |
| 84 | - fixed | ||
| 85 | prop="flightType" | 77 | prop="flightType" |
| 86 | label="航班性质" | 78 | label="航班性质" |
| 87 | width="80"> | 79 | width="80"> |
| 88 | </el-table-column> | 80 | </el-table-column> |
| 89 | <el-table-column | 81 | <el-table-column |
| 90 | - fixed | ||
| 91 | prop="shareFlightNo" | 82 | prop="shareFlightNo" |
| 92 | label="共享航班号" | 83 | label="共享航班号" |
| 93 | width="150"> | 84 | width="150"> |
| 94 | </el-table-column> | 85 | </el-table-column> |
| 95 | <el-table-column | 86 | <el-table-column |
| 96 | - fixed | ||
| 97 | prop="statusMsg" | 87 | prop="statusMsg" |
| 98 | label="海关回执" | 88 | label="海关回执" |
| 99 | width="150"> | 89 | width="150"> |
| 100 | </el-table-column> | 90 | </el-table-column> |
| 101 | <el-table-column | 91 | <el-table-column |
| 102 | - fixed | ||
| 103 | prop="" | 92 | prop="" |
| 104 | label="报文操作" | 93 | label="报文操作" |
| 105 | width="150"> | 94 | width="150"> |
| @@ -39,49 +39,41 @@ | @@ -39,49 +39,41 @@ | ||
| 39 | </template> | 39 | </template> |
| 40 | </el-table-column> | 40 | </el-table-column> |
| 41 | <el-table-column | 41 | <el-table-column |
| 42 | - fixed | ||
| 43 | prop="username" | 42 | prop="username" |
| 44 | label="用户名" | 43 | label="用户名" |
| 45 | width="120"> | 44 | width="120"> |
| 46 | </el-table-column> | 45 | </el-table-column> |
| 47 | <el-table-column | 46 | <el-table-column |
| 48 | - fixed | ||
| 49 | prop="flightno" | 47 | prop="flightno" |
| 50 | label="航班号" | 48 | label="航班号" |
| 51 | width="80"> | 49 | width="80"> |
| 52 | </el-table-column> | 50 | </el-table-column> |
| 53 | <el-table-column | 51 | <el-table-column |
| 54 | - fixed | ||
| 55 | prop="ietype" | 52 | prop="ietype" |
| 56 | label="进出港" | 53 | label="进出港" |
| 57 | width="80"> | 54 | width="80"> |
| 58 | </el-table-column> | 55 | </el-table-column> |
| 59 | <el-table-column | 56 | <el-table-column |
| 60 | - fixed | ||
| 61 | prop="createby" | 57 | prop="createby" |
| 62 | label="创建人" | 58 | label="创建人" |
| 63 | width="120"> | 59 | width="120"> |
| 64 | </el-table-column> | 60 | </el-table-column> |
| 65 | <el-table-column | 61 | <el-table-column |
| 66 | - fixed | ||
| 67 | prop="createtime" | 62 | prop="createtime" |
| 68 | label="创建时间" | 63 | label="创建时间" |
| 69 | width="120"> | 64 | width="120"> |
| 70 | </el-table-column> | 65 | </el-table-column> |
| 71 | <el-table-column | 66 | <el-table-column |
| 72 | - fixed | ||
| 73 | prop="updateby" | 67 | prop="updateby" |
| 74 | label="更新人" | 68 | label="更新人" |
| 75 | width="120"> | 69 | width="120"> |
| 76 | </el-table-column> | 70 | </el-table-column> |
| 77 | <el-table-column | 71 | <el-table-column |
| 78 | - fixed | ||
| 79 | prop="updatetime" | 72 | prop="updatetime" |
| 80 | label="更新时间" | 73 | label="更新时间" |
| 81 | width="120"> | 74 | width="120"> |
| 82 | </el-table-column> | 75 | </el-table-column> |
| 83 | <el-table-column | 76 | <el-table-column |
| 84 | - fixed | ||
| 85 | prop="" | 77 | prop="" |
| 86 | label="报文操作" | 78 | label="报文操作" |
| 87 | width="150"> | 79 | width="150"> |
| @@ -55,73 +55,61 @@ | @@ -55,73 +55,61 @@ | ||
| 55 | </template> | 55 | </template> |
| 56 | </el-table-column> | 56 | </el-table-column> |
| 57 | <el-table-column | 57 | <el-table-column |
| 58 | - fixed | ||
| 59 | prop="flightNo" | 58 | prop="flightNo" |
| 60 | label="航班号" | 59 | label="航班号" |
| 61 | width="80"> | 60 | width="80"> |
| 62 | </el-table-column> | 61 | </el-table-column> |
| 63 | <el-table-column | 62 | <el-table-column |
| 64 | - fixed | ||
| 65 | prop="flightDate" | 63 | prop="flightDate" |
| 66 | label="航班日期" | 64 | label="航班日期" |
| 67 | width="150"> | 65 | width="150"> |
| 68 | </el-table-column> | 66 | </el-table-column> |
| 69 | <el-table-column | 67 | <el-table-column |
| 70 | - fixed | ||
| 71 | prop="departurePort" | 68 | prop="departurePort" |
| 72 | label="出发港" | 69 | label="出发港" |
| 73 | width="80"> | 70 | width="80"> |
| 74 | </el-table-column> | 71 | </el-table-column> |
| 75 | <el-table-column | 72 | <el-table-column |
| 76 | - fixed | ||
| 77 | prop="departureCustomNo" | 73 | prop="departureCustomNo" |
| 78 | label="关区代码" | 74 | label="关区代码" |
| 79 | width="80"> | 75 | width="80"> |
| 80 | </el-table-column> | 76 | </el-table-column> |
| 81 | <el-table-column | 77 | <el-table-column |
| 82 | - fixed | ||
| 83 | prop="arrivalPort" | 78 | prop="arrivalPort" |
| 84 | label="目的港" | 79 | label="目的港" |
| 85 | width="80"> | 80 | width="80"> |
| 86 | </el-table-column> | 81 | </el-table-column> |
| 87 | <el-table-column | 82 | <el-table-column |
| 88 | - fixed | ||
| 89 | prop="arrivalCustomNo" | 83 | prop="arrivalCustomNo" |
| 90 | label="关区代码" | 84 | label="关区代码" |
| 91 | width="80"> | 85 | width="80"> |
| 92 | </el-table-column> | 86 | </el-table-column> |
| 93 | <el-table-column | 87 | <el-table-column |
| 94 | - fixed | ||
| 95 | prop="currentTakeoffTime" | 88 | prop="currentTakeoffTime" |
| 96 | label="离港时间" | 89 | label="离港时间" |
| 97 | width="150"> | 90 | width="150"> |
| 98 | </el-table-column> | 91 | </el-table-column> |
| 99 | <el-table-column | 92 | <el-table-column |
| 100 | - fixed | ||
| 101 | prop="currentLandingTime" | 93 | prop="currentLandingTime" |
| 102 | label="抵港时间" | 94 | label="抵港时间" |
| 103 | width="150"> | 95 | width="150"> |
| 104 | </el-table-column> | 96 | </el-table-column> |
| 105 | <el-table-column | 97 | <el-table-column |
| 106 | - fixed | ||
| 107 | prop="transportflag" | 98 | prop="transportflag" |
| 108 | label="进出港" | 99 | label="进出港" |
| 109 | width="80"> | 100 | width="80"> |
| 110 | </el-table-column> | 101 | </el-table-column> |
| 111 | <el-table-column | 102 | <el-table-column |
| 112 | - fixed | ||
| 113 | prop="linesType" | 103 | prop="linesType" |
| 114 | label="执行任务类型" | 104 | label="执行任务类型" |
| 115 | width="150"> | 105 | width="150"> |
| 116 | </el-table-column> | 106 | </el-table-column> |
| 117 | <el-table-column | 107 | <el-table-column |
| 118 | - fixed | ||
| 119 | prop="statusMsg" | 108 | prop="statusMsg" |
| 120 | label="海关回执" | 109 | label="海关回执" |
| 121 | width="150"> | 110 | width="150"> |
| 122 | </el-table-column> | 111 | </el-table-column> |
| 123 | <el-table-column | 112 | <el-table-column |
| 124 | - fixed | ||
| 125 | prop="" | 113 | prop="" |
| 126 | label="报文操作" | 114 | label="报文操作" |
| 127 | width="150"> | 115 | width="150"> |
| @@ -44,73 +44,61 @@ | @@ -44,73 +44,61 @@ | ||
| 44 | </template> | 44 | </template> |
| 45 | </el-table-column> | 45 | </el-table-column> |
| 46 | <el-table-column | 46 | <el-table-column |
| 47 | - fixed | ||
| 48 | prop=ownerCo" | 47 | prop=ownerCo" |
| 49 | label="航空器所有人代码" | 48 | label="航空器所有人代码" |
| 50 | width="120"> | 49 | width="120"> |
| 51 | </el-table-column> | 50 | </el-table-column> |
| 52 | <el-table-column | 51 | <el-table-column |
| 53 | - fixed | ||
| 54 | prop="airwayNameEn" | 52 | prop="airwayNameEn" |
| 55 | label="所有人英文名称" | 53 | label="所有人英文名称" |
| 56 | width="120"> | 54 | width="120"> |
| 57 | </el-table-column> | 55 | </el-table-column> |
| 58 | <el-table-column | 56 | <el-table-column |
| 59 | - fixed | ||
| 60 | prop="airwayNameCn" | 57 | prop="airwayNameCn" |
| 61 | label="所有人中文名称" | 58 | label="所有人中文名称" |
| 62 | width="150"> | 59 | width="150"> |
| 63 | </el-table-column> | 60 | </el-table-column> |
| 64 | <el-table-column | 61 | <el-table-column |
| 65 | - fixed | ||
| 66 | prop="aircraftNo" | 62 | prop="aircraftNo" |
| 67 | label="航空器注册编号" | 63 | label="航空器注册编号" |
| 68 | width="120"> | 64 | width="120"> |
| 69 | </el-table-column> | 65 | </el-table-column> |
| 70 | <el-table-column | 66 | <el-table-column |
| 71 | - fixed | ||
| 72 | prop="certNo" | 67 | prop="certNo" |
| 73 | label="国际证书编号" | 68 | label="国际证书编号" |
| 74 | width="120"> | 69 | width="120"> |
| 75 | </el-table-column> | 70 | </el-table-column> |
| 76 | <el-table-column | 71 | <el-table-column |
| 77 | - fixed | ||
| 78 | prop="owner" | 72 | prop="owner" |
| 79 | label="航空器所有人" | 73 | label="航空器所有人" |
| 80 | width="120"> | 74 | width="120"> |
| 81 | </el-table-column> | 75 | </el-table-column> |
| 82 | <el-table-column | 76 | <el-table-column |
| 83 | - fixed | ||
| 84 | prop="areoNationality" | 77 | prop="areoNationality" |
| 85 | label="国籍" | 78 | label="国籍" |
| 86 | width="80"> | 79 | width="80"> |
| 87 | </el-table-column> | 80 | </el-table-column> |
| 88 | <el-table-column | 81 | <el-table-column |
| 89 | - fixed | ||
| 90 | prop="areoModel" | 82 | prop="areoModel" |
| 91 | label="机型" | 83 | label="机型" |
| 92 | width="80"> | 84 | width="80"> |
| 93 | </el-table-column> | 85 | </el-table-column> |
| 94 | <el-table-column | 86 | <el-table-column |
| 95 | - fixed | ||
| 96 | prop="deliverDate" | 87 | prop="deliverDate" |
| 97 | label="交付日期" | 88 | label="交付日期" |
| 98 | width="120"> | 89 | width="120"> |
| 99 | </el-table-column> | 90 | </el-table-column> |
| 100 | <el-table-column | 91 | <el-table-column |
| 101 | - fixed | ||
| 102 | prop="statusMsg" | 92 | prop="statusMsg" |
| 103 | label="海关回执" | 93 | label="海关回执" |
| 104 | width="120"> | 94 | width="120"> |
| 105 | </el-table-column> | 95 | </el-table-column> |
| 106 | <el-table-column | 96 | <el-table-column |
| 107 | - fixed | ||
| 108 | prop="supervisoryProperty" | 97 | prop="supervisoryProperty" |
| 109 | label="所有权监管" | 98 | label="所有权监管" |
| 110 | width="120"> | 99 | width="120"> |
| 111 | </el-table-column> | 100 | </el-table-column> |
| 112 | <el-table-column | 101 | <el-table-column |
| 113 | - fixed | ||
| 114 | prop="" | 102 | prop="" |
| 115 | label="报文操作" | 103 | label="报文操作" |
| 116 | width="150"> | 104 | width="150"> |
-
请 注册 或 登录 后发表评论