resolver-egretimp-plus 0.1.67 → 0.1.69

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.1.67",
3
+ "version": "0.1.69",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ElCard class="custom-component-card" v-bind="cardProps">
2
+ <ElCard class="standard-wrap" v-bind="cardProps">
3
3
  <ElRow>
4
4
  <Renderer :config="pmPageMetaList" v-model="modelValue"></Renderer>
5
5
  </ElRow>
@@ -33,8 +33,8 @@ const pmPageMetaList = computed(() => {
33
33
  })
34
34
  </script>
35
35
  <style lang="scss">
36
- .custom-component-card {
37
- width: 100%;
38
- box-sizing: border-box
39
- }
36
+ // .custom-component-card {
37
+ // width: 100%;
38
+ // box-sizing: border-box
39
+ // }
40
40
  </style>
@@ -58,7 +58,7 @@ export function formatSelectVal({
58
58
  if (!isHidden({config}) || isActive) {
59
59
  const valueType = config?.valueType
60
60
  const separator = config?.separator
61
- if (valueType == VALUE_TYPES.STRING) {
61
+ if (valueType !== VALUE_TYPES.LIST && valueType !== VALUE_TYPES.OBJECT) {
62
62
  if (isPlainObject(val) || isArray(val)) {
63
63
  try {
64
64
  retValue = Object.values(val).join(separator)