@dhccmobile/vue3-lo-form 2.0.4 → 2.0.52
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/dist/demo.html +10 -1
- package/dist/vue3-lo-form.common.js +6979 -8682
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.css +1 -1
- package/dist/vue3-lo-form.umd.js +6988 -8692
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -1
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +8 -8
- package/src/App.vue +2 -10
- package/src/components/form/DvForm.vue +4 -3
- package/src/components/form/DvFormLayout.vue +39 -3
- package/src/main.ts +4 -1
- package/src/styles/index.scss +5 -0
- package/src/styles/theme-3.scss +371 -0
- package/src/styles/theme-4.scss +402 -0
- package/src/styles/themes.scss +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dhccmobile/vue3-lo-form",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.52",
|
|
4
4
|
"description": "VUE3动态表单",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/vue3-lo-form.umd.js",
|
|
@@ -42,18 +42,18 @@
|
|
|
42
42
|
"@types/moment": "^2.13.0",
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
44
44
|
"@typescript-eslint/parser": "^5.4.0",
|
|
45
|
-
"@vue/cli-plugin-babel": "~5.
|
|
46
|
-
"@vue/cli-plugin-eslint": "~5.
|
|
47
|
-
"@vue/cli-plugin-router": "~5.
|
|
48
|
-
"@vue/cli-plugin-typescript": "~5.
|
|
49
|
-
"@vue/cli-plugin-vuex": "~5.
|
|
50
|
-
"@vue/cli-service": "~5.
|
|
45
|
+
"@vue/cli-plugin-babel": "~4.5.10",
|
|
46
|
+
"@vue/cli-plugin-eslint": "~4.5.10",
|
|
47
|
+
"@vue/cli-plugin-router": "~4.5.10",
|
|
48
|
+
"@vue/cli-plugin-typescript": "~4.5.17",
|
|
49
|
+
"@vue/cli-plugin-vuex": "~4.5.10",
|
|
50
|
+
"@vue/cli-service": "~4.5.10",
|
|
51
51
|
"@vue/compiler-sfc": "3.4.35",
|
|
52
52
|
"@vue/eslint-config-prettier": "^6.0.0",
|
|
53
53
|
"@vue/eslint-config-typescript": "^9.1.0",
|
|
54
54
|
"eslint": "^7.1.0",
|
|
55
55
|
"eslint-plugin-prettier": "^3.3.1",
|
|
56
|
-
"eslint-plugin-vue": "^
|
|
56
|
+
"eslint-plugin-vue": "^7.0.0",
|
|
57
57
|
"less": "^4.2.0",
|
|
58
58
|
"less-loader": "^11.0.0",
|
|
59
59
|
"prettier": "^2.2.1",
|
package/src/App.vue
CHANGED
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
</div>
|
|
102
102
|
</div>
|
|
103
103
|
<div class="lo-input">
|
|
104
|
-
<!--styleMode="credit-rd" :formId="'
|
|
105
|
-
<dy-form v-if="showForm" :formId="'
|
|
104
|
+
<!--styleMode="credit-rd" :formId="'984119606230257664'"-->
|
|
105
|
+
<dy-form v-if="showForm" :formId="'1486032085101092864'" v-model:edit="formApi.edit" v-model:formApi="formApi" @change="onChange($event)" @click="onClick($event)" @focus="onFocus($event)" @blur="onBlur($event)" @addon-before="onAddonBeforeHandler($event)" @addon-after="onAddonAfterHandler($event)" @add-item="selectAddItem($event)">
|
|
106
106
|
<template #combinationSelector="{ control, onChange }">
|
|
107
107
|
<div class="lo-custom-control-box">
|
|
108
108
|
<a-input v-model:value="control.formControl.value" @input="onChange(control.formControl)" v-if="control && control.formControl" />
|
|
@@ -194,14 +194,6 @@ export default class App extends Vue {
|
|
|
194
194
|
sysDictDetailOptions: [],
|
|
195
195
|
sysDictTreeDetailOptions: [],
|
|
196
196
|
};
|
|
197
|
-
/**
|
|
198
|
-
* 表单权限控制属性
|
|
199
|
-
* id: 表单字段
|
|
200
|
-
* isHide: 0-显示 1-隐藏
|
|
201
|
-
* isNotEdit: 0-可编辑 1-不可编辑
|
|
202
|
-
* isMustFill: 0-可为空 1-必填
|
|
203
|
-
*/
|
|
204
|
-
formLimits = [{ id: "deptNm", isHide: "0", isNotEdit: "0", isMustFill: "1" }];
|
|
205
197
|
mounted(): void {
|
|
206
198
|
const desForm: DesForm | any = formTemplate;
|
|
207
199
|
desForm.desFormLayouts[0].desFormControls.push({
|
|
@@ -99,7 +99,7 @@ export default class DyForm extends Vue {
|
|
|
99
99
|
* @date 2022/4/6 14:17
|
|
100
100
|
*/
|
|
101
101
|
@Watch("formValidateStateResetMark")
|
|
102
|
-
onPropFormValidateStateResetHandler(
|
|
102
|
+
onPropFormValidateStateResetHandler(): void {
|
|
103
103
|
if ((this as any)._provided) {
|
|
104
104
|
((this as any)._provided as any).provideInjectData.formValidateStateResetMark = this.formValidateStateResetMark;
|
|
105
105
|
}
|
|
@@ -116,7 +116,7 @@ export default class DyForm extends Vue {
|
|
|
116
116
|
@Watch("metaRefresh")
|
|
117
117
|
@Watch("refreshCheckFeedbackFlag")
|
|
118
118
|
@Watch("widthCompatibleMode")
|
|
119
|
-
onPropHandler(
|
|
119
|
+
onPropHandler(): void {
|
|
120
120
|
if (this) {
|
|
121
121
|
this.provideInjectData.edit = this.edit;
|
|
122
122
|
this.provideInjectData.labelSpan = this.labelSpan;
|
|
@@ -129,7 +129,8 @@ export default class DyForm extends Vue {
|
|
|
129
129
|
|
|
130
130
|
get loFormTheme(): string {
|
|
131
131
|
const win: any = window;
|
|
132
|
-
|
|
132
|
+
// 默认, 灰度, 某北某方,label换行
|
|
133
|
+
const themes = ["default", "gray", "nitic", "labelWrap"];
|
|
133
134
|
const formTheme = themes.indexOf(this.formTheme) > -1 ? this.formTheme : win.$loFormTheme;
|
|
134
135
|
return themes.indexOf(formTheme) > -1 ? formTheme : themes[0];
|
|
135
136
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
:class="{
|
|
17
17
|
['form-model-item-' + controlAttr.boundProperty]: true,
|
|
18
18
|
['form-model-item-' + control.code]: true,
|
|
19
|
-
'lo-form-model-item-textarea-box': control.code === formFieldType.Textarea.code,
|
|
19
|
+
'lo-form-model-item-textarea-box lo-theme-textarea-box': control.code === formFieldType.Textarea.code,
|
|
20
20
|
'lo-form-item-mobile': isMobileBrowser(),
|
|
21
21
|
}"
|
|
22
22
|
>
|
|
@@ -302,7 +302,9 @@
|
|
|
302
302
|
</a-upload>
|
|
303
303
|
</template>
|
|
304
304
|
<template v-if="control.code === formFieldType.Custom.code && controlAttr.customFieldName">
|
|
305
|
-
<
|
|
305
|
+
<div class="custom-border">
|
|
306
|
+
<slot :control="control" :onChange="onChange" :name="controlAttr.customFieldName"></slot>
|
|
307
|
+
</div>
|
|
306
308
|
</template>
|
|
307
309
|
</template>
|
|
308
310
|
<template v-else>
|
|
@@ -782,7 +784,7 @@ export default class DvFormLayout extends Vue {
|
|
|
782
784
|
} else if (this.provideInjectData.controlSpan) {
|
|
783
785
|
return this.provideInjectData.controlSpan;
|
|
784
786
|
} else {
|
|
785
|
-
return
|
|
787
|
+
return "none";
|
|
786
788
|
}
|
|
787
789
|
}
|
|
788
790
|
|
|
@@ -957,6 +959,7 @@ export default class DvFormLayout extends Vue {
|
|
|
957
959
|
for (let i = 0; i < index; i++) {
|
|
958
960
|
data += "0";
|
|
959
961
|
}
|
|
962
|
+
data = this.countDecimalPlaces(data, controlAttr.decimalPlaces);
|
|
960
963
|
}
|
|
961
964
|
// 金额后缀不依赖于是否设置了小数位
|
|
962
965
|
if (controlAttr.zoomType !== ZoomType.automatic.code && data != null && data != "" && controlAttr.unit) {
|
|
@@ -1033,6 +1036,39 @@ export default class DvFormLayout extends Vue {
|
|
|
1033
1036
|
return data;
|
|
1034
1037
|
}
|
|
1035
1038
|
|
|
1039
|
+
/**
|
|
1040
|
+
* 数字小数位数计算
|
|
1041
|
+
* @author JiangTao
|
|
1042
|
+
* @since 2026-04-16 16:40:23
|
|
1043
|
+
*/
|
|
1044
|
+
countDecimalPlaces(data: string | number, decimalPlaces: number | undefined): string {
|
|
1045
|
+
// 1. 安全处理
|
|
1046
|
+
const digits = decimalPlaces ?? 0;
|
|
1047
|
+
const str = String(data).trim();
|
|
1048
|
+
if (!str) return digits > 0 ? `0.${"0".repeat(digits)}` : "0";
|
|
1049
|
+
|
|
1050
|
+
// 2. 判断是否有小数
|
|
1051
|
+
const hasDot = str.includes(".");
|
|
1052
|
+
const intPart = hasDot ? str.split(".")[0] : str;
|
|
1053
|
+
const decimalPart = hasDot ? str.split(".")[1] : "";
|
|
1054
|
+
|
|
1055
|
+
// 3. 拼接成纯数字用于四舍五入计算
|
|
1056
|
+
const pureNumStr = intPart.replace(/,/g, "") + (hasDot ? "." + decimalPart : "");
|
|
1057
|
+
const num = parseFloat(pureNumStr);
|
|
1058
|
+
if (isNaN(num)) return intPart + (digits > 0 ? `.${"0".repeat(digits)}` : "");
|
|
1059
|
+
|
|
1060
|
+
// 4. 四舍五入保留 digits 位
|
|
1061
|
+
const factor = Math.pow(10, digits);
|
|
1062
|
+
const rounded = (Math.round(num * factor) / factor).toFixed(digits);
|
|
1063
|
+
|
|
1064
|
+
// 5. 拆分四舍五入后的整数与小数
|
|
1065
|
+
const [, roundedDecimal = ""] = rounded.split(".");
|
|
1066
|
+
|
|
1067
|
+
// 6. 最终结果:原始整数部分 + 处理后的小数部分
|
|
1068
|
+
if (digits <= 0) return intPart;
|
|
1069
|
+
return `${intPart}.${roundedDecimal}`;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1036
1072
|
/**
|
|
1037
1073
|
* @description: 支持的上传类型
|
|
1038
1074
|
* @author ChenRui
|
package/src/main.ts
CHANGED
|
@@ -10,8 +10,11 @@ app.config.performance = true;
|
|
|
10
10
|
app
|
|
11
11
|
.use(VueLoForm, {
|
|
12
12
|
url: "http://82.156.213.34:8080",
|
|
13
|
-
appId: "1009549397931601920",
|
|
13
|
+
// appId: "1009549397931601920",
|
|
14
|
+
appId: "1461652844787691520",
|
|
14
15
|
onlySimpleLoadConfig: false,
|
|
15
16
|
loadMode: "dynamic",
|
|
16
17
|
})
|
|
17
18
|
.mount("#app");
|
|
19
|
+
const win: any = window;
|
|
20
|
+
win.$loFormTheme = "labelWrap"; // 指定主题
|
package/src/styles/index.scss
CHANGED
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
.ant-form-horizontal {
|
|
2
|
+
.lo-control-container {
|
|
3
|
+
/**非编辑状态下的样式*/
|
|
4
|
+
.is-disable-input {
|
|
5
|
+
:deep(.ant-form-item-control) {
|
|
6
|
+
border-radius: 5px;
|
|
7
|
+
border: rgba(229,229,229, 0.7) 1px solid;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
.lo-control-box {
|
|
11
|
+
.ant-form-item {
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-direction: row;
|
|
14
|
+
height: 100%;
|
|
15
|
+
:deep {
|
|
16
|
+
.ant-form-item-control {
|
|
17
|
+
min-height: 40px;
|
|
18
|
+
//box-shadow: 0 0 0 1px rgba(229,229,229, 0.5);
|
|
19
|
+
margin-top: 1px;
|
|
20
|
+
}
|
|
21
|
+
.ant-form-item-label {
|
|
22
|
+
position: relative;
|
|
23
|
+
//box-shadow: 0 0 0 1px #fff;
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
z-index: 1;
|
|
26
|
+
label {
|
|
27
|
+
display: block;
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: auto;
|
|
30
|
+
white-space: pre-wrap;
|
|
31
|
+
word-break: break-all;
|
|
32
|
+
line-height: normal;
|
|
33
|
+
padding: 8px 0;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
.ant-input,
|
|
37
|
+
.ant-input-affix-wrapper,
|
|
38
|
+
.ant-select-selector,
|
|
39
|
+
.ant-picker,
|
|
40
|
+
.ant-btn,
|
|
41
|
+
.ant-input-number {
|
|
42
|
+
border-radius: .5rem;
|
|
43
|
+
min-height: 40px;
|
|
44
|
+
max-height: 40px;
|
|
45
|
+
padding: 0 6px;
|
|
46
|
+
height: 100%;
|
|
47
|
+
color: #333333;
|
|
48
|
+
}
|
|
49
|
+
.ant-input-number-input, input[type=search] {
|
|
50
|
+
min-height: 40px;
|
|
51
|
+
padding: 0;
|
|
52
|
+
height: 100%;
|
|
53
|
+
color: #333333;
|
|
54
|
+
}
|
|
55
|
+
.ant-input-number-group,
|
|
56
|
+
.ant-input-number-group-wrapper,
|
|
57
|
+
.ant-input-number-input-wrap {
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: 100%;
|
|
60
|
+
}
|
|
61
|
+
.ant-picker-input > input {
|
|
62
|
+
color: #333333;
|
|
63
|
+
}
|
|
64
|
+
.ant-radio-group {
|
|
65
|
+
padding: 0 6px;
|
|
66
|
+
margin: auto 0;
|
|
67
|
+
}
|
|
68
|
+
.ant-checkbox-group {
|
|
69
|
+
padding: 8px 6px;
|
|
70
|
+
}
|
|
71
|
+
.ant-picker-suffix, .ant-select-arrow {
|
|
72
|
+
width: 40px;
|
|
73
|
+
}
|
|
74
|
+
.ant-picker-suffix {
|
|
75
|
+
text-align: center;
|
|
76
|
+
margin-right: -6px;
|
|
77
|
+
}
|
|
78
|
+
.ant-select-arrow {
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: center;
|
|
82
|
+
height: 100%;
|
|
83
|
+
top: 5px;
|
|
84
|
+
right: 0;
|
|
85
|
+
z-index: 10;
|
|
86
|
+
}
|
|
87
|
+
.ant-form-item-control-input-content {
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
}
|
|
91
|
+
.ant-form-item-control-input, .ant-form-item-control-input-content {
|
|
92
|
+
height: 100%;
|
|
93
|
+
align-items: center;
|
|
94
|
+
}
|
|
95
|
+
.ant-input:focus,
|
|
96
|
+
.ant-input-number-focused,
|
|
97
|
+
.ant-picker-focused,
|
|
98
|
+
.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
99
|
+
box-shadow: 0 0 0 1px #4094f3;
|
|
100
|
+
z-index: 10;
|
|
101
|
+
}
|
|
102
|
+
.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector,
|
|
103
|
+
.ant-picker-input > input[disabled],
|
|
104
|
+
.ant-input-number-disabled,
|
|
105
|
+
.ant-input[disabled] {
|
|
106
|
+
color: #666666;
|
|
107
|
+
background-color: #fbfbfb;
|
|
108
|
+
}
|
|
109
|
+
.ant-picker-disabled {
|
|
110
|
+
background-color: #fbfbfb;
|
|
111
|
+
}
|
|
112
|
+
.ant-form-item-explain-error {
|
|
113
|
+
line-height: 24px;
|
|
114
|
+
color: #ff2d4b;
|
|
115
|
+
font-size: 12px;
|
|
116
|
+
padding: 0 6px;
|
|
117
|
+
background: rgba(255, 45, 75, 0.2)
|
|
118
|
+
}
|
|
119
|
+
.ant-select-selection-item {
|
|
120
|
+
display: inline-flex;
|
|
121
|
+
align-items: center;
|
|
122
|
+
}
|
|
123
|
+
.ant-select-selection-overflow {
|
|
124
|
+
padding-right: 40px;
|
|
125
|
+
}
|
|
126
|
+
.ant-select-multiple {
|
|
127
|
+
.ant-select-selection-search {
|
|
128
|
+
margin-start: 0;
|
|
129
|
+
margin-inline-start: 0;
|
|
130
|
+
}
|
|
131
|
+
.ant-select-selection-placeholder {
|
|
132
|
+
left: 6px;
|
|
133
|
+
right: 40px;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
.ant-select-single {
|
|
137
|
+
.ant-select-selection-item,
|
|
138
|
+
.ant-select-selection-search {
|
|
139
|
+
position: absolute;
|
|
140
|
+
left: 6px;
|
|
141
|
+
right: 40px;
|
|
142
|
+
top: 0;
|
|
143
|
+
bottom: 0;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
:deep .ant-form-item-has-error {
|
|
149
|
+
.ant-input:focus,
|
|
150
|
+
.ant-input-number-focused,
|
|
151
|
+
.ant-picker-focused,
|
|
152
|
+
.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
153
|
+
box-shadow: 0 0 0 1px #ff194c;
|
|
154
|
+
color: #ff194c;
|
|
155
|
+
z-index: 10;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.lo-control-container {
|
|
162
|
+
box-sizing: border-box;
|
|
163
|
+
margin-bottom: 1.5rem;
|
|
164
|
+
.lo-control-box {
|
|
165
|
+
height: 100%;
|
|
166
|
+
.ant-form-item {
|
|
167
|
+
margin-bottom: 0;
|
|
168
|
+
.lo-select {
|
|
169
|
+
:deep {
|
|
170
|
+
.ant-select-selection-selected-value {
|
|
171
|
+
width: 100%;
|
|
172
|
+
white-space: nowrap;
|
|
173
|
+
text-overflow: ellipsis;
|
|
174
|
+
overflow: hidden;
|
|
175
|
+
word-break: break-all;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
&.lo-select-multiple-suffix-icon {
|
|
179
|
+
:deep {
|
|
180
|
+
.ant-select-arrow {
|
|
181
|
+
margin: 0;
|
|
182
|
+
height: 100%;
|
|
183
|
+
top: 0;
|
|
184
|
+
right: 0;
|
|
185
|
+
width: fit-content;
|
|
186
|
+
.ant-select-arrow-icon {
|
|
187
|
+
height: 100%;
|
|
188
|
+
display: flex;
|
|
189
|
+
align-items: center;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
.lo-label-sub-type-icon {
|
|
196
|
+
color: #3fb5eb;
|
|
197
|
+
cursor: pointer;
|
|
198
|
+
margin-left: 4px;
|
|
199
|
+
margin-bottom: 3px;
|
|
200
|
+
display: inline-block;
|
|
201
|
+
:deep {
|
|
202
|
+
svg {
|
|
203
|
+
display: inline-block;
|
|
204
|
+
margin-bottom: -2.5px;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
.lo-label-history-icon {
|
|
209
|
+
display: inline-block;
|
|
210
|
+
line-height: 0;
|
|
211
|
+
margin-left: 4px;
|
|
212
|
+
margin-bottom: 3px;
|
|
213
|
+
cursor: pointer;
|
|
214
|
+
font-size: 14px;
|
|
215
|
+
}
|
|
216
|
+
.lo-label-tips-icon {
|
|
217
|
+
color: #4094f3;
|
|
218
|
+
cursor: pointer;
|
|
219
|
+
font-size: 14px !important;
|
|
220
|
+
margin-left: 4px;
|
|
221
|
+
}
|
|
222
|
+
:deep {
|
|
223
|
+
.ant-form-item-label {
|
|
224
|
+
label {
|
|
225
|
+
color: #333333;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
.ant-form-item-control-wrapper {
|
|
229
|
+
flex-grow: 1;
|
|
230
|
+
color: #333333;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
:deep {
|
|
234
|
+
.ant-input-group-addon, .ant-input-number-group-addon {
|
|
235
|
+
width: 40px;
|
|
236
|
+
min-height: 38px;
|
|
237
|
+
position: absolute;
|
|
238
|
+
right: 2px;
|
|
239
|
+
top: 1px;
|
|
240
|
+
border: none;
|
|
241
|
+
z-index: 999;
|
|
242
|
+
&:active {
|
|
243
|
+
opacity: .7;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
.addon-icon {
|
|
248
|
+
display: flex;
|
|
249
|
+
align-items: center;
|
|
250
|
+
justify-content: center;
|
|
251
|
+
width: 100%;
|
|
252
|
+
height: 100%;
|
|
253
|
+
font-size: 15px;
|
|
254
|
+
cursor: pointer;
|
|
255
|
+
background-color: #fff;
|
|
256
|
+
}
|
|
257
|
+
.addon-inner {
|
|
258
|
+
display: flex;
|
|
259
|
+
align-items: center;
|
|
260
|
+
justify-content: center;
|
|
261
|
+
position: absolute;
|
|
262
|
+
width: 100%;
|
|
263
|
+
height: 100%;
|
|
264
|
+
top: 0;
|
|
265
|
+
left: 0;
|
|
266
|
+
cursor: pointer;
|
|
267
|
+
color: #999999;
|
|
268
|
+
background-color: #f2f2f2;
|
|
269
|
+
}
|
|
270
|
+
.addon-inner:active {
|
|
271
|
+
background: rgba(240, 240, 240, 0.3);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
.lo-textarea-count {
|
|
275
|
+
position: absolute;
|
|
276
|
+
line-height: 10px;
|
|
277
|
+
right: 0;
|
|
278
|
+
color: rgba(0, 0, 0, 0.45);
|
|
279
|
+
}
|
|
280
|
+
.lo-input-number-box {
|
|
281
|
+
width: 100%;
|
|
282
|
+
:deep {
|
|
283
|
+
.ant-input-number {
|
|
284
|
+
width: 100%;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
&.lo-with-unit {
|
|
288
|
+
:deep {
|
|
289
|
+
.ant-input-number {
|
|
290
|
+
border-top-right-radius: 0;
|
|
291
|
+
border-bottom-right-radius: 0;
|
|
292
|
+
border-right: 0;
|
|
293
|
+
.ant-input-number-handler-wrap {
|
|
294
|
+
border-top-right-radius: 0;
|
|
295
|
+
border-bottom-right-radius: 0;
|
|
296
|
+
opacity: 1;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
.ant-dropdown-trigger {
|
|
300
|
+
border-top-left-radius: 0;
|
|
301
|
+
border-bottom-left-radius: 0;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
&.lo-unit-1 {
|
|
305
|
+
:deep {
|
|
306
|
+
.ant-input-number {
|
|
307
|
+
width: calc(100% - 50px);
|
|
308
|
+
}
|
|
309
|
+
.ant-dropdown-trigger {
|
|
310
|
+
min-width: 50px;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
&.lo-unit-2 {
|
|
315
|
+
:deep {
|
|
316
|
+
.ant-input-number {
|
|
317
|
+
width: calc(100% - 80px);
|
|
318
|
+
}
|
|
319
|
+
.ant-dropdown-trigger {
|
|
320
|
+
min-width: 80px;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
&.lo-unit-3 {
|
|
325
|
+
:deep {
|
|
326
|
+
.ant-input-number {
|
|
327
|
+
width: calc(100% - 110px);
|
|
328
|
+
}
|
|
329
|
+
.ant-dropdown-trigger {
|
|
330
|
+
min-width: 110px;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
.lo-input-content {
|
|
337
|
+
align-items: center;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
text-overflow: ellipsis;
|
|
340
|
+
color: #333333;
|
|
341
|
+
font-size: 14px;
|
|
342
|
+
padding: 0 6px;
|
|
343
|
+
}
|
|
344
|
+
.lo-control-text {
|
|
345
|
+
white-space: pre-wrap;
|
|
346
|
+
word-break: break-all;
|
|
347
|
+
line-height: 22px;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
:deep .ant-select-multiple .ant-select-selection-item {
|
|
352
|
+
height: 40px !important;
|
|
353
|
+
margin: 0 4px 0 0 !important;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
.lo-empty-layout-container {
|
|
357
|
+
box-sizing: border-box;
|
|
358
|
+
display: grid;
|
|
359
|
+
border: none;
|
|
360
|
+
}
|
|
361
|
+
.lo-general-layout-container {
|
|
362
|
+
box-sizing: border-box;
|
|
363
|
+
display: grid;
|
|
364
|
+
grid-column-start: 1;
|
|
365
|
+
}
|
|
366
|
+
:deep .ant-form-item-label > label.ant-form-item-no-colon::after {
|
|
367
|
+
display: none;
|
|
368
|
+
}
|
|
369
|
+
.ant-input-textarea {
|
|
370
|
+
width: 100%;
|
|
371
|
+
}
|