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 10:41:40 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a1aa9f3ad2dca9396db47ec4859eece12b3c2c91
a1aa9f3a
1 parent
711480dc
modify
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/basicInformation/queryCargo/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
a1aa9f3
...
...
@@ -939,13 +939,13 @@ export default {
this.$refs["form"].validate((valid) => {
if(this.form.route == undefined){
this.routeError = true;
console.log(this.form.route)
return
}
if(this.form.route.length || this.form.route !== undefined){
this.routeError = false;
}
if(this.form.route.length == 0
|| this.form.route == undefined
){
if(this.form.route.length == 0){
this.routeError = true;
return
}
...
...
src/views/basicInformation/queryCargo/index.vue
View file @
a1aa9f3
...
...
@@ -205,7 +205,7 @@
</el-form>
<Tables ref="newTables" ductName="cargo" :data="tableData" :headerData="tableHeader" :selection="true" :order="true"
:totalCount="totalCount" :loading="tableLoading" :limitSize="limitSize" :limitStart="limitStart" :page="page"
:shiftKey="shiftKey" :pageSizes="[100]" :height="tableHeight" @sizeChange="sizeChange" @tableSelect="tableSelect"
:shiftKey="shiftKey" :pageSizes="[10
, 15, 20, 25, 30, 35, 4
0]" :height="tableHeight" @sizeChange="sizeChange" @tableSelect="tableSelect"
@tableSelectAll="tableSelectAll" @currentChange="currentChange" @sortChange="sortChange">
<template v-slot:waybillNo="scope">
<el-link type="primary" @click="logView(scope.row)">
...
...
@@ -276,7 +276,7 @@ export default {
cargoPlaneRoute: null,
preStatus: undefined,
limitStart: 1,
limitSize: 10
0
,
limitSize: 10,
}, //表单数据
tableHeader: [], //表头数据
releaseHeader: [
...
...
@@ -415,7 +415,7 @@ export default {
cargoPlaneStart: null,
cargoPlaneEnd: null,
limitStart: 1,
limitSize: 10
0
,
limitSize: 10,
}
this.cargoPlaneTime = [this.$route.params.fltDate, this.$route.params.fltDate]
this.formData.cargoPlaneStart = this.$route.params.fltDate
...
...
Please
register
or
login
to post a comment