作者 xudada

合并分支 'ExportOrder' 到 'master'

Export order



查看合并请求 !35
@@ -82,7 +82,7 @@ import Location from './views/empt/Location.vue' @@ -82,7 +82,7 @@ import Location from './views/empt/Location.vue'
82 82
83 //运输工具 通用业务申报 83 //运输工具 通用业务申报
84 import Route from './views/airtransport/route.vue' 84 import Route from './views/airtransport/route.vue'
85 -import Bill from './views/airtransport/bill.vue' 85 +import Bills from './views/airtransport/bills.vue'
86 import Flight from './views/airtransport/flight.vue' 86 import Flight from './views/airtransport/flight.vue'
87 import Flightplan from './views/airtransport/flightplan.vue' 87 import Flightplan from './views/airtransport/flightplan.vue'
88 import Aircraft from './views/airtransport/aircraft.vue' 88 import Aircraft from './views/airtransport/aircraft.vue'
@@ -188,6 +188,7 @@ import Telegram from './views/nav3/Telegram.vue' @@ -188,6 +188,7 @@ import Telegram from './views/nav3/Telegram.vue'
188 import TeleAddr from "./views/nav3/TeleAddr.vue"; 188 import TeleAddr from "./views/nav3/TeleAddr.vue";
189 //朱总让做的网页在线客服 189 //朱总让做的网页在线客服
190 import Webdialog from './views/bus/Webdialog.vue' 190 import Webdialog from './views/bus/Webdialog.vue'
  191 +import C6Way from './views/nav3/C6Way.vue'
191 192
192 //转运申请 193 //转运申请
193 import Transport from './views/nav4/Transport.vue' 194 import Transport from './views/nav4/Transport.vue'
@@ -276,7 +277,8 @@ let routes = [ @@ -276,7 +277,8 @@ let routes = [
276 {path: '/Way', component: Way, name: '货运单'}, 277 {path: '/Way', component: Way, name: '货运单'},
277 {path: '/Telegram', component: Telegram, name: '电报查询'}, 278 {path: '/Telegram', component: Telegram, name: '电报查询'},
278 {path: '/Webdialog', component: Webdialog, name: '在线客服'}, 279 {path: '/Webdialog', component: Webdialog, name: '在线客服'},
279 - {path: '/TeleAddr', component: TeleAddr, name: '电报地址'} 280 + {path: '/TeleAddr', component: TeleAddr, name: '电报地址'},
  281 + {path: '/C6Way', component: C6Way, name: 'C6货运单'},
280 ] 282 ]
281 }, 283 },
282 { 284 {
@@ -509,7 +511,7 @@ let routes = [ @@ -509,7 +511,7 @@ let routes = [
509 iconCls:'el-icon-goods', 511 iconCls:'el-icon-goods',
510 children:[ 512 children:[
511 {path:'/route',component:Route,name:'航线申报'}, 513 {path:'/route',component:Route,name:'航线申报'},
512 - {path:'/bill',component:Bill,name:'单据申报'}, 514 + {path:'/bills',component:Bills,name:'单据申报'},
513 {path:'/flights',component:Flight,name:'航班申报'}, 515 {path:'/flights',component:Flight,name:'航班申报'},
514 {path:'/flightplan',component:Flightplan,name:'当日飞行计划'}, 516 {path:'/flightplan',component:Flightplan,name:'当日飞行计划'},
515 {path:'/aircraft',component:Aircraft,name:'通用航空器申报'}, 517 {path:'/aircraft',component:Aircraft,name:'通用航空器申报'},
@@ -442,7 +442,7 @@ @@ -442,7 +442,7 @@
442 //编辑单据查询 442 //编辑单据查询
443 handleEdit(index,row){ 443 handleEdit(index,row){
444 444
445 - this.$router.push({path:'/bill',query:row}); 445 + this.$router.push({path:'/bills',query:row});
446 446
447 }, 447 },
448 //分页 448 //分页
@@ -130,7 +130,7 @@ @@ -130,7 +130,7 @@
130 <el-pagination 130 <el-pagination
131 @size-change="handleSizeChange" 131 @size-change="handleSizeChange"
132 @current-change="handleCurrentChange" 132 @current-change="handleCurrentChange"
133 - :current-page="currentPage" 133 + :current-page="pageNum"
134 :page-sizes="[10, 20, 30, 40]" 134 :page-sizes="[10, 20, 30, 40]"
135 :page-size="pageSize" 135 :page-size="pageSize"
136 layout="total, sizes, prev, pager, next, jumper" 136 layout="total, sizes, prev, pager, next, jumper"
@@ -208,7 +208,7 @@ @@ -208,7 +208,7 @@
208 awcd:'' 208 awcd:''
209 }, 209 },
210 labelPosition:'left', 210 labelPosition:'left',
211 - currentPage: 1, 211 + pageNum: 1,
212 pageSize:10, 212 pageSize:10,
213 total:0, 213 total:0,
214 tableData: [], 214 tableData: [],
@@ -234,13 +234,13 @@ @@ -234,13 +234,13 @@
234 this.pageSize=val; 234 this.pageSize=val;
235 }, 235 },
236 handleCurrentChange(val) { 236 handleCurrentChange(val) {
237 - this.currentPage=val; 237 + this.pageNum=val;
238 this.submitForm(); 238 this.submitForm();
239 }, 239 },
240 //获取当日飞行计划列表 240 //获取当日飞行计划列表
241 submitForm() { 241 submitForm() {
242 let params = { 242 let params = {
243 - currentPage: this.currentPage, pageSize: this.pageSize, flightNo: this.queryFlightplan.flightNo, 243 + pageNum: this.pageNum, pageSize: this.pageSize, flightNo: this.queryFlightplan.flightNo,
244 awcd: this.queryFlightplan.awcd, flightDate: this.queryFlightplan.flightDate 244 awcd: this.queryFlightplan.awcd, flightDate: this.queryFlightplan.flightDate
245 }; 245 };
246 console.log(params) 246 console.log(params)
@@ -80,7 +80,7 @@ @@ -80,7 +80,7 @@
80 </el-drawer> 80 </el-drawer>
81 </el-card> 81 </el-card>
82 </el-row> 82 </el-row>
83 - <div id="mapContainer" style="width: 100%; height: 500px;"></div> 83 + <div id="mapContainer" style="width: 100%;height: 100vh;"></div>
84 </div> 84 </div>
85 </template> 85 </template>
86 <script> 86 <script>
此 diff 太大无法显示。