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 10:55:59 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
00bf838fbd094e8f7ad82e416853d70cf1d977af
00bf838f
1 parent
18a80a3c
修改清空航班时,其他字段未清除问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
00bf838
...
...
@@ -55,6 +55,7 @@
@blur="blurSearch"
placeholder="请输入航班号"
size="small"
@clear="clearFlight(scope)"
/>
</template>
</el-table-column>
...
...
@@ -665,6 +666,12 @@ export default {
this.currentFlightNo = row.flightNo.trim(); // 当前航班号
this.currentIndex = $index;
},
// 清空航班号时同时清除其他字段
clearFlight({ $index, row }) {
this.tableData[$index].flightRoute = "";
this.tableData[$index].calculateDay = "";
this.tableData[$index].permitOverweight = false;
},
// 失焦查询
blurSearch() {
// 转大写字母
...
...
Please
register
or
login
to post a comment