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
Elements-SY
2023-10-24 15:44:10 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fa3c62c29e538264a669a719b300411bb0ff7e3e
fa3c62c2
1 parent
9ca5f06a
modify
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
fa3c62c
...
...
@@ -510,6 +510,7 @@ export default {
this.tableData = [
{
id: this.id,
statusMark: true, // 作为是否为新增
flightNo: "", // 航班号
calculateDay: "", // 航班日期 +1 -1
flightRoute: "", // 航线
...
...
@@ -789,8 +790,12 @@ export default {
delete item.statusMark;
}
});
if
(this.$route.query.name == "add")
{
if
(this.$route.query.name == "add")
{
delete this.queryForm.id;
tableData.map((item, i) => {
delete item.id;
return item;
});
}
// 校验ET86配舱航班顺位维度
let fltNo = this.tableData.some((item) => item.flightNo == ""); // 通过遍历判断航班顺位列表有没有填写的航班号
...
...
Please
register
or
login
to post a comment