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-19 22:15:09 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
e0453eb16e74b61774e83c8a4359140aef8543a3
e0453eb1
2 parents
b253de31
18cd2837
Merge branch 'et86' into fix-issues
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemConfig/superAllocation/dialog.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
e0453eb
...
...
@@ -818,6 +818,10 @@ export default {
},
/** 修改按钮操作 */
handleUpdate(row) {
if(row.statusName == "已删除"){
this.msgError("已删除不可操作");
return
}
this.reset();
this.findFltConditionData();
this.perStatus(row.fltNo)
...
...
@@ -873,6 +877,10 @@ export default {
},
//查看航班维度
goFlightAllocConfig(val) {
if(val.statusName == "已删除"){
this.msgError("已删除不可操作");
return
}
let obj = {
id: ' ',
handle: 'updated',
...
...
@@ -1002,6 +1010,7 @@ export default {
},
//取消按钮
cancel() {
this.routeError = false
this.routeList = []
this.ishighPriceWeightPercent = true
this.routeMultiple = false
...
...
src/views/systemConfig/superAllocation/dialog.vue
View file @
e0453eb
...
...
@@ -173,7 +173,7 @@ export default {
{
required: true,
message: "航线不能为空",
trigger:
"change"
,
trigger:
["change", "blur"]
,
},
],
groupAllWeight: [
...
...
@@ -307,4 +307,4 @@ export default {
}
</script>
<style lang="scss" scoped></style>
\ No newline at end of file
<style lang="scss" scoped></style>
...
...
Please
register
or
login
to post a comment