|
15 | 15 | --> |
16 | 16 | <template> |
17 | 17 | <el-container style="height: 100% !important;"> |
18 | | - <el-header id="WorkflowActivity" class="header" :style="!collapse ? 'height: 35% !important;' : 'height: 10%!important'"> |
| 18 | + <el-header id="WorkflowActivity" class="header" :style="!collapse ? 'height: 45% !important;' : 'height: 10%!important'"> |
19 | 19 | <el-card :style="!collapse ? 'height: 100% !important;' : 'height: auto'"> |
20 | 20 | <div slot="header"> |
21 | 21 | <span> {{ $t('form.activity.title') }} </span> |
|
44 | 44 | </el-header> |
45 | 45 | <el-main class="main"> |
46 | 46 | <el-container style="height: 100%;"> |
47 | | - <el-aside v-if="!isEmptyValue(currentActivity)" width="70%" style="background: white;"> |
| 47 | + <el-aside v-if="!isEmptyValue(currentActivity)" id="workflow" width="70%" style="background: white;"> |
48 | 48 | <transition name="el-zoom-in-center"> |
49 | 49 | <el-card v-show="show" :style="{position: 'absolute', zIndex: '5', left: leftContextualMenu + 'px', top: topContextualMenu + 'px'}" class="box-card"> |
50 | 50 | <div slot="header" class="clearfix"> |
|
78 | 78 | @state-click="onLabelClicked(node, $event)" |
79 | 79 | /> |
80 | 80 | </el-aside> |
81 | | - <el-main v-if="!isEmptyValue(currentActivity)"> |
82 | | - <el-card class="box-card"> |
| 81 | + <el-main v-if="!isEmptyValue(currentActivity)" style="overflow: hidden;"> |
| 82 | + <el-card id="logsWorkflow" class="box-card"> |
83 | 83 | <div slot="header" class="clearfix"> |
84 | 84 | {{ $t('field.logsField') }} |
85 | 85 | </div> |
|
99 | 99 | </el-main> |
100 | 100 | </el-container> |
101 | 101 | </el-main> |
102 | | - <el-footer :class="styleFooter"> |
103 | | - <el-card shadow="hover" class="search"> |
104 | | - <el-form v-if="!isEmptyValue(fieldsList)" :disabled="isEmptyValue(currentActivity)" label-position="top" class="from-main"> |
105 | | - <el-form-item> |
106 | | - <el-row> |
107 | | - <el-col v-for="(field, index) in fieldsList" :key="index" :span="6"> |
108 | | - <field |
109 | | - :key="field.columnName" |
110 | | - :metadata-field="field" |
111 | | - :v-model="field.value" |
112 | | - /> |
113 | | - </el-col> |
114 | | - </el-row> |
115 | | - </el-form-item> |
116 | | - </el-form> |
117 | | - <el-button type="primary" icon="el-icon-check" style="float: right;" :disabled="isEmptyValue(currentActivity)" /> |
118 | | - </el-card> |
119 | | - </el-footer> |
120 | 102 | </el-container> |
121 | 103 | </template> |
122 | 104 |
|
|
0 commit comments