meixioacomponent 0.2.7 → 0.2.8
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/lib/meixioacomponent.common.js +103 -100
- package/lib/meixioacomponent.umd.js +103 -100
- package/lib/meixioacomponent.umd.min.js +4 -4
- package/package.json +1 -1
- package/packages/components/proForm/proForm/pro_form.vue +4 -1
- package/packages/components/proForm/proFormWrap/pro_form_wrap.vue +3 -0
package/package.json
CHANGED
|
@@ -323,8 +323,11 @@ export default {
|
|
|
323
323
|
align-items: flex-start;
|
|
324
324
|
margin-bottom: var(--margin-4) !important;
|
|
325
325
|
|
|
326
|
+
.item-label {
|
|
327
|
+
font-size: var(--font-size-s) !important;
|
|
328
|
+
}
|
|
326
329
|
/deep/ .el-form-item__label {
|
|
327
|
-
line-height:
|
|
330
|
+
line-height: 24px !important;
|
|
328
331
|
}
|
|
329
332
|
}
|
|
330
333
|
}
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
<div class="pro-form-wrap">
|
|
3
3
|
<baseSectionVue :headerText="formTitle" v-model="sectionOpen">
|
|
4
4
|
<base-icon :name="iconClass" :size="`l`" slot="header-prefix"></base-icon>
|
|
5
|
+
<template slot="section-header-right">
|
|
6
|
+
<slot name="header-right"></slot>
|
|
7
|
+
</template>
|
|
5
8
|
<template slot="sectionContent">
|
|
6
9
|
<pro_formVue
|
|
7
10
|
:size="size"
|