import { selectFlightLists } from '../../api/mt1201'
import {mapActions, mapGetters} from 'vuex'
export default {
data() {
/*初始化值*/
...
...
@@ -108,7 +109,8 @@
currentPage:1,
pageSize:10,
total:0,
tableloading:true
tableloading:true,
departmentid:''
}
},
methods: {
...
...
@@ -127,7 +129,7 @@
},
/*查询列表请求*/
getFlightList:function() {
let params={currentPage:this.currentPage,pageSize:this.pageSize,flighttime:this.flighttime,carrier:this.carrier};
let params={currentPage:this.currentPage,pageSize:this.pageSize,flighttime:this.flighttime,carrier:this.carrier,departmentid:this.getUserInfoStore.companyInfo.departmentid};
import { getMt5201List,addMt5201,ediMt5201,delMt5201,sendCreateMt520x,sendRemoveMt520x,selectCustomcode,sendbatchRemoveMt5201,sendbatchCreateMt5201} from '../../api/mt5201'
import loginUserInfo from '@/api/base'
import {sendBatchApllyMt1201, sendBatchDelMt1201} from "../../api/mt1201";