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-09-22 14:09:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e6b4b84db439777588c4eea814fc1c1e659ad0b8
e6b4b84d
1 parent
2f6cc069
提示语添加
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
e6b4b84
...
...
@@ -954,6 +954,7 @@ export default {
})
.catch(() => { });
},
/** 提交按钮 */
submitForm: function () {
this.$refs["form"].validate((valid) => {
...
...
@@ -1051,6 +1052,11 @@ export default {
// 航班状态
if (this.flightState(this.ids, "已删除")) return
let handle = status == "flightStatus80" ? "关闭" : "开启";
let state = this.ids.some(item => item.statusName == `已${handle}`);
if(state){
this.msgError(`勾选的航班,航班状态为已${handle},不可操作该按钮`);
return
}
let data = {
updateIds: [],
};
...
...
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
e6b4b84
...
...
@@ -698,7 +698,6 @@ export default {
// 表单提交
submitForm(formName) {
this.$refs[formName].validate((valid) => {
console.log(this.queryForm, valid);
if (valid) {
// 爆仓是否继续配舱
const newtTableData = JSON.parse(JSON.stringify(this.tableData));
...
...
Please
register
or
login
to post a comment