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-09-29 13:43:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c872eaac9aea35a6ec95080c2d7a28aa80eb4120
c872eaac
1 parent
886130ee
航班维护字段增加,按钮状态变更
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
src/views/basicInformation/flightInformationMaintenance/index.vue
src/views/systemConfig/superAllocation/index.vue
src/views/basicInformation/flightInformationMaintenance/index.vue
View file @
c872eaa
...
...
@@ -240,6 +240,16 @@
:precision="2"></el-input-number>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="特殊规则预留总重量" prop="accountTotalWeight">
<el-input class="wid80" v-model="form.accountTotalWeight" disabled />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="特殊规则已配重量" prop="accountAllocatedWeight">
<el-input class="wid80" v-model="form.accountAllocatedWeight" disabled />
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
...
...
src/views/systemConfig/superAllocation/index.vue
View file @
c872eaa
...
...
@@ -25,7 +25,8 @@
<template slot="optionColumn">
<el-table-column label="操作" width="250" align="center">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="update(scope.row,'update')">修改
<el-button size="mini" type="text" v-if="scope.row.status != 0" icon="el-icon-edit"
@click="update(scope.row,'update')">修改
</el-button>
<el-button type="text" v-if="scope.row.status === 1" size="mini" icon="el-icon-video-pause"
@click="changeStatus(scope.row)">
...
...
Please
register
or
login
to post a comment