cloud-web-corejs 1.0.54-dev.744 → 1.0.54-dev.745

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -89,11 +89,14 @@ export default {
89
89
  <style lang="scss" scoped>
90
90
  .app-main {
91
91
  /* 45= navbar 45 */
92
- min-height: calc(100vh - 45px);
93
- //height:calc(100vh - 10px);
92
+ //min-height: calc(100vh - 45px);
93
+ height:calc(100vh - 10px);
94
94
  width: 100%;
95
95
  position: relative;
96
96
  overflow: hidden;
97
+ > div{
98
+ height:100%;
99
+ }
97
100
  }
98
101
 
99
102
  .fixed-header + .app-main {
@@ -179,7 +179,7 @@ export default {
179
179
  right: 130px;
180
180
  top: 0;
181
181
  }
182
-
182
+ /*
183
183
  ::v-deep .tab-boxOnly > .el-tabs__content .el-tab-pane .el-tab-pane {
184
184
  .detail-wrap .d-cont {
185
185
  height: calc(100vh - 158px) !important;
@@ -203,5 +203,5 @@ export default {
203
203
  .grid-height {
204
204
  height: calc(100vh - 84px) !important;
205
205
  }
206
- }
206
+ } */
207
207
  </style>
@@ -479,13 +479,5 @@ export default {
479
479
  };
480
480
  </script>
481
481
  <style scoped lang="scss">
482
- .grid-height {
483
- height: calc(100vh - 106px) !important;
484
- }
485
- ::v-deep .detail-wrap{
486
- margin:-8px -10px 0;
487
- .d-cont {
488
- height: calc(100vh - 148px) !important;
489
- }
490
- }
482
+
491
483
  </style>
@@ -144,28 +144,28 @@ export default {
144
144
  top: 0;
145
145
  }
146
146
 
147
- ::v-deep .tab-boxOnly > .el-tabs__content .el-tab-pane .el-tab-pane {
148
- .detail-wrap .d-cont {
149
- height: calc(100vh - 158px) !important;
150
- }
147
+ // ::v-deep .tab-boxOnly > .el-tabs__content .el-tab-pane .el-tab-pane {
148
+ // .detail-wrap .d-cont {
149
+ // height: calc(100vh - 158px) !important;
150
+ // }
151
151
 
152
- .grid-height {
153
- height: calc(100vh - 126px) !important;
154
- }
155
- }
152
+ // .grid-height {
153
+ // height: calc(100vh - 126px) !important;
154
+ // }
155
+ // }
156
156
 
157
- ::v-deep
158
- .designer-drawer.is-fullscreen
159
- .tab-boxOnly
160
- > .el-tabs__content
161
- .el-tab-pane
162
- .el-tab-pane {
163
- .detail-wrap .d-cont {
164
- height: calc(100vh - 116px) !important;
165
- }
157
+ // ::v-deep
158
+ // .designer-drawer.is-fullscreen
159
+ // .tab-boxOnly
160
+ // > .el-tabs__content
161
+ // .el-tab-pane
162
+ // .el-tab-pane {
163
+ // .detail-wrap .d-cont {
164
+ // height: calc(100vh - 116px) !important;
165
+ // }
166
166
 
167
- .grid-height {
168
- height: calc(100vh - 84px) !important;
169
- }
170
- }
167
+ // .grid-height {
168
+ // height: calc(100vh - 84px) !important;
169
+ // }
170
+ // }
171
171
  </style>
@@ -12,52 +12,51 @@
12
12
  v-el-drag-dialog
13
13
  v-el-dialog-center
14
14
  >
15
- <div class="cont">
16
- <div id="containt">
17
- <el-form ref="editForm" :model="formData">
18
- <div class="grid-height" style="height: 500px">
19
- <vxe-grid
20
- class="is-pointer"
21
- ref="table-m1"
22
- :data="formData.wfObjConfigDTOs"
23
- v-bind="vxeOption"
24
- @resizable-change="$vxeTableUtil.onColumnWitchChange"
25
- @custom="$vxeTableUtil.customHandle"
26
- >
27
- <template #form>
28
- <div class="clearfix screen-btns">
29
- <div class="fl">
30
- <vxe-button status="primary" class="button-sty" icon="el-icon-plus"
31
- @click="openCompanyDialog">
32
- 新增
33
- </vxe-button>
34
- <span class="button-sty tips">{{ $t1('选择表单所在的组织,填写组织对应的流程单据类型数据。') }}</span>
35
- </div>
15
+ <div id="containt">
16
+ <el-form ref="editForm" :model="formData">
17
+ <div class="grid-height" style="height: 500px">
18
+ <vxe-grid
19
+ class="is-pointer"
20
+ ref="table-m1"
21
+ :data="formData.wfObjConfigDTOs"
22
+ v-bind="vxeOption"
23
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
24
+ @custom="$vxeTableUtil.customHandle"
25
+ >
26
+ <template #form>
27
+ <div class="clearfix screen-btns">
28
+ <div class="fl">
29
+ <vxe-button status="primary" class="button-sty" icon="el-icon-plus"
30
+ @click="openCompanyDialog">
31
+ 新增
32
+ </vxe-button>
33
+ <span class="button-sty tips">{{ $t1('选择表单所在的组织,填写组织对应的流程单据类型数据。') }}</span>
36
34
  </div>
37
- </template>
38
- <template #objTypeName="{row,rowIndex}">
39
- <el-form-item :prop="'wfObjConfigDTOs.'+rowIndex+'.objTypeName'"
40
- :rules="[{ required: true, trigger: 'blur' }]">
41
- <el-input v-model="row.objTypeName" clearable></el-input>
42
- </el-form-item>
43
- </template>
44
- <template #operate="{row}">
45
- <a
46
- href="javascript:void(0);"
47
- class="a-link"
48
- @click="openEditDialog(row.id)"
49
- >
50
- <el-tooltip :enterable="false" effect="dark" :content="$t2('查看','common.view')" placement="top"
51
- popper-class="tooltip-skin">
52
- <i class="el-icon-edit"/>
53
- </el-tooltip>
54
- </a>
55
- </template>
56
- </vxe-grid>
57
- </div>
58
- </el-form>
59
- </div>
35
+ </div>
36
+ </template>
37
+ <template #objTypeName="{row,rowIndex}">
38
+ <el-form-item :prop="'wfObjConfigDTOs.'+rowIndex+'.objTypeName'"
39
+ :rules="[{ required: true, trigger: 'blur' }]">
40
+ <el-input v-model="row.objTypeName" clearable></el-input>
41
+ </el-form-item>
42
+ </template>
43
+ <template #operate="{row}">
44
+ <a
45
+ href="javascript:void(0);"
46
+ class="a-link"
47
+ @click="openEditDialog(row.id)"
48
+ >
49
+ <el-tooltip :enterable="false" effect="dark" :content="$t2('查看','common.view')" placement="top"
50
+ popper-class="tooltip-skin">
51
+ <i class="el-icon-edit"/>
52
+ </el-tooltip>
53
+ </a>
54
+ </template>
55
+ </vxe-grid>
56
+ </div>
57
+ </el-form>
60
58
  </div>
59
+
61
60
  <span slot="footer" class="dialog-footer">
62
61
  <el-button type="primary" plain class="button-sty" @click="closeDialog">
63
62
  <i class="el-icon-close el-icon"></i>
@@ -520,6 +520,10 @@ export default {
520
520
  background: none;
521
521
  padding: 10px 0 0;
522
522
  box-shadow: none;
523
+ display:flex;flex-direction: column;
524
+ > .el-row{flex:1;
525
+ > .el-col{height:100%;}
526
+ }
523
527
  }
524
528
  .filter-btns {
525
529
  .f-btn {
@@ -580,12 +584,13 @@ export default {
580
584
  }
581
585
  }
582
586
  ::v-deep .box-style1 {
583
- margin: 10px 5px 0;
587
+ margin: 10px 5px 0;height:calc(100% - 10px);display:flex;flex-direction:column;
584
588
  .el-card__body {
585
- height: calc(100vh - 254px);
589
+ flex:1;
586
590
  }
587
591
  }
588
592
  .node-box {
593
+ height:100%;overflow:auto;display:flex;flex-direction: column;
589
594
  .info {
590
595
  border: solid 1px #e6ebf5;
591
596
  background: #f6faff;
@@ -602,18 +607,19 @@ export default {
602
607
  position: absolute;
603
608
  right: 12px;
604
609
  top: 50%;
605
- margin-top: -14px;
610
+ margin-top: -14px !important;
606
611
  }
607
612
  .tit {
608
613
  font-size: 13px;
609
614
  color: #212121;
610
615
  margin-bottom: 5px;
616
+ margin-top:0;
611
617
  }
612
618
  }
613
619
  .el-steps {
614
- height: calc(100vh - 326px);
615
620
  overflow: auto;
616
621
  padding-right: 10px;
622
+ flex:1;
617
623
  }
618
624
  }
619
625
  </style>