cloud-web-corejs 1.0.54-dev.722 → 1.0.54-dev.723

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.54-dev.722",
4
+ "version": "1.0.54-dev.723",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -7,7 +7,7 @@
7
7
  >
8
8
  <template #default>
9
9
  <div
10
- style="margin: -36px 0 8px 124px; position: relative; z-index: 2; height: 28px"
10
+ style="margin: -49px 0 16px 124px; position: relative; z-index: 2; height: 28px"
11
11
  v-if="!wfConfig.hiddenAllButton"
12
12
  >
13
13
  <el-button
@@ -293,7 +293,7 @@ export default {
293
293
  height: calc(100vh - 110px);
294
294
 
295
295
  &.nfootBtn {
296
- height: calc(100vh - #{$xform-dialog-body-offset})
296
+ height: calc(100vh - var(--xform-dialog-body-offset, 58px))
297
297
  }
298
298
  }
299
299
  }
@@ -233,7 +233,7 @@ export default {
233
233
  height: calc(100vh - 110px);
234
234
 
235
235
  &.nfootBtn {
236
- height: calc(100vh - #{$xform-dialog-body-offset});
236
+ height: calc(100vh - var(--xform-dialog-body-offset, 58px));
237
237
  }
238
238
  }
239
239
  }
@@ -203,7 +203,7 @@ export default {
203
203
  height: calc(100vh - 110px);
204
204
 
205
205
  &.nfootBtn {
206
- height: calc(100vh - #{$xform-dialog-body-offset})
206
+ height: calc(100vh - var(--xform-dialog-body-offset, 58px))
207
207
  }
208
208
  }
209
209
  }
@@ -98,12 +98,12 @@ export default {
98
98
  }
99
99
 
100
100
  .form-widget-list {
101
- min-height: calc(100vh - #{$xform-designer-body-offset});
101
+ min-height: calc(100vh - var(--xform-designer-body-offset, 98px));
102
102
  padding: 3px;
103
- @if $xform-designer-detail-offset != null {
104
- ::v-deep .detail-wrap .d-cont {
105
- height: calc(100vh - #{$xform-designer-detail-offset}) !important;
106
- }
103
+ // 明细区高度默认关闭:--xform-designer-detail-height 未设置时回退为 revert(等同不写该规则)
104
+ // 目标项目在自己的 :root 覆盖,如 --xform-designer-detail-height: calc(100vh - 200px)
105
+ ::v-deep .detail-wrap .d-cont {
106
+ height: var(--xform-designer-detail-height, revert) !important;
107
107
  }
108
108
  }
109
109
  }
@@ -88,7 +88,7 @@ export default {
88
88
  }
89
89
 
90
90
  .xform-designer-scroll {
91
- height: calc(100vh - #{$xform-designer-scroll-offset});
91
+ height: calc(100vh - var(--xform-designer-scroll-offset, 125px));
92
92
  }
93
93
 
94
94
  .el-container.main-container {
@@ -118,7 +118,7 @@ export default {
118
118
  }
119
119
 
120
120
  .grid-height {
121
- height: calc(100vh - #{$xform-column-grid-offset}) !important
121
+ height: calc(100vh - var(--xform-column-grid-offset, 84px)) !important
122
122
  }
123
123
  }
124
124
  </style>
@@ -96,7 +96,7 @@ export default {
96
96
  }
97
97
 
98
98
  .fixed-header + .app-main {
99
- padding-top: 32px;
99
+ padding-top: 33px;
100
100
  }
101
101
 
102
102
  .hasTagsView {
@@ -1103,6 +1103,7 @@ export default {
1103
1103
  padding: 0 11px;
1104
1104
  height: 48px;
1105
1105
  line-height: 48px;
1106
+ overflow: hidden;
1106
1107
  &:hover,
1107
1108
  &.is-active {
1108
1109
  background-color: rgba(0, 0, 0, 0.29);
@@ -1115,7 +1116,7 @@ export default {
1115
1116
 
1116
1117
  &.iconfont {
1117
1118
  margin-right: 5px;
1118
- font-size: 19px;
1119
+ font-size: 18px;
1119
1120
  float: left;
1120
1121
  }
1121
1122
 
@@ -15,9 +15,8 @@
15
15
  :fullscreen="true"
16
16
  >
17
17
  <div
18
- class="cont"
19
18
  id="containt"
20
- style="height: calc(100vh - 48px); overflow: hidden"
19
+ style="height: calc(100vh - 58px); overflow: hidden"
21
20
  >
22
21
  <el-tabs ref="xTabs" v-model="activeName" class="tab-box">
23
22
  <el-tab-pane :label="$t1('详情')" name="first">
@@ -483,7 +482,10 @@ export default {
483
482
  .grid-height {
484
483
  height: calc(100vh - 106px) !important;
485
484
  }
486
- ::v-deep .detail-wrap .d-cont {
487
- height: calc(100vh - 148px) !important;
485
+ ::v-deep .detail-wrap{
486
+ margin:-8px -10px 0;
487
+ .d-cont {
488
+ height: calc(100vh - 148px) !important;
489
+ }
488
490
  }
489
491
  </style>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <span style="cursor: unset">
2
+ <span style="cursor: unset;margin-right: 10px;">
3
3
  <el-button
4
4
  type="primary"
5
5
  plain
@@ -169,14 +169,6 @@ export default {
169
169
  background: url(~@/resources/images/bg-login5.jpg) center center/cover no-repeat;
170
170
  }
171
171
 
172
- .login-container.chigo {
173
- background: url(~@/resources/images/bg-login6.jpg) center center/cover no-repeat;
174
- }
175
-
176
- .login-container.pcp {
177
- background: url(~@/resources/images/bg-login8.jpg) center center/cover no-repeat;
178
- }
179
-
180
172
  .el-select-dropdown {
181
173
  right: 5px;
182
174
  top: 25px;
@@ -307,16 +307,7 @@ export default {
307
307
  }
308
308
  },
309
309
  changeBackground() {
310
- if (
311
- location.host.indexOf("pcp.sc.5mall.com") >= 0 ||
312
- location.host.indexOf("pip.bears.com.cn") >= 0
313
- ) {
314
- this.backgroundClass = "pcp";
315
- } else if (location.host.indexOf("chigo.sc.5mall.com") >= 0) {
316
- this.backgroundClass = "chigo";
317
- } else {
318
- this.backgroundClass = "tc";
319
- }
310
+ this.backgroundClass = "tc";
320
311
  },
321
312
  login() {
322
313
  let url = window.MAIN_WEB_PREFIX + "/index.html/#/login";