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
jinhui.wang
2022-03-25 14:07:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f578881a51162344452fbbb5b8ef872aaf9d58f3
f578881a
1 parent
679d4c29
代码更新
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
22 deletions
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/basicInformation/caExportPreQualification/index.vue
src/views/basicInformation/caPreReviewImport/index.vue
src/views/basicInformation/flightInformationImport/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemConfig/menuConfig/index.vue
src/views/systemConfig/roleConfig/index.vue
src/views/systemConfig/userConfig/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
f578881
...
...
@@ -132,9 +132,6 @@ import {
delFlightId,
enableOrDisable,
} from "@/api/destinationFlight";
import { parseTime } from "@/utils/FedEx";
export default {
name:"FlightAllocConfig",
data() {
...
...
@@ -242,9 +239,6 @@ export default {
})
},
},
created() {
this.getList();
},
computed:{
purposeOfFlightNo: {
get: function () {
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
f578881
...
...
@@ -94,7 +94,6 @@
prop="flightRank"
width="280"
/>
<!-- <el-table-column label="优先级" align="center" prop="priority" /> -->
<el-table-column
label="周期"
align="center"
...
...
@@ -378,7 +377,6 @@ export default {
}
},
},
//周期段
dayOfWeekList: ["D1", "D2", "D3", "D4", "D5", "D6", "D7"],
// 遮罩层
...
...
src/views/basicInformation/caExportPreQualification/index.vue
View file @
f578881
...
...
@@ -108,7 +108,6 @@
}}</el-button
>
</div>
</el-form>
<el-table
...
...
@@ -212,7 +211,6 @@ export default {
rules: {},
};
},
created() {},
methods: {
// 导出表格
xlse() {
...
...
src/views/basicInformation/caPreReviewImport/index.vue
View file @
f578881
...
...
@@ -59,7 +59,6 @@
},
methods: {
downloadTempleate() {
let fileName = "航班预审导入模板.xlsx";
downLoadTemplate().then((res) => {
if (res) {
...
...
src/views/basicInformation/flightInformationImport/index.vue
View file @
f578881
...
...
@@ -40,7 +40,7 @@
<el-table
ref="filterTable"
:data="tableData"
style="
width: 100%;
margin-top: 20px"
style="margin-top: 20px"
size="small"
border
>
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
f578881
...
...
@@ -860,6 +860,9 @@ export default {
activated() {
this.findAllFltData();
},
deactivated(){
this.findAllFltDatList = []
},
mounted() {
window.addEventListener("keydown", (code) => {
if (code.keyCode === 16 && code.shiftKey) {
...
...
@@ -1277,9 +1280,6 @@ export default {
this.findAllFltData();
},
},
deactivated() {
this.findAllFltDatList = [];
},
};
</script>
...
...
src/views/systemConfig/menuConfig/index.vue
View file @
f578881
...
...
@@ -170,6 +170,9 @@ export default {
activated(){
this.menuAll();
},
deactivated(){
this.data = []
},
methods: {
addMenu() {
this.menuData = {};
...
...
src/views/systemConfig/roleConfig/index.vue
View file @
f578881
...
...
@@ -199,6 +199,9 @@ export default {
activated(){
this.selectRoleList();
},
deactivated(){
this.data = []
},
methods: {
//角色列表
selectRoleList() {
...
...
@@ -226,7 +229,6 @@ export default {
console.log(err);
});
},
//角色详情
roleDetail(id) {
detailRole(id)
...
...
@@ -244,7 +246,6 @@ export default {
console.log(err);
});
},
//新增角色
addRole() {
this.roleData = {};
...
...
@@ -252,7 +253,6 @@ export default {
this.roleFormDisabled = false;
this.drawerTitle = "新增角色";
},
//修改查看角色
buttonClick(row, status) {
this.roleDetail(row.row.id);
...
...
@@ -263,7 +263,6 @@ export default {
: (this.roleFormDisabled = false);
this.drawerTitle = "查看/修改角色";
},
//修改角色状态
roleStatus(row) {
let msg = "";
...
...
@@ -295,7 +294,6 @@ export default {
})
.catch(() => []);
},
//删除角色
removeRole(row) {
MessageBox.confirm(
...
...
@@ -351,7 +349,6 @@ export default {
})
.catch(() => []);
},
handleClose(val) {
this.drawer = val;
this.selectRoleList();
...
...
src/views/systemConfig/userConfig/index.vue
View file @
f578881
...
...
@@ -93,7 +93,6 @@
:userData="userData"
@handleClose="handleClose"
></Drawer>
<!-- <el-dialog
title="修改密码"
:visible.sync="passwordShow"
...
...
@@ -247,6 +246,9 @@ export default {
activated(){
this.selectUser();
},
deactivated(){
this.data = []
},
methods: {
//用户列表
selectUser() {
...
...
Please
register
or
login
to post a comment