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-02-25 17:54:38 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
591eeb19365640def3907b92618bdea693ed42a3
591eeb19
1 parent
a37d6347
代码更新
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
18 deletions
src/components/Table/index.vue
src/views/allocationConfig/cargoAllocation/index.vue
src/views/allocationConfig/flightAllocConfig/index.vue
src/views/allocationConfig/flightAllocConfig/info.vue
src/views/basicInformation/queryCargo/index.vue
src/components/Table/index.vue
View file @
591eeb1
...
...
@@ -220,7 +220,7 @@ export default {
currentChange(val) {
this.$emit("currentChange", {
page: val,
start:
val * this.limitSize + 1
,
start:
val > 1 ? (val-1) * this.limitSize + 1 : val
,
});
scrollTo(0, 800);
},
...
...
@@ -282,18 +282,6 @@ export default {
this.selectTable = [];
this.$refs.tables.clearSelection();
},
// itemChange(val) {
// console.log(val);
// },
// checkChange(val) {
// console.log(val);
// },
// top(val) {
// console.log(val);
// },
// bottom(val) {
// console.log(val);
// },
sortChange({ column, prop, order }) {
this.$emit("sortChange", { prop: prop, order: order });
},
...
...
src/views/allocationConfig/cargoAllocation/index.vue
View file @
591eeb1
...
...
@@ -984,7 +984,6 @@ export default {
},
//分页
currentChange(val) {
this.formData.limitStart = val.start;
this.page = val.page;
this.select();
},
...
...
src/views/allocationConfig/flightAllocConfig/index.vue
View file @
591eeb1
...
...
@@ -166,7 +166,7 @@ export default {
message: response.msg,
type: "error",
});
re
u
turn;
return;
}
this.flyList = response.data.list;
this.total = response.data.totalCount;
...
...
@@ -230,7 +230,7 @@ export default {
},
},
created() {
//
this.getList();
this.getList();
},
computed:{
purposeOfFlightNo: {
...
...
src/views/allocationConfig/flightAllocConfig/info.vue
View file @
591eeb1
...
...
@@ -391,7 +391,6 @@ export default {
}
}
});
console.log(errorList);
if (errorList.length != 0) {
this.$message({
showClose: true,
...
...
@@ -452,7 +451,7 @@ export default {
message: response.msg,
type: "error",
});
re
u
turn;
return;
}
let dict = response.data;
this.cargoType = dict.cargoType;
...
...
src/views/basicInformation/queryCargo/index.vue
View file @
591eeb1
...
...
@@ -836,6 +836,7 @@ export default {
//分页
currentChange(val){
this.formData.limitStart = val.start;
this.limitStart = val.start;
this.page = val.page;
this.select()
},
...
...
Please
register
or
login
to post a comment