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-04 15:13:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b1bd5c4eced9068407c81fb69d8b655057214107
b1bd5c4e
1 parent
e66a8e99
modify
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
b1bd5c4
...
...
@@ -865,15 +865,13 @@ export default {
},
// 航班状态
flightState(multipleSelection, statusName){
let flag = false;
const flightState = multipleSelection.some(item=>item.statusName == statusName);
let flightState = multipleSelection.some(item=>item.statusName == statusName);
if(flightState){
flag = true
this.msgError(`${statusName}不可操作该按钮`);
this.msgError(`勾选的航班,航班状态为${statusName},不可操作该按钮`);
}else{
fl
ag
= false
fl
ightState
= false
}
return fl
ag
return fl
ightState
},
/** 删除按钮操作 */
handleDelete(row) {
...
...
Please
register
or
login
to post a comment