修改成都一操作堆栈关闭时提示位置问题
This commit is contained in:
parent
8085677cb7
commit
0261ec50f2
@ -2,7 +2,7 @@
|
||||
<div class="chengdou-01__system request_box">
|
||||
<div :id="domIdRequestBar" class="title-box">
|
||||
<div class="title-name">操作请求堆栈</div>
|
||||
<div class="icon" :class="{'is-active': unfold}" @click="unflodDiv">
|
||||
<div :id="unfold ? domIdConfirm : ''" class="icon" :class="{'is-active': unfold}" @click="unflodDiv">
|
||||
<i class="el-icon-arrow-down" />
|
||||
</div>
|
||||
</div>
|
||||
@ -21,7 +21,7 @@
|
||||
</el-row>
|
||||
<el-row justify="center" class="button-group">
|
||||
<el-col :span="8" class="button-bottom-left">
|
||||
<el-button :id="domIdConfirm" size="mini" style="float: left;" :loading="loading" :disabled="commitDisabled" @click="commit">发送请求</el-button>
|
||||
<el-button :id="unfold ? '' : domIdConfirm" size="mini" style="float: left;" :loading="loading" :disabled="commitDisabled" @click="commit">发送请求</el-button>
|
||||
</el-col>
|
||||
<el-col :span="8" :offset="8" class="button-bottom-right">
|
||||
<el-button :id="domIdCancel" size="mini" style="float: right;" @click="cancel">取消请求</el-button>
|
||||
@ -90,10 +90,9 @@ export default {
|
||||
methods: {
|
||||
unflodDiv() {
|
||||
this.unfold = !this.unfold;
|
||||
const operate = {
|
||||
operation: OperationEvent.Command.commandChengDu1.requestBar.operation
|
||||
};
|
||||
this.$store.dispatch('trainingNew/next', operate);
|
||||
setTimeout(() => {
|
||||
this.$store.dispatch('training/emitTipFresh');
|
||||
}, 300);
|
||||
},
|
||||
clickEvent(row, event, column) {
|
||||
this.row = row;
|
||||
|
Loading…
Reference in New Issue
Block a user