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-08-22 09:35:43 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
212490d51ae8d8583b660bc564725d76809377bc
212490d5
1 parent
c3f313a4
UI
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
171 additions
and
24 deletions
src/views/allocationConfig/cargoAllocation/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightRandConfig/index.vue
src/views/allocationConfig/preReview/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/goodsBlackStation/index.vue
src/views/basicInformation/goodsStation/index.vue
src/views/basicInformation/goodsStationFlight/index.vue
src/views/basicInformation/queryCargo/index.vue
src/views/index.vue
src/views/preMdeConfig/flightToArea/index.vue
src/views/preMdeConfig/preMdeSelect/index.vue
src/views/preMdeConfig/reportForm/index.vue
src/views/preMdeConfig/ursaToArea/index.vue
src/views/systemConfig/dictionaryConfig/index.vue
src/views/systemConfig/roleConfig/index.vue
src/views/systemConfig/superAllocation/index.vue
src/views/systemConfig/userConfig/index.vue
src/views/systemLog/archiveData/index.vue
src/views/systemLog/dmLog/index.vue
src/views/systemLog/operationLog/index.vue
src/views/allocationConfig/cargoAllocation/index.vue
View file @
212490d
...
...
@@ -282,6 +282,14 @@ export default {
if (this.$store.state.tagsView.cachedViews.length == 0) {
this.select();
}
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.form.$el.offsetHeight - 60;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
this.tableSelection = []
...
...
@@ -303,7 +311,6 @@ export default {
this.shiftKey = false;
}
});
this.tableHeight = window.innerHeight - this.$refs.form.$el.offsetHeight - 60;
},
methods: {
//查询条件
...
...
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
212490d
...
...
@@ -104,9 +104,17 @@ export default {
if (this.$store.state.tagsView.cachedViews.length == 0) {
this.getList();
}
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.flightAllocForm.$el.offsetHeight - 200;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.flightAllocForm.$el.offsetHeight - 200;
},
activated() {
this.getList()
...
...
src/views/allocationConfig/flightRandConfig/index.vue
View file @
212490d
...
...
@@ -247,9 +247,16 @@ export default {
if (this.$store.state.tagsView.cachedViews.length == 0) {
this.findSourceFlightRules();
}
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.queryForm.$el.offsetHeight - 200;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.queryForm.$el.offsetHeight - 200;
},
activated() {
this.findSourceFlightRules();
...
...
src/views/allocationConfig/preReview/index.vue
View file @
212490d
...
...
@@ -106,6 +106,14 @@ export default {
},
created() {
this.preQuery(1)
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.preReviewOptions.offsetHeight - 300;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
if (this.flightData.length > 0) {
...
...
@@ -113,7 +121,6 @@ export default {
}
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.preReviewOptions.offsetHeight - 300;
},
methods: {
//搜索
...
...
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
212490d
...
...
@@ -482,6 +482,14 @@ export default {
this.findFltConditionData();
this.findAllFltData();
}
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.queryForm.$el.offsetHeight - 120;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
this.ids = []
...
...
@@ -502,7 +510,6 @@ export default {
this.shiftKey = false;
}
});
this.tableHeight = window.innerHeight - this.$refs.queryForm.$el.offsetHeight - 120;
},
methods: {
//输入航班号后
...
...
src/views/basicInformation/goodsBlackStation/index.vue
View file @
212490d
...
...
@@ -89,10 +89,16 @@ export default {
}
},
created() {
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.goodsStation.$el.offsetHeight - 200;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.goodsStation.$el.offsetHeight - 200;
this.selection(1)
},
watch: {
...
...
src/views/basicInformation/goodsStation/index.vue
View file @
212490d
...
...
@@ -89,10 +89,16 @@ export default {
}
},
created() {
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.goodsStation.$el.offsetHeight - 200;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.goodsStation.$el.offsetHeight - 200;
this.selection(1)
},
watch: {
...
...
src/views/basicInformation/goodsStationFlight/index.vue
View file @
212490d
...
...
@@ -71,9 +71,16 @@ export default {
}
},
created() {
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.goodsStationFlight.$el.offsetHeight - 200;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.goodsStationFlight.$el.offsetHeight - 200;
this.selection(1)
},
watch: {
...
...
src/views/basicInformation/queryCargo/index.vue
View file @
212490d
...
...
@@ -368,6 +368,14 @@ export default {
this.tableHeader = this.tableHeaders['cargo']
}
this.select(0,'create')
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.cargoForm.$el.offsetHeight - 50;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
...
...
@@ -441,7 +449,6 @@ export default {
this.shiftKey = false;
}
});
this.tableHeight = window.innerHeight - this.$refs.cargoForm.$el.offsetHeight - 50
},
watch: {
$route: {
...
...
src/views/index.vue
View file @
212490d
...
...
@@ -104,12 +104,19 @@ export default {
created() {
this.selectData.fltDate = this.nowDate();
this.getFltKindId()
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.card1.$el.offsetHeight - this.$refs.indexForm.$el.offsetHeight - 350;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
// activated() {
// this.getFlight()
// },
mounted() {
this.tableHeight = window.innerHeight - this.$refs.card1.$el.offsetHeight - this.$refs.indexForm.$el.offsetHeight - 350
this.getFlight()
},
methods: {
...
...
src/views/preMdeConfig/flightToArea/index.vue
View file @
212490d
...
...
@@ -98,9 +98,16 @@ export default {
};
},
created() {
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.selectForm.$el.offsetHeight - 170;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.selectForm.$el.offsetHeight - 170;
this.selection(1)
},
activated() {
...
...
src/views/preMdeConfig/preMdeSelect/index.vue
View file @
212490d
...
...
@@ -137,9 +137,16 @@ export default {
},
created() {
this.selectOptionData()
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.preMdeSelectForm.$el.offsetHeight - 150;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.preMdeSelectForm.$el.offsetHeight - 150;
this.select(0)
},
watch: {
...
...
src/views/preMdeConfig/reportForm/index.vue
View file @
212490d
...
...
@@ -107,12 +107,19 @@ export default {
this.formData.pickUpDate = this.nowDate()
this.getOption()
this.select()
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.reportForm.$el.offsetHeight - 240;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
this.select()
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.reportForm.$el.offsetHeight - 240
},
methods: {
getOption() {
...
...
src/views/preMdeConfig/ursaToArea/index.vue
View file @
212490d
...
...
@@ -99,9 +99,16 @@ export default {
};
},
created() {
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.selectForm.$el.offsetHeight - 170;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.selectForm.$el.offsetHeight - 170;
this.selection(1)
},
activated() {
...
...
src/views/systemConfig/dictionaryConfig/index.vue
View file @
212490d
...
...
@@ -213,6 +213,14 @@ export default {
},
created() {
this.dictNameSelect()
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.dictForm.$el.offsetHeight - 270;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
// if (this.$store.state.tagsView.cachedViews.length > 0) {
...
...
@@ -220,7 +228,7 @@ export default {
// }
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.dictForm.$el.offsetHeight - 270
},
filters: {
// 是否为ET86航线
...
...
src/views/systemConfig/roleConfig/index.vue
View file @
212490d
...
...
@@ -84,9 +84,16 @@ export default {
if (this.$store.state.tagsView.cachedViews.length == 0) {
this.selectRoleList();
}
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.selectionRoleForm.$el.offsetHeight - 250;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.selectionRoleForm.$el.offsetHeight - 250
},
activated() {
this.selectRoleList();
...
...
src/views/systemConfig/superAllocation/index.vue
View file @
212490d
...
...
@@ -78,9 +78,16 @@ export default {
}
},
created() {
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.supserAllocation.$el.offsetHeight - 250;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.supserAllocation.$el.offsetHeight - 250
this.selection(1)
},
methods: {
...
...
src/views/systemConfig/userConfig/index.vue
View file @
212490d
...
...
@@ -111,9 +111,16 @@ export default {
if (this.$store.state.tagsView.cachedViews.length == 0) {
this.selectUser();
}
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.selectionUserForm.$el.offsetHeight - 250;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.selectionUserForm.$el.offsetHeight - 250;
},
activated() {
this.selectUser();
...
...
src/views/systemLog/archiveData/index.vue
View file @
212490d
...
...
@@ -61,10 +61,17 @@ export default {
}
},
created() {
this.selectLog()
this.selectLog()
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.archiveDataForm.$el.offsetHeight - 200;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.archiveDataForm.$el.offsetHeight - 200
},
methods: {
selectLog(val) {
...
...
src/views/systemLog/dmLog/index.vue
View file @
212490d
...
...
@@ -122,6 +122,14 @@ export default {
},
created() {
this.selectForm.createTime = this.nowDate();
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.dmLogForm.$el.offsetHeight - 130;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
this.selectDMData();
...
...
@@ -130,7 +138,6 @@ export default {
this.data = [];
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.dmLogForm.$el.offsetHeight - 130;
},
methods: {
//数据查询
...
...
src/views/systemLog/operationLog/index.vue
View file @
212490d
...
...
@@ -104,12 +104,19 @@ export default {
created() {
this.getModule()
this.selectLog(1)
this.$nextTick(()=>{
let height = window.innerHeight - this.$refs.operationLogForm.$el.offsetHeight - 240;
if(height < 300){
this.tableHeight = 300;
}else{
this.tableHeight = height;
}
})
},
activated() {
this.selectLog();
},
mounted() {
this.tableHeight = window.innerHeight - this.$refs.operationLogForm.$el.offsetHeight - 240
},
methods: {
getModule() {
...
...
Please
register
or
login
to post a comment