|
@@ -126,41 +126,17 @@ export default {
|
|
|
{
|
|
|
prop: "flighttype",
|
|
|
inputType: "select",
|
|
|
- placeholder: "节点名称",
|
|
|
+ placeholder: "二级部门",
|
|
|
+ clearable: true,
|
|
|
+ options: [
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: "flightno",
|
|
|
+ inputType: "input",
|
|
|
+ placeholder: "请输入航班号",
|
|
|
clearable: true,
|
|
|
options: [
|
|
|
- {
|
|
|
- value: "安检",
|
|
|
- label: "安检",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "货站交接",
|
|
|
- label: "货站交接",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "交接复核",
|
|
|
- label: "交接复核",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "库区到达",
|
|
|
- label: "库区到达",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "机下交接",
|
|
|
- label: "机下交接",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "装机",
|
|
|
- label: "装机",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "关闭舱门",
|
|
|
- label: "关闭舱门",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "卸机",
|
|
|
- label: "卸机",
|
|
|
- },
|
|
|
],
|
|
|
},
|
|
|
{
|
|
@@ -187,27 +163,35 @@ export default {
|
|
|
newObj: {
|
|
|
deep: true,
|
|
|
handler (newVal) {
|
|
|
- const { fttp, flighttype } = newVal
|
|
|
- if (fttp && !flighttype) {
|
|
|
- const datas = this.tableList.filter(item => item.index_class == fttp)
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
- } else if (!fttp && flighttype) {
|
|
|
- const datas = this.tableList.filter(item => item.node == flighttype)
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
- } else if (fttp && flighttype) {
|
|
|
- const datas = this.tableList.filter(item => item.node == flighttype && item.index_class == fttp)
|
|
|
+ const { fttpId, fttp, flighttype, flightno } = newVal
|
|
|
+ this.setClub(fttpId)
|
|
|
+ if (flightno) {
|
|
|
+ const datas = this.tableList.filter(item => item.flight_all_no == flightno)
|
|
|
this.tableListcop = _.chunk(datas, 10)
|
|
|
this.tableNewList = this.tableListcop[0]
|
|
|
this.total = datas.length
|
|
|
} else {
|
|
|
- const datas = this.tableList
|
|
|
- this.tableListcop = _.chunk(datas, 10)
|
|
|
- this.tableNewList = this.tableListcop[0]
|
|
|
- this.total = datas.length
|
|
|
+ if (fttp && !flighttype) {
|
|
|
+ const datas = this.tableList.filter(item => item.index_class == fttp)
|
|
|
+ this.tableListcop = _.chunk(datas, 10)
|
|
|
+ this.tableNewList = this.tableListcop[0]
|
|
|
+ this.total = datas.length
|
|
|
+ } else if (!fttp && flighttype) {
|
|
|
+ const datas = this.tableList.filter(item => item.second_department == flighttype)
|
|
|
+ this.tableListcop = _.chunk(datas, 10)
|
|
|
+ this.tableNewList = this.tableListcop[0]
|
|
|
+ this.total = datas.length
|
|
|
+ } else if (fttp && flighttype) {
|
|
|
+ const datas = this.tableList.filter(item => item.second_department == flighttype && item.index_class == fttp)
|
|
|
+ this.tableListcop = _.chunk(datas, 10)
|
|
|
+ this.tableNewList = this.tableListcop[0]
|
|
|
+ this.total = datas.length
|
|
|
+ } else {
|
|
|
+ const datas = this.tableList
|
|
|
+ this.tableListcop = _.chunk(datas, 10)
|
|
|
+ this.tableNewList = this.tableListcop[0]
|
|
|
+ this.total = datas.length
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -250,6 +234,82 @@ export default {
|
|
|
data.dateTime;
|
|
|
this.listHeader = ["序号", "时间", "航班(班)", "环比(%)"];
|
|
|
},
|
|
|
+ setClub (id) {
|
|
|
+ switch (id) {
|
|
|
+ case 52233:
|
|
|
+ this.formItems[2].options = [
|
|
|
+ {
|
|
|
+ label: '货邮检查一大队',
|
|
|
+ value: '货邮检查一大队'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '运输部(万事通)',
|
|
|
+ value: '运输部(万事通)'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '装卸部(美华)',
|
|
|
+ value: '装卸部(美华)'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ break;
|
|
|
+ case 52234:
|
|
|
+ this.formItems[2].options = [
|
|
|
+ {
|
|
|
+ label: '国内进港部',
|
|
|
+ value: '国内进港部'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '运输部(万事通)',
|
|
|
+ value: '运输部(万事通)'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '装卸部(美华)',
|
|
|
+ value: '装卸部(美华)'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ break;
|
|
|
+ case 52235:
|
|
|
+ this.formItems[2].options = [
|
|
|
+ {
|
|
|
+ label: '龙略',
|
|
|
+ value: '龙略'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ break;
|
|
|
+ case 52236:
|
|
|
+ this.formItems[2].options = [
|
|
|
+ {
|
|
|
+ label: '操作二部',
|
|
|
+ value: '操作二部'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '货机装载组',
|
|
|
+ value: '货机装载组'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '龙略',
|
|
|
+ value: '龙略'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ this.formItems[2].options = [
|
|
|
+ {
|
|
|
+ label: '货邮检查一大队',
|
|
|
+ value: '货邮检查一大队'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '运输部(万事通)',
|
|
|
+ value: '运输部(万事通)'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '装卸部(美华)',
|
|
|
+ value: '装卸部(美华)'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ },
|
|
|
//获取表格数据
|
|
|
async getQuery (id, data, dat) {
|
|
|
this.loading = true
|