meixioacomponent 0.2.79 → 0.2.82
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 +106 -101
- package/lib/meixioacomponent.umd.js +106 -101
- package/lib/meixioacomponent.umd.min.js +9 -9
- package/lib/style/element/index.css +2 -2
- package/package.json +1 -1
- package/packages/components/base/baseLineInfoItem/baseLineInfoItem.vue +3 -1
- package/packages/components/proForm/dialogForm/baseDialogForm.vue +5 -1
- package/packages/components/style/element/index.css +2 -2
|
@@ -13280,7 +13280,7 @@
|
|
|
13280
13280
|
float: none;
|
|
13281
13281
|
display: inline-block;
|
|
13282
13282
|
text-align: left;
|
|
13283
|
-
padding: 0 0
|
|
13283
|
+
padding: 0 0 0px 0;
|
|
13284
13284
|
}
|
|
13285
13285
|
.el-form--inline .el-form-item {
|
|
13286
13286
|
display: inline-block;
|
|
@@ -13299,7 +13299,7 @@
|
|
|
13299
13299
|
display: block;
|
|
13300
13300
|
}
|
|
13301
13301
|
.el-form-item {
|
|
13302
|
-
margin-bottom:
|
|
13302
|
+
margin-bottom: calc(var(--margin-5) * 1.2);
|
|
13303
13303
|
}
|
|
13304
13304
|
.el-form-item::after,
|
|
13305
13305
|
.el-form-item::before {
|
package/package.json
CHANGED
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
:visible-arrow="false"
|
|
25
25
|
>
|
|
26
26
|
<span
|
|
27
|
+
class="infor-value_text"
|
|
27
28
|
:style="{
|
|
28
29
|
textAlign: valueAlign,
|
|
29
30
|
}"
|
|
@@ -149,7 +150,7 @@ export default {
|
|
|
149
150
|
box-sizing: border-box;
|
|
150
151
|
padding: var(--padding-5) 0px;
|
|
151
152
|
padding-left: var(--padding-5);
|
|
152
|
-
|
|
153
|
+
.infor-value_text {
|
|
153
154
|
color: var(--font-color-d);
|
|
154
155
|
font-size: var(--font-size-base);
|
|
155
156
|
font-weight: var(--font-weight-g);
|
|
@@ -166,6 +167,7 @@ export default {
|
|
|
166
167
|
text-overflow: ellipsis;
|
|
167
168
|
}
|
|
168
169
|
.line-infor-slot-wrap {
|
|
170
|
+
width: 100%;
|
|
169
171
|
display: flex;
|
|
170
172
|
flex-flow: row nowrap;
|
|
171
173
|
}
|
|
@@ -137,6 +137,10 @@ export default {
|
|
|
137
137
|
type: String,
|
|
138
138
|
default: "50vh",
|
|
139
139
|
},
|
|
140
|
+
labelPosition: {
|
|
141
|
+
type: String,
|
|
142
|
+
default: `right`,
|
|
143
|
+
},
|
|
140
144
|
},
|
|
141
145
|
components: {
|
|
142
146
|
pro_formVue,
|
|
@@ -192,7 +196,7 @@ export default {
|
|
|
192
196
|
},
|
|
193
197
|
setLabelPosition(type) {
|
|
194
198
|
if (!type) {
|
|
195
|
-
return
|
|
199
|
+
return this.$props.labelPosition;
|
|
196
200
|
} else if (type == "upload") {
|
|
197
201
|
return "top";
|
|
198
202
|
}
|
|
@@ -13280,7 +13280,7 @@
|
|
|
13280
13280
|
float: none;
|
|
13281
13281
|
display: inline-block;
|
|
13282
13282
|
text-align: left;
|
|
13283
|
-
padding: 0 0
|
|
13283
|
+
padding: 0 0 0px 0;
|
|
13284
13284
|
}
|
|
13285
13285
|
.el-form--inline .el-form-item {
|
|
13286
13286
|
display: inline-block;
|
|
@@ -13299,7 +13299,7 @@
|
|
|
13299
13299
|
display: block;
|
|
13300
13300
|
}
|
|
13301
13301
|
.el-form-item {
|
|
13302
|
-
margin-bottom:
|
|
13302
|
+
margin-bottom: calc(var(--margin-5) * 1.2);
|
|
13303
13303
|
}
|
|
13304
13304
|
.el-form-item::after,
|
|
13305
13305
|
.el-form-item::before {
|