@fecp/vue 1.1.0 → 1.1.2
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/es/packages/vue/src/components/forms/form/Form.vue.mjs +59 -62
- package/es/packages/vue/src/components/table/Table.vue.mjs +1 -1
- package/es/vue.css +5 -6
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +58 -61
- package/lib/packages/vue/src/components/table/Table.vue.js +1 -1
- package/lib/vue.css +5 -6
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
|
-
import { getCurrentInstance, ref, onMounted,
|
|
8
|
+
import { getCurrentInstance, ref, onMounted, createBlock, openBlock, withCtx, createCommentVNode, createVNode, unref } from "vue";
|
|
9
9
|
import "../../../../../../node_modules/.pnpm/grid-layout-plus@1.1.1_vue@3.5.13_typescript@5.7.3_/node_modules/grid-layout-plus/es/index.mjs";
|
|
10
10
|
import { getCurrentVueInstance } from "../../../utils/getInstance.mjs";
|
|
11
11
|
import getJsonAsyncUtil from "../../../utils/getJsonAsyncUtil.mjs";
|
|
@@ -323,67 +323,64 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
323
323
|
return (_ctx, _cache) => {
|
|
324
324
|
const _component_el_form = ElForm;
|
|
325
325
|
const _component_el_container = ElContainer;
|
|
326
|
-
return openBlock(),
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
}),
|
|
385
|
-
createTextVNode(" " + toDisplayString(formData.value), 1)
|
|
386
|
-
], 64);
|
|
326
|
+
return openBlock(), createBlock(_component_el_container, {
|
|
327
|
+
direction: "vertical",
|
|
328
|
+
style: { "height": "100%" }
|
|
329
|
+
}, {
|
|
330
|
+
default: withCtx(() => [
|
|
331
|
+
!configLoading.value ? (openBlock(), createBlock(unref(header), {
|
|
332
|
+
key: 0,
|
|
333
|
+
pageHeaderConfig: localConfig.value.pageHeaderConfig
|
|
334
|
+
}, null, 8, ["pageHeaderConfig"])) : createCommentVNode("", true),
|
|
335
|
+
createVNode(unref(main), null, {
|
|
336
|
+
default: withCtx(() => [
|
|
337
|
+
createVNode(_component_el_form, {
|
|
338
|
+
ref_key: "formRef",
|
|
339
|
+
ref: formRef,
|
|
340
|
+
model: formData.value,
|
|
341
|
+
rules: formRules.value,
|
|
342
|
+
"label-position": localConfig.value.labelPosition,
|
|
343
|
+
style: { "padding": "18px" },
|
|
344
|
+
"validate-on-rule-change": false
|
|
345
|
+
}, {
|
|
346
|
+
default: withCtx(() => [
|
|
347
|
+
!configLoading.value ? (openBlock(), createBlock(unref(De), {
|
|
348
|
+
key: 0,
|
|
349
|
+
ref: "gridLayout",
|
|
350
|
+
layout: localConfig.value.fieldsData,
|
|
351
|
+
"onUpdate:layout": _cache[0] || (_cache[0] = ($event) => localConfig.value.fieldsData = $event),
|
|
352
|
+
"row-height": localConfig.value.labelPosition == "top" ? 90 : 60,
|
|
353
|
+
margin: [0, 0],
|
|
354
|
+
"col-num": localConfig.value.columns,
|
|
355
|
+
"is-draggable": false,
|
|
356
|
+
"is-resizable": false
|
|
357
|
+
}, {
|
|
358
|
+
item: withCtx(({ item: { component } }) => [
|
|
359
|
+
createVNode(_FormItem, {
|
|
360
|
+
modelValue: formData.value[component.fieldName],
|
|
361
|
+
"onUpdate:modelValue": ($event) => formData.value[component.fieldName] = $event,
|
|
362
|
+
config: component,
|
|
363
|
+
localConfig: localConfig.value,
|
|
364
|
+
error: getFieldError(component.fieldName),
|
|
365
|
+
formRef: formRef.value,
|
|
366
|
+
onChange: handleFieldChange
|
|
367
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "config", "localConfig", "error", "formRef"])
|
|
368
|
+
]),
|
|
369
|
+
_: 1
|
|
370
|
+
}, 8, ["layout", "row-height", "col-num"])) : createCommentVNode("", true)
|
|
371
|
+
]),
|
|
372
|
+
_: 1
|
|
373
|
+
}, 8, ["model", "rules", "label-position"])
|
|
374
|
+
]),
|
|
375
|
+
_: 1
|
|
376
|
+
}),
|
|
377
|
+
createVNode(unref(footer), {
|
|
378
|
+
pageFooterConfig: localConfig.value.pageFooterConfig,
|
|
379
|
+
onCustomButtonClick: handleCustomButtonClick
|
|
380
|
+
}, null, 8, ["pageFooterConfig"])
|
|
381
|
+
]),
|
|
382
|
+
_: 1
|
|
383
|
+
});
|
|
387
384
|
};
|
|
388
385
|
}
|
|
389
386
|
});
|
|
@@ -434,7 +434,7 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
434
434
|
};
|
|
435
435
|
}
|
|
436
436
|
});
|
|
437
|
-
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
437
|
+
const _Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9014257e"]]);
|
|
438
438
|
export {
|
|
439
439
|
_Table as default
|
|
440
440
|
};
|
package/es/vue.css
CHANGED
|
@@ -23,28 +23,27 @@
|
|
|
23
23
|
}
|
|
24
24
|
.cell-content .copy-icon[data-v-28498ce1]:hover {
|
|
25
25
|
color: #409eff;
|
|
26
|
-
}.fec-table-container[data-v-
|
|
26
|
+
}.fec-table-container[data-v-9014257e] {
|
|
27
27
|
width: 100%;
|
|
28
28
|
background: #fff;
|
|
29
|
-
padding: 12px;
|
|
30
29
|
box-sizing: border-box;
|
|
31
30
|
height: 100%;
|
|
32
31
|
display: flex;
|
|
33
32
|
flex-direction: column;
|
|
34
33
|
overflow: hidden;
|
|
35
34
|
}
|
|
36
|
-
.fec-table-container .fec-table[data-v-
|
|
35
|
+
.fec-table-container .fec-table[data-v-9014257e] {
|
|
37
36
|
flex: 1;
|
|
38
37
|
min-height: 0;
|
|
39
38
|
overflow: hidden;
|
|
40
39
|
}
|
|
41
|
-
.fec-table-container[data-v-
|
|
40
|
+
.fec-table-container[data-v-9014257e] .vxe-table {
|
|
42
41
|
font-size: 14px;
|
|
43
42
|
}
|
|
44
|
-
.fec-table-container[data-v-
|
|
43
|
+
.fec-table-container[data-v-9014257e] .vxe-table .vxe-table--body-wrapper {
|
|
45
44
|
overflow: auto;
|
|
46
45
|
}
|
|
47
|
-
.fec-table-container[data-v-
|
|
46
|
+
.fec-table-container[data-v-9014257e] .vxe-table .vxe-header--column {
|
|
48
47
|
background-color: #f5f7fa;
|
|
49
48
|
}.el-container{box-sizing:border-box;display:flex;flex:1;flex-basis:auto;flex-direction:row;min-width:0}.el-container.is-vertical{flex-direction:column}.el-aside{box-sizing:border-box;flex-shrink:0;overflow:auto;width:var(--el-aside-width,300px)}.el-footer{--el-footer-padding:0 20px;--el-footer-height:60px;box-sizing:border-box;flex-shrink:0;height:var(--el-footer-height);padding:var(--el-footer-padding)}.el-header{--el-header-padding:0 20px;--el-header-height:60px;box-sizing:border-box;flex-shrink:0;height:var(--el-header-height);padding:var(--el-header-padding)}.el-main{--el-main-padding:20px;box-sizing:border-box;display:block;flex:1;flex-basis:auto;overflow:auto;padding:var(--el-main-padding)}.el-form{--el-form-label-font-size:var(--el-font-size-base);--el-form-inline-content-width:220px}.el-form--inline .el-form-item{display:inline-flex;margin-right:32px;vertical-align:middle}.el-form--inline.el-form--label-top{display:flex;flex-wrap:wrap}.el-form--inline.el-form--label-top .el-form-item{display:block}.el-form-item{display:flex;--font-size:14px;margin-bottom:18px}.el-form-item .el-form-item{margin-bottom:0}.el-form-item .el-input__validateIcon{display:none}.el-form-item--large{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:22px}.el-form-item--large .el-form-item__label{height:40px;line-height:40px}.el-form-item--large .el-form-item__content{line-height:40px}.el-form-item--large .el-form-item__error{padding-top:4px}.el-form-item--default{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--default .el-form-item__label{height:32px;line-height:32px}.el-form-item--default .el-form-item__content{line-height:32px}.el-form-item--default .el-form-item__error{padding-top:2px}.el-form-item--small{--font-size:12px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--small .el-form-item__label{height:24px;line-height:24px}.el-form-item--small .el-form-item__content{line-height:24px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item--label-left .el-form-item__label{justify-content:flex-start;text-align:left}.el-form-item--label-right .el-form-item__label{justify-content:flex-end;text-align:right}.el-form-item--label-top{display:block}.el-form-item--label-top .el-form-item__label{display:block;height:auto;line-height:22px;margin-bottom:8px;padding-right:0;text-align:left;width:-moz-fit-content;width:fit-content}.el-form-item__label-wrap{display:flex}.el-form-item__label{align-items:flex-start;box-sizing:border-box;color:var(--el-text-color-regular);display:inline-flex;flex:0 0 auto;font-size:var(--el-form-label-font-size);height:32px;line-height:32px;padding:0 12px 0 0}.el-form-item__content{align-items:center;display:flex;flex:1;flex-wrap:wrap;font-size:var(--font-size);line-height:32px;min-width:0;position:relative}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:var(--el-color-danger);font-size:12px;left:0;line-height:1;padding-top:2px;position:absolute;top:100%}.el-form-item__error--inline{display:inline-block;left:auto;margin-left:10px;position:relative;top:auto}.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label:before{color:var(--el-color-danger);content:"*";margin-right:4px}.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label-wrap>.el-form-item__label:after,.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label:after{color:var(--el-color-danger);content:"*";margin-left:4px}.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper,.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper.is-focus,.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper:focus,.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper:hover,.el-form-item.is-error .el-form-item__content .el-input__wrapper,.el-form-item.is-error .el-form-item__content .el-input__wrapper.is-focus,.el-form-item.is-error .el-form-item__content .el-input__wrapper:focus,.el-form-item.is-error .el-form-item__content .el-input__wrapper:hover,.el-form-item.is-error .el-form-item__content .el-select__wrapper,.el-form-item.is-error .el-form-item__content .el-select__wrapper.is-focus,.el-form-item.is-error .el-form-item__content .el-select__wrapper:focus,.el-form-item.is-error .el-form-item__content .el-select__wrapper:hover,.el-form-item.is-error .el-form-item__content .el-textarea__inner,.el-form-item.is-error .el-form-item__content .el-textarea__inner.is-focus,.el-form-item.is-error .el-form-item__content .el-textarea__inner:focus,.el-form-item.is-error .el-form-item__content .el-textarea__inner:hover{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-form-item.is-error .el-form-item__content .el-input-group__append .el-input__wrapper,.el-form-item.is-error .el-form-item__content .el-input-group__prepend .el-input__wrapper{box-shadow:inset 0 0 0 1px transparent}.el-form-item.is-error .el-form-item__content .el-input-group__append .el-input__validateIcon,.el-form-item.is-error .el-form-item__content .el-input-group__prepend .el-input__validateIcon{display:none}.el-form-item.is-error .el-form-item__content .el-input__validateIcon{color:var(--el-color-danger)}.el-form-item--feedback .el-input__validateIcon{display:inline-flex}
|
|
50
49
|
.text-field-wrapper[data-v-4b100f9c] {
|
|
@@ -325,67 +325,64 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
325
325
|
return (_ctx, _cache) => {
|
|
326
326
|
const _component_el_form = index$3.ElForm;
|
|
327
327
|
const _component_el_container = index.ElContainer;
|
|
328
|
-
return vue.openBlock(), vue.
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
vue.
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
}),
|
|
387
|
-
vue.createTextVNode(" " + vue.toDisplayString(formData.value), 1)
|
|
388
|
-
], 64);
|
|
328
|
+
return vue.openBlock(), vue.createBlock(_component_el_container, {
|
|
329
|
+
direction: "vertical",
|
|
330
|
+
style: { "height": "100%" }
|
|
331
|
+
}, {
|
|
332
|
+
default: vue.withCtx(() => [
|
|
333
|
+
!configLoading.value ? (vue.openBlock(), vue.createBlock(vue.unref(index$1.header), {
|
|
334
|
+
key: 0,
|
|
335
|
+
pageHeaderConfig: localConfig.value.pageHeaderConfig
|
|
336
|
+
}, null, 8, ["pageHeaderConfig"])) : vue.createCommentVNode("", true),
|
|
337
|
+
vue.createVNode(vue.unref(index$2.main), null, {
|
|
338
|
+
default: vue.withCtx(() => [
|
|
339
|
+
vue.createVNode(_component_el_form, {
|
|
340
|
+
ref_key: "formRef",
|
|
341
|
+
ref: formRef,
|
|
342
|
+
model: formData.value,
|
|
343
|
+
rules: formRules.value,
|
|
344
|
+
"label-position": localConfig.value.labelPosition,
|
|
345
|
+
style: { "padding": "18px" },
|
|
346
|
+
"validate-on-rule-change": false
|
|
347
|
+
}, {
|
|
348
|
+
default: vue.withCtx(() => [
|
|
349
|
+
!configLoading.value ? (vue.openBlock(), vue.createBlock(vue.unref(gridLayout_vue.default), {
|
|
350
|
+
key: 0,
|
|
351
|
+
ref: "gridLayout",
|
|
352
|
+
layout: localConfig.value.fieldsData,
|
|
353
|
+
"onUpdate:layout": _cache[0] || (_cache[0] = ($event) => localConfig.value.fieldsData = $event),
|
|
354
|
+
"row-height": localConfig.value.labelPosition == "top" ? 90 : 60,
|
|
355
|
+
margin: [0, 0],
|
|
356
|
+
"col-num": localConfig.value.columns,
|
|
357
|
+
"is-draggable": false,
|
|
358
|
+
"is-resizable": false
|
|
359
|
+
}, {
|
|
360
|
+
item: vue.withCtx(({ item: { component } }) => [
|
|
361
|
+
vue.createVNode(FormItem.default, {
|
|
362
|
+
modelValue: formData.value[component.fieldName],
|
|
363
|
+
"onUpdate:modelValue": ($event) => formData.value[component.fieldName] = $event,
|
|
364
|
+
config: component,
|
|
365
|
+
localConfig: localConfig.value,
|
|
366
|
+
error: getFieldError(component.fieldName),
|
|
367
|
+
formRef: formRef.value,
|
|
368
|
+
onChange: handleFieldChange
|
|
369
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "config", "localConfig", "error", "formRef"])
|
|
370
|
+
]),
|
|
371
|
+
_: 1
|
|
372
|
+
}, 8, ["layout", "row-height", "col-num"])) : vue.createCommentVNode("", true)
|
|
373
|
+
]),
|
|
374
|
+
_: 1
|
|
375
|
+
}, 8, ["model", "rules", "label-position"])
|
|
376
|
+
]),
|
|
377
|
+
_: 1
|
|
378
|
+
}),
|
|
379
|
+
vue.createVNode(vue.unref(index$4.footer), {
|
|
380
|
+
pageFooterConfig: localConfig.value.pageFooterConfig,
|
|
381
|
+
onCustomButtonClick: handleCustomButtonClick
|
|
382
|
+
}, null, 8, ["pageFooterConfig"])
|
|
383
|
+
]),
|
|
384
|
+
_: 1
|
|
385
|
+
});
|
|
389
386
|
};
|
|
390
387
|
}
|
|
391
388
|
});
|
|
@@ -436,5 +436,5 @@ const _sfc_main = /* @__PURE__ */ Object.assign({
|
|
|
436
436
|
};
|
|
437
437
|
}
|
|
438
438
|
});
|
|
439
|
-
const _Table = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
439
|
+
const _Table = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-9014257e"]]);
|
|
440
440
|
exports.default = _Table;
|
package/lib/vue.css
CHANGED
|
@@ -23,28 +23,27 @@
|
|
|
23
23
|
}
|
|
24
24
|
.cell-content .copy-icon[data-v-28498ce1]:hover {
|
|
25
25
|
color: #409eff;
|
|
26
|
-
}.fec-table-container[data-v-
|
|
26
|
+
}.fec-table-container[data-v-9014257e] {
|
|
27
27
|
width: 100%;
|
|
28
28
|
background: #fff;
|
|
29
|
-
padding: 12px;
|
|
30
29
|
box-sizing: border-box;
|
|
31
30
|
height: 100%;
|
|
32
31
|
display: flex;
|
|
33
32
|
flex-direction: column;
|
|
34
33
|
overflow: hidden;
|
|
35
34
|
}
|
|
36
|
-
.fec-table-container .fec-table[data-v-
|
|
35
|
+
.fec-table-container .fec-table[data-v-9014257e] {
|
|
37
36
|
flex: 1;
|
|
38
37
|
min-height: 0;
|
|
39
38
|
overflow: hidden;
|
|
40
39
|
}
|
|
41
|
-
.fec-table-container[data-v-
|
|
40
|
+
.fec-table-container[data-v-9014257e] .vxe-table {
|
|
42
41
|
font-size: 14px;
|
|
43
42
|
}
|
|
44
|
-
.fec-table-container[data-v-
|
|
43
|
+
.fec-table-container[data-v-9014257e] .vxe-table .vxe-table--body-wrapper {
|
|
45
44
|
overflow: auto;
|
|
46
45
|
}
|
|
47
|
-
.fec-table-container[data-v-
|
|
46
|
+
.fec-table-container[data-v-9014257e] .vxe-table .vxe-header--column {
|
|
48
47
|
background-color: #f5f7fa;
|
|
49
48
|
}.el-container{box-sizing:border-box;display:flex;flex:1;flex-basis:auto;flex-direction:row;min-width:0}.el-container.is-vertical{flex-direction:column}.el-aside{box-sizing:border-box;flex-shrink:0;overflow:auto;width:var(--el-aside-width,300px)}.el-footer{--el-footer-padding:0 20px;--el-footer-height:60px;box-sizing:border-box;flex-shrink:0;height:var(--el-footer-height);padding:var(--el-footer-padding)}.el-header{--el-header-padding:0 20px;--el-header-height:60px;box-sizing:border-box;flex-shrink:0;height:var(--el-header-height);padding:var(--el-header-padding)}.el-main{--el-main-padding:20px;box-sizing:border-box;display:block;flex:1;flex-basis:auto;overflow:auto;padding:var(--el-main-padding)}.el-form{--el-form-label-font-size:var(--el-font-size-base);--el-form-inline-content-width:220px}.el-form--inline .el-form-item{display:inline-flex;margin-right:32px;vertical-align:middle}.el-form--inline.el-form--label-top{display:flex;flex-wrap:wrap}.el-form--inline.el-form--label-top .el-form-item{display:block}.el-form-item{display:flex;--font-size:14px;margin-bottom:18px}.el-form-item .el-form-item{margin-bottom:0}.el-form-item .el-input__validateIcon{display:none}.el-form-item--large{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:22px}.el-form-item--large .el-form-item__label{height:40px;line-height:40px}.el-form-item--large .el-form-item__content{line-height:40px}.el-form-item--large .el-form-item__error{padding-top:4px}.el-form-item--default{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--default .el-form-item__label{height:32px;line-height:32px}.el-form-item--default .el-form-item__content{line-height:32px}.el-form-item--default .el-form-item__error{padding-top:2px}.el-form-item--small{--font-size:12px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--small .el-form-item__label{height:24px;line-height:24px}.el-form-item--small .el-form-item__content{line-height:24px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item--label-left .el-form-item__label{justify-content:flex-start;text-align:left}.el-form-item--label-right .el-form-item__label{justify-content:flex-end;text-align:right}.el-form-item--label-top{display:block}.el-form-item--label-top .el-form-item__label{display:block;height:auto;line-height:22px;margin-bottom:8px;padding-right:0;text-align:left;width:-moz-fit-content;width:fit-content}.el-form-item__label-wrap{display:flex}.el-form-item__label{align-items:flex-start;box-sizing:border-box;color:var(--el-text-color-regular);display:inline-flex;flex:0 0 auto;font-size:var(--el-form-label-font-size);height:32px;line-height:32px;padding:0 12px 0 0}.el-form-item__content{align-items:center;display:flex;flex:1;flex-wrap:wrap;font-size:var(--font-size);line-height:32px;min-width:0;position:relative}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:var(--el-color-danger);font-size:12px;left:0;line-height:1;padding-top:2px;position:absolute;top:100%}.el-form-item__error--inline{display:inline-block;left:auto;margin-left:10px;position:relative;top:auto}.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label:before{color:var(--el-color-danger);content:"*";margin-right:4px}.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label-wrap>.el-form-item__label:after,.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label:after{color:var(--el-color-danger);content:"*";margin-left:4px}.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper,.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper.is-focus,.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper:focus,.el-form-item.is-error .el-form-item__content .el-input-tag__wrapper:hover,.el-form-item.is-error .el-form-item__content .el-input__wrapper,.el-form-item.is-error .el-form-item__content .el-input__wrapper.is-focus,.el-form-item.is-error .el-form-item__content .el-input__wrapper:focus,.el-form-item.is-error .el-form-item__content .el-input__wrapper:hover,.el-form-item.is-error .el-form-item__content .el-select__wrapper,.el-form-item.is-error .el-form-item__content .el-select__wrapper.is-focus,.el-form-item.is-error .el-form-item__content .el-select__wrapper:focus,.el-form-item.is-error .el-form-item__content .el-select__wrapper:hover,.el-form-item.is-error .el-form-item__content .el-textarea__inner,.el-form-item.is-error .el-form-item__content .el-textarea__inner.is-focus,.el-form-item.is-error .el-form-item__content .el-textarea__inner:focus,.el-form-item.is-error .el-form-item__content .el-textarea__inner:hover{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-form-item.is-error .el-form-item__content .el-input-group__append .el-input__wrapper,.el-form-item.is-error .el-form-item__content .el-input-group__prepend .el-input__wrapper{box-shadow:inset 0 0 0 1px transparent}.el-form-item.is-error .el-form-item__content .el-input-group__append .el-input__validateIcon,.el-form-item.is-error .el-form-item__content .el-input-group__prepend .el-input__validateIcon{display:none}.el-form-item.is-error .el-form-item__content .el-input__validateIcon{color:var(--el-color-danger)}.el-form-item--feedback .el-input__validateIcon{display:inline-flex}
|
|
50
49
|
.text-field-wrapper[data-v-4b100f9c] {
|