resolver-egretimp-plus 0.0.238 → 0.0.239

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,6 +1,6 @@
1
1
  {
2
2
  "name": "resolver-egretimp-plus",
3
- "version": "0.0.238",
3
+ "version": "0.0.239",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -89,6 +89,9 @@ const dialogProps = computed(() => {
89
89
  if (props.dialogProps?.titleEn && props.lang?.indexOf('zh') == -1) {
90
90
  ret.title = props.dialogProps?.titleEn
91
91
  }
92
+ if (!ret.title) {
93
+ ret['headerClass'] = ret['headerClass'] ? `${ret['headerClass']} hidden-head` : 'hidden-head'
94
+ }
92
95
  return ret
93
96
  })
94
97
 
@@ -159,5 +162,10 @@ defineExpose({
159
162
  .el-dialog__header {
160
163
  min-height: 40px;
161
164
  }
165
+ .hidden-head {
166
+ & > .el-dialog__header {
167
+ display: none;
168
+ }
169
+ }
162
170
  }
163
171
  </style>