resolver-egretimp-plus 0.0.249 → 0.0.250
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
|
@@ -58,7 +58,7 @@ watch(lasetLimitIdx, (val) => {
|
|
|
58
58
|
|
|
59
59
|
const collapseLabel = computed(() => {
|
|
60
60
|
const isCh = lang?.value?.indexOf('zh') > -1
|
|
61
|
-
return isCollapse.value ? (isCh ? '更多' : 'More') : (isCh ? '收起' : '
|
|
61
|
+
return isCollapse.value ? (isCh ? '更多' : 'More') : (isCh ? '收起' : 'Less')
|
|
62
62
|
})
|
|
63
63
|
function toCollapse() {
|
|
64
64
|
isCollapse.value = !isCollapse.value
|
|
@@ -72,9 +72,9 @@ function toCollapse() {
|
|
|
72
72
|
<Renderer :config="pmPageMetaList" v-model="modelValue"></Renderer>
|
|
73
73
|
</div>
|
|
74
74
|
<div v-if="showCollapseBtn" class="collapse-wrap">
|
|
75
|
-
<
|
|
75
|
+
<span class="collapse-span" @click="toCollapse">
|
|
76
76
|
{{ collapseLabel }}
|
|
77
|
-
</
|
|
77
|
+
</span>
|
|
78
78
|
</div>
|
|
79
79
|
</cmi-collapse>
|
|
80
80
|
</div>
|
|
@@ -93,6 +93,10 @@ function toCollapse() {
|
|
|
93
93
|
.collapse-wrap {
|
|
94
94
|
display: flex;
|
|
95
95
|
justify-content: end;
|
|
96
|
+
& > .collapse-span {
|
|
97
|
+
color: #3271FE;
|
|
98
|
+
margin: 8px 16px 16px 16px;
|
|
99
|
+
}
|
|
96
100
|
}
|
|
97
101
|
</style>
|
|
98
102
|
<style lang="scss">
|