作者 xudada

单据,航班计划BUG修复

... ... @@ -442,7 +442,7 @@
//编辑单据查询
handleEdit(index,row){
this.$router.push({path:'/bill',query:row});
this.$router.push({path:'/bills',query:row});
},
//分页
... ...
... ... @@ -130,7 +130,7 @@
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="currentPage"
:current-page="pageNum"
:page-sizes="[10, 20, 30, 40]"
:page-size="pageSize"
layout="total, sizes, prev, pager, next, jumper"
... ... @@ -208,7 +208,7 @@
awcd:''
},
labelPosition:'left',
currentPage: 1,
pageNum: 1,
pageSize:10,
total:0,
tableData: [],
... ... @@ -234,13 +234,13 @@
this.pageSize=val;
},
handleCurrentChange(val) {
this.currentPage=val;
this.pageNum=val;
this.submitForm();
},
//获取当日飞行计划列表
submitForm() {
let params = {
currentPage: this.currentPage, pageSize: this.pageSize, flightNo: this.queryFlightplan.flightNo,
pageNum: this.pageNum, pageSize: this.pageSize, flightNo: this.queryFlightplan.flightNo,
awcd: this.queryFlightplan.awcd, flightDate: this.queryFlightplan.flightDate
};
console.log(params)
... ...