Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hao.wang
2023-11-10 09:44:21 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
18a80a3c5bcc81e737ca8d3a86ef9f87596a7149
18a80a3c
1 parent
db801413
修改et86选择航线值清空问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
18a80a3
...
...
@@ -630,7 +630,7 @@ export default {
.catch(() => {});
},
// 航线查询
getQueryRouteByFltNo(item) {
getQueryRouteByFltNo(item
, curRow
) {
this.tableAttr.tableLoading = true;
this.tableData[this.currentIndex].flightRoute;
queryRouteByFltNo(item)
...
...
@@ -654,7 +654,9 @@ export default {
this.tableData[this.currentIndex].flightRoute = "";
}
}
this.tableData[this.currentIndex].flightRoute = "";
if (!curRow) {
this.tableData[this.currentIndex].flightRoute = "";
}
})
.catch(() => {});
},
...
...
@@ -692,7 +694,7 @@ export default {
};
// 航班号输入框失焦时判断有没有航班号,并且航班号是不是发生了变化调用航线查询
if (params.fltNo && params.fltNo !== this.currentFlightNo) {
this.getQueryRouteByFltNo(params); // 航线查询
this.getQueryRouteByFltNo(params
, ""
); // 航线查询
}
// 航班号为空时
if (params.fltNo.length == 0) {
...
...
@@ -710,7 +712,7 @@ export default {
// 出现下拉框时触发
if (e) {
// 航线查询
this.getQueryRouteByFltNo(params);
this.getQueryRouteByFltNo(params
, row.flightRoute
);
}
},
// 添加ET86配舱航班顺位
...
...
Please
register
or
login
to post a comment