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,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<ElCard class="
|
|
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
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
36
|
+
// .custom-component-card {
|
|
37
|
+
// width: 100%;
|
|
38
|
+
// box-sizing: border-box
|
|
39
|
+
// }
|
|
40
40
|
</style>
|
package/src/utils/defaultVal.js
CHANGED
|
@@ -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
|
|
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)
|