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-11-10 17:31:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cf091b8c6584a8eb427ffee29e72543fb130e1cb
cf091b8c
1 parent
9d9ec0f2
bug修正
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
src/views/basicInformation/queryCargo/index.vue
src/views/preMdeConfig/preMdeSelect/index.vue
src/views/basicInformation/queryCargo/index.vue
View file @
cf091b8
...
...
@@ -161,16 +161,16 @@
size="small" @click="xlse(1)" :disabled="tableData.length == 0" :loading="downLoadingTip.downloading">{{
downLoadingTip.downloading ? downLoadingTip.tip : "导出全部查询结果"
}}</el-button>
<el-button type="primary" size="small"
:disabled="selectTable.length == 0" v-hasPermi="['base:cargo:release']
"
@click="release">释放舱位</el-button>
<el-button type="primary" size="small" :disabled="selectTable.length == 0" @click="transfer"
<el-button type="primary" size="small"
icon="el-icon-s-flag" :disabled="selectTable.length == 0
"
v-hasPermi="['base:cargo:release']"
@click="release">释放舱位</el-button>
<el-button type="primary" size="small"
icon="el-icon-sort"
:disabled="selectTable.length == 0" @click="transfer"
v-hasPermi="['log:cargo:flightTransfer']">航班迁转</el-button>
<el-button type="primary" size="small" :disabled="cargoPlaneTime == null || cargoPlaneTime.length <= 0"
<
!-- <
el-button type="primary" size="small" :disabled="cargoPlaneTime == null || cargoPlaneTime.length <= 0"
@click="historyFlie">
<el-tooltip class="item" effect="dark" content="请先选择配置航班日期" placement="top">
<span class="el-icon-warning-outline">生成归档数据</span>
</el-tooltip>
</el-button>
</el-button>
-->
<span class="ml20" style="color: #ffba00">全部导出上限80000条数据</span>
<el-progress v-if="progress != 0" class="progress" :stroke-width="12" :show-text="true" :percentage="progress"
:status="progress == 100 ? 'success' : 'warning'"></el-progress>
...
...
src/views/preMdeConfig/preMdeSelect/index.vue
View file @
cf091b8
...
...
@@ -169,7 +169,7 @@ export default {
select(val) {
this.tableLoading = true
let obj = JSON.parse(JSON.stringify(this.datainfo(this.formData)))
if (this.accsDate.length > 0) {
if (this.accsDate
!= null && this.accsDate
.length > 0) {
obj.fltDateStart = this.accsDate[0]
obj.fltDateEnd = this.accsDate[1]
}
...
...
Please
register
or
login
to post a comment