@zscreate/form-component 1.1.320-linkage.9 → 1.1.321
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/form-component.css +766 -408
- package/dist/form-component.umd.js +62771 -23633
- package/package.json +3 -1
package/dist/form-component.css
CHANGED
|
@@ -1,3 +1,606 @@
|
|
|
1
|
+
.h-model-item[data-v-1c5bd450]{height:30px;line-height:30px;padding-left:10px;font-size:16px}.h-model-item[data-v-1c5bd450]:hover{background-color:#f5f9fd;color:#1890FF !important}.dropMenu[data-v-1c5bd450]{width:100px;padding:0;margin:auto;position:absolute;right:-100px;top:-7px;bottom:0;z-index:100}.dropMenu li[data-v-1c5bd450]{width:20px;height:20px;line-height:20px;display:inline-block;text-align:center;cursor:pointer;font-size:16px;color:#999}.dropMenu li[data-v-1c5bd450]:hover{color:#66a6e0}.dropMenu li.icon-set[data-v-1c5bd450]{font-size:23px}.dropMenuItem[data-v-1c5bd450]{width:30px;height:30px;padding:0;color:#ffa500;margin:auto;position:absolute;cursor:pointer;bottom:0;z-index:100;font-size:20px}.gate .flow-node-drag[data-v-1c5bd450]:nth-child(1){left:0;right:0;top:-19px}.gate .flow-node-drag[data-v-1c5bd450]:nth-child(2){top:0;bottom:0;right:-19px}.gate .flow-node-drag[data-v-1c5bd450]:nth-child(3){left:0;right:0;bottom:-19px}.gate .flow-node-drag[data-v-1c5bd450]:nth-child(4){top:0;bottom:0;left:-19px}.flow-node-header[data-v-1c5bd450]{background-color:#66a6e0;height:25px;cursor:pointer;border-top-left-radius:6px;border-top-right-radius:6px}.flow-node-header a[data-v-1c5bd450]{text-decoration:none;line-height:25px;vertical-align:middle}.flow-node-header a img[data-v-1c5bd450]{line-height:25px;vertical-align:middle;margin-bottom:5px}.flow-node-body[data-v-1c5bd450]{background-color:white;text-align:center;cursor:pointer;height:25px;line-height:25px;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.vdr-no-border[data-v-1c5bd450]{border:none}.tool .text[data-v-1c5bd450]{font-size:14px;padding:4px 6px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.tool .inner[data-v-1c5bd450]{background:orange;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner .icon-user[data-v-1c5bd450]{color:#fff;display:flex;align-items:center;justify-content:center}.tool .inner-blue[data-v-1c5bd450]{background:blue;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner-blue .icon-user[data-v-1c5bd450]{color:#fff;display:flex;align-items:center}.flow-view .start[data-v-1c5bd450]{border:2px solid #e0c645}.flow-view .end[data-v-1c5bd450]{background-size:cover;border:2px solid #e0c645;position:relative}.flow-view .end[data-v-1c5bd450]:before{content:'';width:12px;height:12px;background:#e0c645;display:block;position:absolute;top:calc(50% - 6px);left:calc(50% - 6px)}
|
|
2
|
+
|
|
3
|
+
.flow-tool-menu{background-color:#eeeeee;cursor:pointer;padding-left:5px;height:50px;line-height:50px;border-bottom:1px solid #979797}.flow-tool-submenu{background-color:white;padding-left:20px;cursor:pointer;height:50px;line-height:50px;vertical-align:middle;border-bottom:1px solid #d3d3d3}.g1-tools_1 li.start{width:50px;height:50px;border:1px solid #d8d8d8;border-radius:100%}.draggable-item .inner{display:flex;flex-direction:column;align-items:center;margin-bottom:10px}.draggable-item .inner svg{font-size:30px;color:#858587}.draggable-item .inner svg use{fill:#858587}.draggable-item .inner span{color:#333;margin:5px}
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.CodeMirror{
|
|
7
|
+
height:600px !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.show_select_form {
|
|
11
|
+
line-height: 32px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
ul[data-v-c8780a30] {
|
|
15
|
+
max-height: 700px;
|
|
16
|
+
overflow-y: auto;
|
|
17
|
+
padding-left: 0.5rem;
|
|
18
|
+
}
|
|
19
|
+
ul i[data-v-c8780a30] {
|
|
20
|
+
font-size: 1.5rem;
|
|
21
|
+
border: 1px solid #f1f1f1;
|
|
22
|
+
padding: 0.2rem;
|
|
23
|
+
margin: 0.3rem;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
}
|
|
26
|
+
ul i.active[data-v-c8780a30],
|
|
27
|
+
ul i[data-v-c8780a30]:hover {
|
|
28
|
+
border-radius: 2px;
|
|
29
|
+
border-color: #4a4a48;
|
|
30
|
+
background-color: #4a4a48;
|
|
31
|
+
color: #fff;
|
|
32
|
+
transition: all 0.3s;
|
|
33
|
+
}
|
|
34
|
+
ul li[data-v-c8780a30] {
|
|
35
|
+
list-style: none;
|
|
36
|
+
float: left;
|
|
37
|
+
width: 5%;
|
|
38
|
+
text-align: center;
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
color: #555;
|
|
41
|
+
transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
|
|
42
|
+
position: relative;
|
|
43
|
+
margin: 3px 0;
|
|
44
|
+
border-radius: 4px;
|
|
45
|
+
background-color: #fff;
|
|
46
|
+
overflow: hidden;
|
|
47
|
+
padding: 10px 0 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.cus-btn_form .ant-form-item{margin-bottom:10px}.ant-modal-footer{text-align:center}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
.warpper .ant-tabs .ant-tabs-content {
|
|
54
|
+
border-top: 1px solid #dddddd;
|
|
55
|
+
border-left: 1px solid #dddddd;
|
|
56
|
+
}
|
|
57
|
+
.warpper .ant-col-8 {
|
|
58
|
+
border-right: 1px solid #dddddd;
|
|
59
|
+
border-bottom: 1px solid #dddddd;
|
|
60
|
+
height: 40px;
|
|
61
|
+
line-height: 40px;
|
|
62
|
+
text-align: center;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.panel-form {
|
|
66
|
+
margin-bottom: 35px;
|
|
67
|
+
}
|
|
68
|
+
.panel-form .ant-row {
|
|
69
|
+
margin-bottom: 10px;
|
|
70
|
+
}
|
|
71
|
+
.panel-form .ant-btn {
|
|
72
|
+
margin-right: 5px;
|
|
73
|
+
}
|
|
74
|
+
.panel-hd {
|
|
75
|
+
height: 43px;
|
|
76
|
+
line-height: 43px;
|
|
77
|
+
margin: 0 -15px 15px -15px;
|
|
78
|
+
padding: 0 15px;
|
|
79
|
+
font-size: 14px;
|
|
80
|
+
display: flex;
|
|
81
|
+
justify-content: space-between;
|
|
82
|
+
background-color: #d8d8d89e;
|
|
83
|
+
}
|
|
84
|
+
.node-branch {
|
|
85
|
+
padding: 25px 5px 10px 5px;
|
|
86
|
+
margin: 0 -5px;
|
|
87
|
+
border: 1px solid #d8d8d8;
|
|
88
|
+
position: relative;
|
|
89
|
+
}
|
|
90
|
+
.node-branch .title {
|
|
91
|
+
height: 36px;
|
|
92
|
+
line-height: 36px;
|
|
93
|
+
padding: 0 15px;
|
|
94
|
+
background: #1890ff;
|
|
95
|
+
color: #fff;
|
|
96
|
+
position: absolute;
|
|
97
|
+
left: 15px;
|
|
98
|
+
top: -17px;
|
|
99
|
+
}
|
|
100
|
+
.node-branch .add-btn {
|
|
101
|
+
width: 35px;
|
|
102
|
+
height: 35px;
|
|
103
|
+
line-height: 35px;
|
|
104
|
+
font-size: 23px;
|
|
105
|
+
position: absolute;
|
|
106
|
+
right: 10px;
|
|
107
|
+
text-align: center;
|
|
108
|
+
top: -17px;
|
|
109
|
+
background-color: #fff;
|
|
110
|
+
cursor: pointer;
|
|
111
|
+
}
|
|
112
|
+
.ant-form-item-label label {
|
|
113
|
+
font-size: 12px;
|
|
114
|
+
}
|
|
115
|
+
.node-list_btn {
|
|
116
|
+
padding: 15px 7px;
|
|
117
|
+
}
|
|
118
|
+
.node-list_btn .ant-btn {
|
|
119
|
+
margin: 5px 2px;
|
|
120
|
+
}
|
|
121
|
+
.node-list_btn .ant-btn-success,
|
|
122
|
+
.node-list_btn .ant-btn-info,
|
|
123
|
+
.node-list_btn .ant-btn-warning,
|
|
124
|
+
.node-list_btn .ant-btn-danger {
|
|
125
|
+
color: #fff;
|
|
126
|
+
}
|
|
127
|
+
.node-list_btn .ant-btn-success:hover,
|
|
128
|
+
.node-list_btn .ant-btn-info:hover,
|
|
129
|
+
.node-list_btn .ant-btn-warning:hover,
|
|
130
|
+
.node-list_btn .ant-btn-danger:hover {
|
|
131
|
+
color: #fff;
|
|
132
|
+
}
|
|
133
|
+
.node-list_btn .ant-btn-success {
|
|
134
|
+
border: 1px solid #67c23a;
|
|
135
|
+
background-color: #67c23a;
|
|
136
|
+
}
|
|
137
|
+
.node-list_btn .ant-btn-success:hover {
|
|
138
|
+
border: 1px solid #67c23a;
|
|
139
|
+
background-color: #67c23a;
|
|
140
|
+
}
|
|
141
|
+
.node-list_btn .ant-btn-info {
|
|
142
|
+
border: 1px solid #909399;
|
|
143
|
+
background-color: #909399;
|
|
144
|
+
}
|
|
145
|
+
.node-list_btn .ant-btn-info:hover {
|
|
146
|
+
border: 1px solid #909399;
|
|
147
|
+
background-color: #909399;
|
|
148
|
+
}
|
|
149
|
+
.node-list_btn .ant-btn-warning {
|
|
150
|
+
border: 1px solid #e6a23c;
|
|
151
|
+
background-color: #e6a23c;
|
|
152
|
+
}
|
|
153
|
+
.node-list_btn .ant-btn-warning:hover {
|
|
154
|
+
border: 1px solid #e6a23c;
|
|
155
|
+
background-color: #e6a23c;
|
|
156
|
+
}
|
|
157
|
+
.node-list_btn .ant-btn-danger {
|
|
158
|
+
border: 1px solid #f56c6c;
|
|
159
|
+
background-color: #f56c6c;
|
|
160
|
+
}
|
|
161
|
+
.node-list_btn .ant-btn-danger:hover {
|
|
162
|
+
border: 1px solid #f56c6c;
|
|
163
|
+
background-color: #f56c6c;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.data-condition .data-condition-body .body-Condition[data-v-6091ee24] {
|
|
167
|
+
color: #141e31;
|
|
168
|
+
font-size: 14px;
|
|
169
|
+
}
|
|
170
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item[data-v-6091ee24] {
|
|
171
|
+
margin-top: 20px;
|
|
172
|
+
}
|
|
173
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-6091ee24] .ant-select-selection {
|
|
174
|
+
border: none;
|
|
175
|
+
font-size: 14px;
|
|
176
|
+
}
|
|
177
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-6091ee24] .ant-select-selection__rendered {
|
|
178
|
+
margin: 0 !important;
|
|
179
|
+
margin-left: 5px !important;
|
|
180
|
+
}
|
|
181
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-6091ee24] .ant-select-arrow-icon {
|
|
182
|
+
color: #141e31;
|
|
183
|
+
}
|
|
184
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list[data-v-6091ee24] {
|
|
185
|
+
padding-top: 10px;
|
|
186
|
+
padding-bottom: 20px;
|
|
187
|
+
border-top: 1px solid #ccc;
|
|
188
|
+
}
|
|
189
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .delete-icon[data-v-6091ee24] {
|
|
190
|
+
color: #838c99;
|
|
191
|
+
font-size: 16px;
|
|
192
|
+
cursor: pointer;
|
|
193
|
+
}
|
|
194
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .delete-icon[data-v-6091ee24]:hover {
|
|
195
|
+
color: #eb5096;
|
|
196
|
+
}
|
|
197
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-6091ee24] .ant-calendar-picker {
|
|
198
|
+
min-width: 140px !important;
|
|
199
|
+
}
|
|
200
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-6091ee24] .ant-calendar-picker-input {
|
|
201
|
+
font-size: 12px !important;
|
|
202
|
+
}
|
|
203
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-6091ee24] .ant-calendar-picker-icon {
|
|
204
|
+
display: none !important;
|
|
205
|
+
}
|
|
206
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-6091ee24] .ant-select-selection {
|
|
207
|
+
border: none;
|
|
208
|
+
font-size: 14px;
|
|
209
|
+
min-width: 80px;
|
|
210
|
+
}
|
|
211
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-6091ee24] .ant-select-selection__rendered {
|
|
212
|
+
margin-left: 5px !important;
|
|
213
|
+
text-align: center !important;
|
|
214
|
+
}
|
|
215
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-6091ee24] .ant-select-arrow-icon {
|
|
216
|
+
color: #141e31;
|
|
217
|
+
}
|
|
218
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-6091ee24] .ant-select-selection-selected-value {
|
|
219
|
+
float: initial !important;
|
|
220
|
+
}
|
|
221
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-picker[data-v-6091ee24] .ant-calendar-picker-input {
|
|
222
|
+
padding: 4px 2px;
|
|
223
|
+
}
|
|
224
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-picker[data-v-6091ee24] .ant-calendar-picker-input .ant-calendar-range-picker-input {
|
|
225
|
+
width: 47%;
|
|
226
|
+
}
|
|
227
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list[data-v-6091ee24] .ant-select-selection--multiple .ant-select-selection__choice {
|
|
228
|
+
width: initial !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.g1-form_main1 .sider-pannel[data-v-a65c2bf4] {
|
|
232
|
+
width: 347px !important;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.g1-form_main1 .sider-pannel[data-v-c976b6e2] {
|
|
236
|
+
width: 347px !important;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
ul[data-v-58d1a12a],
|
|
240
|
+
li[data-v-58d1a12a],
|
|
241
|
+
dl[data-v-58d1a12a],
|
|
242
|
+
dt[data-v-58d1a12a],
|
|
243
|
+
dd[data-v-58d1a12a] {
|
|
244
|
+
list-style-type: none;
|
|
245
|
+
padding: 0;
|
|
246
|
+
margin: 0;
|
|
247
|
+
}
|
|
248
|
+
.flowwork-warp[data-v-58d1a12a] {
|
|
249
|
+
position: absolute;
|
|
250
|
+
left: 0;
|
|
251
|
+
right: 0;
|
|
252
|
+
top: 0;
|
|
253
|
+
bottom: 64px;
|
|
254
|
+
background: #fff;
|
|
255
|
+
}
|
|
256
|
+
.g1_workflow_warp[data-v-58d1a12a] {
|
|
257
|
+
border: 1px solid #dfdfdf;
|
|
258
|
+
margin: auto;
|
|
259
|
+
position: absolute;
|
|
260
|
+
left: 0;
|
|
261
|
+
right: 0;
|
|
262
|
+
bottom: 0;
|
|
263
|
+
top: 0;
|
|
264
|
+
}
|
|
265
|
+
.g1_workflow_warp li[data-v-58d1a12a] {
|
|
266
|
+
width: 100%;
|
|
267
|
+
position: relative;
|
|
268
|
+
text-align: center;
|
|
269
|
+
}
|
|
270
|
+
.g1-sider_tool1[data-v-58d1a12a] {
|
|
271
|
+
width: 100px;
|
|
272
|
+
position: absolute;
|
|
273
|
+
left: 0;
|
|
274
|
+
top: 0;
|
|
275
|
+
bottom: 0;
|
|
276
|
+
border-right: 1px solid #dfdfdf;
|
|
277
|
+
overflow-y: auto;
|
|
278
|
+
}
|
|
279
|
+
.g1-sider_tool1 .tool_box[data-v-58d1a12a] {
|
|
280
|
+
margin-top: 15px;
|
|
281
|
+
}
|
|
282
|
+
.g1-sider_tool1 .tool_box .tool[data-v-58d1a12a] {
|
|
283
|
+
text-align: center;
|
|
284
|
+
font-size: 12px;
|
|
285
|
+
color: #fff;
|
|
286
|
+
}
|
|
287
|
+
/* 公用图形 */
|
|
288
|
+
.end[data-v-58d1a12a] {
|
|
289
|
+
border-radius: 100%;
|
|
290
|
+
}
|
|
291
|
+
.comm[data-v-58d1a12a] {
|
|
292
|
+
border-radius: 0px;
|
|
293
|
+
}
|
|
294
|
+
.gate[data-v-58d1a12a] {
|
|
295
|
+
width: 60px;
|
|
296
|
+
border-radius: 0;
|
|
297
|
+
}
|
|
298
|
+
.gate .inner[data-v-58d1a12a] {
|
|
299
|
+
display: inline-block;
|
|
300
|
+
font-size: 16px;
|
|
301
|
+
}
|
|
302
|
+
.g1-form_main1[data-v-58d1a12a] {
|
|
303
|
+
position: absolute;
|
|
304
|
+
left: 100px;
|
|
305
|
+
right: 0;
|
|
306
|
+
top: 0;
|
|
307
|
+
bottom: 0;
|
|
308
|
+
}
|
|
309
|
+
.g1-form_main1 .head[data-v-58d1a12a] {
|
|
310
|
+
height: 46px;
|
|
311
|
+
line-height: 46px;
|
|
312
|
+
text-align: left;
|
|
313
|
+
padding-left: 10px;
|
|
314
|
+
box-sizing: border-box;
|
|
315
|
+
border-bottom: 1px solid #d8d8d8;
|
|
316
|
+
}
|
|
317
|
+
.g1-form_main1 .head .ant-btn[data-v-58d1a12a] {
|
|
318
|
+
height: 32px;
|
|
319
|
+
margin-right: 10px;
|
|
320
|
+
}
|
|
321
|
+
.g1-form_main1 .main[data-v-58d1a12a] {
|
|
322
|
+
position: absolute;
|
|
323
|
+
left: 0 !important;
|
|
324
|
+
right: 0px;
|
|
325
|
+
top: 50px !important;
|
|
326
|
+
bottom: 0;
|
|
327
|
+
overflow: auto;
|
|
328
|
+
box-sizing: border-box;
|
|
329
|
+
}
|
|
330
|
+
.g1-form_main1 .main #flowContainer[data-v-58d1a12a] {
|
|
331
|
+
background-image: linear-gradient(90deg, rgba(180, 180, 180, 0.15) 10%, rgba(180, 180, 180, 0) 10%), linear-gradient(rgba(180, 180, 180, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
|
|
332
|
+
background-size: 10px 10px;
|
|
333
|
+
background-color: #fbfbfb;
|
|
334
|
+
}
|
|
335
|
+
.g1-form_main1 .sider-pannel[data-v-58d1a12a] {
|
|
336
|
+
width: 250px;
|
|
337
|
+
padding: 0 15px;
|
|
338
|
+
position: absolute;
|
|
339
|
+
right: 0;
|
|
340
|
+
top: 0;
|
|
341
|
+
bottom: 0;
|
|
342
|
+
border-left: 1px solid #dfdfdf;
|
|
343
|
+
background-color: #fff;
|
|
344
|
+
}
|
|
345
|
+
.g1-form_main1 .sider-pannel .sider-panel-inner[data-v-58d1a12a] {
|
|
346
|
+
width: 100%;
|
|
347
|
+
height: 100%;
|
|
348
|
+
padding: 15px;
|
|
349
|
+
padding-top: 0;
|
|
350
|
+
box-sizing: border-box;
|
|
351
|
+
position: absolute;
|
|
352
|
+
left: 0;
|
|
353
|
+
top: 0;
|
|
354
|
+
overflow-y: auto;
|
|
355
|
+
}
|
|
356
|
+
.g1-form_main1 .sider-pannel .sider-open[data-v-58d1a12a] {
|
|
357
|
+
width: 36px;
|
|
358
|
+
height: 60px;
|
|
359
|
+
line-height: 60px;
|
|
360
|
+
margin: auto;
|
|
361
|
+
position: absolute;
|
|
362
|
+
left: -36px;
|
|
363
|
+
top: 0;
|
|
364
|
+
bottom: 0;
|
|
365
|
+
text-align: center;
|
|
366
|
+
font-size: 13px;
|
|
367
|
+
border: 1px solid #c4bfbf;
|
|
368
|
+
border-right: none;
|
|
369
|
+
background-color: #fff;
|
|
370
|
+
}
|
|
371
|
+
/* 视图图形 */
|
|
372
|
+
.flow-view[data-v-58d1a12a] {
|
|
373
|
+
position: absolute;
|
|
374
|
+
left: 0;
|
|
375
|
+
right: 0;
|
|
376
|
+
top: 0;
|
|
377
|
+
bottom: 0;
|
|
378
|
+
}
|
|
379
|
+
.flow-view .inner .flow-node-drag[data-v-58d1a12a] {
|
|
380
|
+
width: 12px;
|
|
381
|
+
height: 12px;
|
|
382
|
+
display: block;
|
|
383
|
+
margin: auto;
|
|
384
|
+
border-radius: 100%;
|
|
385
|
+
position: absolute;
|
|
386
|
+
z-index: 9999;
|
|
387
|
+
cursor: crosshair;
|
|
388
|
+
background: rgba(24, 144, 255, 0.6);
|
|
389
|
+
}
|
|
390
|
+
.flow-view .inner .flow-node-drag[data-v-58d1a12a]:nth-child(1) {
|
|
391
|
+
left: -6px;
|
|
392
|
+
top: 0;
|
|
393
|
+
bottom: 0;
|
|
394
|
+
}
|
|
395
|
+
.flow-view .inner .flow-node-drag[data-v-58d1a12a]:nth-child(2) {
|
|
396
|
+
top: -6px;
|
|
397
|
+
left: 0;
|
|
398
|
+
right: 0;
|
|
399
|
+
}
|
|
400
|
+
.flow-view .inner .flow-node-drag[data-v-58d1a12a]:nth-child(3) {
|
|
401
|
+
right: -6px;
|
|
402
|
+
top: 0;
|
|
403
|
+
bottom: 0;
|
|
404
|
+
}
|
|
405
|
+
.flow-view .inner .flow-node-drag[data-v-58d1a12a]:nth-child(4) {
|
|
406
|
+
bottom: -6px;
|
|
407
|
+
left: 0;
|
|
408
|
+
right: 0;
|
|
409
|
+
}
|
|
410
|
+
.flow-view .tool[data-v-58d1a12a] {
|
|
411
|
+
width: 100%;
|
|
412
|
+
height: 100%;
|
|
413
|
+
margin: 0;
|
|
414
|
+
box-sizing: border-box;
|
|
415
|
+
box-shadow: 5px 5px 3px #d4d0d0;
|
|
416
|
+
background: #fbfbfb;
|
|
417
|
+
}
|
|
418
|
+
.flow-view .tool .iconfont[data-v-58d1a12a] {
|
|
419
|
+
font-size: 100%;
|
|
420
|
+
color: #858587;
|
|
421
|
+
}
|
|
422
|
+
.flow-view .exclude_gateway[data-v-58d1a12a] {
|
|
423
|
+
box-shadow: 0 0 0 #ccc;
|
|
424
|
+
}
|
|
425
|
+
.flow-view .gate[data-v-58d1a12a] {
|
|
426
|
+
line-height: 50px;
|
|
427
|
+
position: absolute;
|
|
428
|
+
left: 0;
|
|
429
|
+
right: 0;
|
|
430
|
+
top: 0;
|
|
431
|
+
bottom: 0;
|
|
432
|
+
}
|
|
433
|
+
.flow-view .ordinary_gateway[data-v-58d1a12a],
|
|
434
|
+
.flow-view .parall_gateway[data-v-58d1a12a],
|
|
435
|
+
.flow-view .exclude_gateway[data-v-58d1a12a] {
|
|
436
|
+
border: none;
|
|
437
|
+
border-radius: 0;
|
|
438
|
+
background-size: cover;
|
|
439
|
+
background-repeat: no-repeat;
|
|
440
|
+
background-position: center center;
|
|
441
|
+
box-shadow: 0 0 0 #ccc;
|
|
442
|
+
}
|
|
443
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(1),
|
|
444
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(1),
|
|
445
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(1) {
|
|
446
|
+
left: 0;
|
|
447
|
+
top: 0;
|
|
448
|
+
bottom: 0;
|
|
449
|
+
}
|
|
450
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(2),
|
|
451
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(2),
|
|
452
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(2) {
|
|
453
|
+
top: 0;
|
|
454
|
+
left: 0;
|
|
455
|
+
right: 0;
|
|
456
|
+
}
|
|
457
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(3),
|
|
458
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(3),
|
|
459
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(3) {
|
|
460
|
+
right: 0;
|
|
461
|
+
top: 0;
|
|
462
|
+
bottom: 0;
|
|
463
|
+
}
|
|
464
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(4),
|
|
465
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(4),
|
|
466
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-58d1a12a]:nth-child(4) {
|
|
467
|
+
bottom: 0;
|
|
468
|
+
left: 0;
|
|
469
|
+
right: 0;
|
|
470
|
+
}
|
|
471
|
+
.flow-view .exclude_gateway[data-v-58d1a12a] {
|
|
472
|
+
width: 70%;
|
|
473
|
+
height: 70%;
|
|
474
|
+
margin: 15%;
|
|
475
|
+
border: 2px solid #7a7a7a;
|
|
476
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
477
|
+
transform: rotate(45deg);
|
|
478
|
+
position: relative;
|
|
479
|
+
}
|
|
480
|
+
.flow-view .exclude_gateway[data-v-58d1a12a]::before {
|
|
481
|
+
content: '';
|
|
482
|
+
width: 2px;
|
|
483
|
+
background-color: #7a7a7a;
|
|
484
|
+
height: 20px;
|
|
485
|
+
display: block;
|
|
486
|
+
position: absolute;
|
|
487
|
+
top: calc(50% - 10px);
|
|
488
|
+
left: calc(50% - 1px);
|
|
489
|
+
}
|
|
490
|
+
.flow-view .exclude_gateway[data-v-58d1a12a]::after {
|
|
491
|
+
content: '';
|
|
492
|
+
width: 20px;
|
|
493
|
+
background-color: #7a7a7a;
|
|
494
|
+
height: 2px;
|
|
495
|
+
display: block;
|
|
496
|
+
position: absolute;
|
|
497
|
+
top: calc(50% - 1px);
|
|
498
|
+
left: calc(50% - 10px);
|
|
499
|
+
}
|
|
500
|
+
.flow-view .parall_gateway[data-v-58d1a12a] {
|
|
501
|
+
width: 70%;
|
|
502
|
+
height: 70%;
|
|
503
|
+
margin: 15%;
|
|
504
|
+
border: 2px solid #7a7a7a;
|
|
505
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
506
|
+
transform: rotate(45deg);
|
|
507
|
+
position: relative;
|
|
508
|
+
}
|
|
509
|
+
.flow-view .parall_gateway[data-v-58d1a12a]::after {
|
|
510
|
+
content: '';
|
|
511
|
+
width: 20px;
|
|
512
|
+
background-color: #7a7a7a;
|
|
513
|
+
height: 2px;
|
|
514
|
+
display: block;
|
|
515
|
+
position: absolute;
|
|
516
|
+
top: calc(50% - 1px);
|
|
517
|
+
left: calc(50% - 10px);
|
|
518
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
519
|
+
transform: rotate(45deg);
|
|
520
|
+
}
|
|
521
|
+
.flow-view .parall_gateway[data-v-58d1a12a]::before {
|
|
522
|
+
content: '';
|
|
523
|
+
width: 2px;
|
|
524
|
+
background-color: #7a7a7a;
|
|
525
|
+
height: 20px;
|
|
526
|
+
display: block;
|
|
527
|
+
position: absolute;
|
|
528
|
+
top: calc(50% - 10px);
|
|
529
|
+
left: calc(50% - 1px);
|
|
530
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
531
|
+
transform: rotate(45deg);
|
|
532
|
+
}
|
|
533
|
+
/* 线条工具 */
|
|
534
|
+
.lineTool[data-v-58d1a12a] {
|
|
535
|
+
width: 130px;
|
|
536
|
+
height: 26px;
|
|
537
|
+
border: 1px solid #1890ff;
|
|
538
|
+
position: fixed;
|
|
539
|
+
background-color: #fff;
|
|
540
|
+
text-align: left;
|
|
541
|
+
}
|
|
542
|
+
.lineTool li[data-v-58d1a12a] {
|
|
543
|
+
width: 30px;
|
|
544
|
+
height: 26px;
|
|
545
|
+
display: inline-block;
|
|
546
|
+
font-weight: bold;
|
|
547
|
+
text-align: center;
|
|
548
|
+
color: #1890ff;
|
|
549
|
+
}
|
|
550
|
+
.tool-drag a .inner[data-v-58d1a12a] {
|
|
551
|
+
color: #f00 !important;
|
|
552
|
+
}
|
|
553
|
+
.ant-layout-footer[data-v-58d1a12a] {
|
|
554
|
+
z-index: 10;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
#flowContainer[data-v-58d1a12a] {
|
|
558
|
+
width: 1000000px;
|
|
559
|
+
height: 1000000px;
|
|
560
|
+
position: absolute;
|
|
561
|
+
left: -500000px;
|
|
562
|
+
top: -500000px;
|
|
563
|
+
/* height: 1000000px;
|
|
564
|
+
width: 1000000px;
|
|
565
|
+
position: relative;
|
|
566
|
+
user-select: none;
|
|
567
|
+
left: -500000px;
|
|
568
|
+
top: -500000px; */
|
|
569
|
+
}
|
|
570
|
+
.labelClass[data-v-58d1a12a] {
|
|
571
|
+
padding: 0 3px;
|
|
572
|
+
font-size: 12px;
|
|
573
|
+
cursor: pointer;
|
|
574
|
+
-webkit-user-select: none;
|
|
575
|
+
-moz-user-select: none;
|
|
576
|
+
user-select: none;
|
|
577
|
+
color: #fff;
|
|
578
|
+
border-radius: 3px;
|
|
579
|
+
background: rgba(24, 144, 255, 0.6);
|
|
580
|
+
}
|
|
581
|
+
.loading[data-v-58d1a12a] {
|
|
582
|
+
height: 100%;
|
|
583
|
+
width: 100%;
|
|
584
|
+
display: flex;
|
|
585
|
+
align-items: center;
|
|
586
|
+
justify-content: center;
|
|
587
|
+
}
|
|
588
|
+
[data-v-58d1a12a] .labelClass {
|
|
589
|
+
background-color: #539dfa !important;
|
|
590
|
+
padding: 5px;
|
|
591
|
+
border-radius: 5px;
|
|
592
|
+
color: #fff;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
.svg-icon[data-v-d10df7e8] {
|
|
597
|
+
width: 1em;
|
|
598
|
+
height: 1em;
|
|
599
|
+
position: relative;
|
|
600
|
+
fill: currentColor;
|
|
601
|
+
vertical-align: -2px;
|
|
602
|
+
}
|
|
603
|
+
|
|
1
604
|
.is_required[data-v-32839555]::before {
|
|
2
605
|
content: "*";
|
|
3
606
|
color: #f56c6c;
|
|
@@ -1546,22 +2149,22 @@
|
|
|
1546
2149
|
}
|
|
1547
2150
|
|
|
1548
2151
|
|
|
1549
|
-
[data-v-
|
|
2152
|
+
[data-v-2722b9f8] .ant-popover-inner-content {
|
|
1550
2153
|
width: 190px;
|
|
1551
2154
|
}
|
|
1552
|
-
[data-v-
|
|
2155
|
+
[data-v-2722b9f8] .ant-form-item .ant-form-item-control-wrapper:first-child {
|
|
1553
2156
|
width: calc(100% - 0px) !important;
|
|
1554
2157
|
}
|
|
1555
|
-
[data-v-
|
|
2158
|
+
[data-v-2722b9f8] .ant-form-item-control {
|
|
1556
2159
|
height: 100%;
|
|
1557
2160
|
}
|
|
1558
2161
|
/***label对齐方式*/
|
|
1559
|
-
.custom_form_item .break[data-v-
|
|
2162
|
+
.custom_form_item .break[data-v-2722b9f8] {
|
|
1560
2163
|
white-space: normal;
|
|
1561
2164
|
word-break: break-all;
|
|
1562
2165
|
word-wrap: break-word;
|
|
1563
2166
|
}
|
|
1564
|
-
.custom_form_item .align-between[data-v-
|
|
2167
|
+
.custom_form_item .align-between[data-v-2722b9f8] {
|
|
1565
2168
|
white-space: normal;
|
|
1566
2169
|
word-break: break-all;
|
|
1567
2170
|
word-wrap: break-word;
|
|
@@ -1570,28 +2173,28 @@
|
|
|
1570
2173
|
text-align-last: justify;
|
|
1571
2174
|
width: 80%;
|
|
1572
2175
|
}
|
|
1573
|
-
.custom_form_item .align-middle[data-v-
|
|
2176
|
+
.custom_form_item .align-middle[data-v-2722b9f8] {
|
|
1574
2177
|
white-space: normal;
|
|
1575
2178
|
word-break: break-all;
|
|
1576
2179
|
word-wrap: break-word;
|
|
1577
2180
|
text-align: center;
|
|
1578
2181
|
width: 80%;
|
|
1579
2182
|
}
|
|
1580
|
-
.custom_form_item .align-left[data-v-
|
|
2183
|
+
.custom_form_item .align-left[data-v-2722b9f8] {
|
|
1581
2184
|
white-space: normal;
|
|
1582
2185
|
word-break: break-all;
|
|
1583
2186
|
word-wrap: break-word;
|
|
1584
2187
|
text-align: left;
|
|
1585
2188
|
width: 80%;
|
|
1586
2189
|
}
|
|
1587
|
-
.custom_form_item .align-right[data-v-
|
|
2190
|
+
.custom_form_item .align-right[data-v-2722b9f8] {
|
|
1588
2191
|
white-space: normal;
|
|
1589
2192
|
word-break: break-all;
|
|
1590
2193
|
word-wrap: break-word;
|
|
1591
2194
|
text-align: right;
|
|
1592
2195
|
width: 80%;
|
|
1593
2196
|
}
|
|
1594
|
-
.custom_form_item .align-center[data-v-
|
|
2197
|
+
.custom_form_item .align-center[data-v-2722b9f8] {
|
|
1595
2198
|
white-space: normal;
|
|
1596
2199
|
word-break: break-all;
|
|
1597
2200
|
word-wrap: break-word;
|
|
@@ -1600,51 +2203,51 @@
|
|
|
1600
2203
|
}
|
|
1601
2204
|
/***label对齐方式 */
|
|
1602
2205
|
/*****公共boder ****/
|
|
1603
|
-
[data-v-
|
|
2206
|
+
[data-v-2722b9f8] .ant-form-item-control-wrapper {
|
|
1604
2207
|
border-bottom: 1px solid #000;
|
|
1605
2208
|
}
|
|
1606
|
-
[data-v-
|
|
2209
|
+
[data-v-2722b9f8] .ant-form-item-label {
|
|
1607
2210
|
border-bottom: 1px solid #000;
|
|
1608
2211
|
}
|
|
1609
|
-
.verify-right[data-v-
|
|
2212
|
+
.verify-right[data-v-2722b9f8] {
|
|
1610
2213
|
border-right: 1px solid #000;
|
|
1611
2214
|
}
|
|
1612
|
-
.custom_form_item_special[data-v-
|
|
2215
|
+
.custom_form_item_special[data-v-2722b9f8] .ant-form-item-children {
|
|
1613
2216
|
height: 100%;
|
|
1614
2217
|
}
|
|
1615
2218
|
/*****公共boder ****/
|
|
1616
|
-
.custom_form_item_special[data-v-
|
|
2219
|
+
.custom_form_item_special[data-v-2722b9f8] .ant-form-item .ant-form-item-control-wrapper:first-child .ant-form-item-control {
|
|
1617
2220
|
width: 100%;
|
|
1618
2221
|
}
|
|
1619
|
-
.verify-no-border input[data-v-
|
|
1620
|
-
.verify-no-border textarea[data-v-
|
|
2222
|
+
.verify-no-border input[data-v-2722b9f8],
|
|
2223
|
+
.verify-no-border textarea[data-v-2722b9f8] {
|
|
1621
2224
|
display: block;
|
|
1622
2225
|
background: none;
|
|
1623
2226
|
height: 90%;
|
|
1624
2227
|
width: 98%;
|
|
1625
2228
|
margin: 0 auto;
|
|
1626
2229
|
}
|
|
1627
|
-
.verify-no-border input[data-v-
|
|
1628
|
-
.verify-no-border textarea[data-v-
|
|
2230
|
+
.verify-no-border input[data-v-2722b9f8]:disabled,
|
|
2231
|
+
.verify-no-border textarea[data-v-2722b9f8]:disabled {
|
|
1629
2232
|
background: none !important;
|
|
1630
2233
|
color: #333;
|
|
1631
2234
|
}
|
|
1632
|
-
.verify[data-v-
|
|
2235
|
+
.verify[data-v-2722b9f8] {
|
|
1633
2236
|
position: relative;
|
|
1634
2237
|
}
|
|
1635
|
-
.verify .inner-form-item[data-v-
|
|
2238
|
+
.verify .inner-form-item[data-v-2722b9f8] .ant-form-item-control-wrapper {
|
|
1636
2239
|
border-bottom: none !important;
|
|
1637
2240
|
}
|
|
1638
|
-
.verify .inner-form-item[data-v-
|
|
2241
|
+
.verify .inner-form-item[data-v-2722b9f8] .ant-form-item-children {
|
|
1639
2242
|
display: flex;
|
|
1640
2243
|
align-items: center;
|
|
1641
2244
|
justify-content: center;
|
|
1642
2245
|
width: 100%;
|
|
1643
2246
|
}
|
|
1644
|
-
.verify .inner-form-item[data-v-
|
|
2247
|
+
.verify .inner-form-item[data-v-2722b9f8] .ant-form-item-children .textarea-wrapper {
|
|
1645
2248
|
width: 100%;
|
|
1646
2249
|
}
|
|
1647
|
-
.verify .verify-left[data-v-
|
|
2250
|
+
.verify .verify-left[data-v-2722b9f8] {
|
|
1648
2251
|
position: absolute;
|
|
1649
2252
|
left: 0;
|
|
1650
2253
|
top: 0;
|
|
@@ -1655,56 +2258,56 @@
|
|
|
1655
2258
|
-moz-text-align-last: justify;
|
|
1656
2259
|
text-align-last: justify;
|
|
1657
2260
|
}
|
|
1658
|
-
.verify .verify-right[data-v-
|
|
2261
|
+
.verify .verify-right[data-v-2722b9f8] {
|
|
1659
2262
|
height: 100%;
|
|
1660
2263
|
width: 100%;
|
|
1661
2264
|
}
|
|
1662
|
-
.verify .verify-right .verify-text[data-v-
|
|
2265
|
+
.verify .verify-right .verify-text[data-v-2722b9f8] {
|
|
1663
2266
|
position: relative;
|
|
1664
2267
|
height: 70%;
|
|
1665
2268
|
padding-top: 5px;
|
|
1666
2269
|
border-bottom: 1px solid #e6e6e6;
|
|
1667
2270
|
}
|
|
1668
|
-
.verify .verify-right .verify-text .verify-btn[data-v-
|
|
2271
|
+
.verify .verify-right .verify-text .verify-btn[data-v-2722b9f8] {
|
|
1669
2272
|
position: absolute;
|
|
1670
2273
|
right: 3%;
|
|
1671
2274
|
bottom: 2%;
|
|
1672
2275
|
z-index: 10;
|
|
1673
2276
|
}
|
|
1674
|
-
.verify .verify-right .verify-text span[data-v-
|
|
2277
|
+
.verify .verify-right .verify-text span[data-v-2722b9f8] {
|
|
1675
2278
|
display: block;
|
|
1676
2279
|
border: none;
|
|
1677
2280
|
height: 100%;
|
|
1678
2281
|
}
|
|
1679
|
-
.verify .verify-right .verify-seal[data-v-
|
|
2282
|
+
.verify .verify-right .verify-seal[data-v-2722b9f8] {
|
|
1680
2283
|
position: absolute;
|
|
1681
2284
|
width: 35mm;
|
|
1682
2285
|
height: 35mm;
|
|
1683
2286
|
z-index: 9 !important;
|
|
1684
2287
|
}
|
|
1685
|
-
.verify .verify-right .verify-seal img[data-v-
|
|
2288
|
+
.verify .verify-right .verify-seal img[data-v-2722b9f8] {
|
|
1686
2289
|
width: 35mm;
|
|
1687
2290
|
height: 35mm;
|
|
1688
2291
|
}
|
|
1689
|
-
.verify .verify-right .verify-icon[data-v-
|
|
2292
|
+
.verify .verify-right .verify-icon[data-v-2722b9f8] {
|
|
1690
2293
|
position: absolute;
|
|
1691
2294
|
right: 3%;
|
|
1692
2295
|
top: 3%;
|
|
1693
2296
|
z-index: 20;
|
|
1694
2297
|
cursor: pointer;
|
|
1695
2298
|
}
|
|
1696
|
-
.verify .verify-option[data-v-
|
|
2299
|
+
.verify .verify-option[data-v-2722b9f8] {
|
|
1697
2300
|
display: flex;
|
|
1698
2301
|
height: 30%;
|
|
1699
2302
|
}
|
|
1700
|
-
.verify .verify-option > div[data-v-
|
|
2303
|
+
.verify .verify-option > div[data-v-2722b9f8] {
|
|
1701
2304
|
flex: 1;
|
|
1702
2305
|
border-right: 1px solid #e6e6e6;
|
|
1703
2306
|
display: flex;
|
|
1704
2307
|
justify-content: space-between;
|
|
1705
2308
|
align-items: center;
|
|
1706
2309
|
}
|
|
1707
|
-
.verify .verify-option > div span[data-v-
|
|
2310
|
+
.verify .verify-option > div span[data-v-2722b9f8] {
|
|
1708
2311
|
text-align: center;
|
|
1709
2312
|
flex: 2;
|
|
1710
2313
|
border-right: 1px solid #e6e6e6;
|
|
@@ -1713,16 +2316,16 @@
|
|
|
1713
2316
|
align-items: center;
|
|
1714
2317
|
justify-content: center;
|
|
1715
2318
|
}
|
|
1716
|
-
.verify .verify-option > div span + span[data-v-
|
|
1717
|
-
.verify .verify-option > div span + .inner-form-item[data-v-
|
|
2319
|
+
.verify .verify-option > div span + span[data-v-2722b9f8],
|
|
2320
|
+
.verify .verify-option > div span + .inner-form-item[data-v-2722b9f8] {
|
|
1718
2321
|
border-right: none;
|
|
1719
2322
|
flex: 4;
|
|
1720
2323
|
}
|
|
1721
|
-
.verify .verify-option > div:nth-child(2) > span[data-v-
|
|
2324
|
+
.verify .verify-option > div:nth-child(2) > span[data-v-2722b9f8]:last-child {
|
|
1722
2325
|
box-sizing: border-box;
|
|
1723
2326
|
padding: 1px;
|
|
1724
2327
|
}
|
|
1725
|
-
.verify .verify-option div[data-v-
|
|
2328
|
+
.verify .verify-option div[data-v-2722b9f8]:last-child {
|
|
1726
2329
|
border-right: none;
|
|
1727
2330
|
}
|
|
1728
2331
|
|
|
@@ -3460,46 +4063,46 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3460
4063
|
align-items: center;
|
|
3461
4064
|
}
|
|
3462
4065
|
|
|
3463
|
-
.t-border[data-v-
|
|
4066
|
+
.t-border[data-v-4a66ff73] {
|
|
3464
4067
|
border-right: 1px solid #333;
|
|
3465
4068
|
border-bottom: 1px solid #333;
|
|
3466
4069
|
}
|
|
3467
|
-
[data-v-
|
|
4070
|
+
[data-v-4a66ff73] * {
|
|
3468
4071
|
font-size: var(--paperFontSize);
|
|
3469
4072
|
}
|
|
3470
|
-
[data-v-
|
|
4073
|
+
[data-v-4a66ff73] .custom_form_item {
|
|
3471
4074
|
height: -moz-fit-content;
|
|
3472
4075
|
height: fit-content;
|
|
3473
4076
|
}
|
|
3474
|
-
.save-pdf[data-v-
|
|
4077
|
+
.save-pdf[data-v-4a66ff73] .ant-input {
|
|
3475
4078
|
border: none !important;
|
|
3476
4079
|
}
|
|
3477
|
-
.save-pdf[data-v-
|
|
4080
|
+
.save-pdf[data-v-4a66ff73] .ant-select-selection {
|
|
3478
4081
|
border: none !important;
|
|
3479
4082
|
}
|
|
3480
|
-
.save-pdf[data-v-
|
|
4083
|
+
.save-pdf[data-v-4a66ff73] .ant-select-arrow svg {
|
|
3481
4084
|
display: none;
|
|
3482
4085
|
}
|
|
3483
|
-
.save-pdf[data-v-
|
|
4086
|
+
.save-pdf[data-v-4a66ff73] .ant-upload.ant-upload-select-picture-card {
|
|
3484
4087
|
display: none;
|
|
3485
4088
|
}
|
|
3486
|
-
.save-pdf[data-v-
|
|
4089
|
+
.save-pdf[data-v-4a66ff73] .anticon svg {
|
|
3487
4090
|
display: none;
|
|
3488
4091
|
}
|
|
3489
|
-
.save-pdf[data-v-
|
|
4092
|
+
.save-pdf[data-v-4a66ff73] .ant-time-picker-input {
|
|
3490
4093
|
border: none !important;
|
|
3491
4094
|
}
|
|
3492
|
-
.save-pdf[data-v-
|
|
4095
|
+
.save-pdf[data-v-4a66ff73] .ant-upload.ant-upload-select {
|
|
3493
4096
|
display: none;
|
|
3494
4097
|
}
|
|
3495
4098
|
/**打印非固定高度标签 高度不确定bug**/
|
|
3496
|
-
.computed-wrap[data-v-
|
|
4099
|
+
.computed-wrap[data-v-4a66ff73] {
|
|
3497
4100
|
background: #f5f5f5;
|
|
3498
4101
|
}
|
|
3499
|
-
.computed-wrap .item[data-v-
|
|
4102
|
+
.computed-wrap .item[data-v-4a66ff73] {
|
|
3500
4103
|
display: flex;
|
|
3501
4104
|
}
|
|
3502
|
-
.computed-wrap .item > div[data-v-
|
|
4105
|
+
.computed-wrap .item > div[data-v-4a66ff73] {
|
|
3503
4106
|
height: 35px;
|
|
3504
4107
|
line-height: 35px;
|
|
3505
4108
|
flex: 1;
|
|
@@ -3507,129 +4110,129 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3507
4110
|
border-bottom: 1px solid #000;
|
|
3508
4111
|
text-align: center;
|
|
3509
4112
|
}
|
|
3510
|
-
.computed-wrap .item > div + div[data-v-
|
|
4113
|
+
.computed-wrap .item > div + div[data-v-4a66ff73] {
|
|
3511
4114
|
flex: 2;
|
|
3512
4115
|
}
|
|
3513
|
-
.layout .paper[data-v-
|
|
4116
|
+
.layout .paper[data-v-4a66ff73] {
|
|
3514
4117
|
position: relative;
|
|
3515
4118
|
}
|
|
3516
|
-
.layout .paper .form-title[data-v-
|
|
4119
|
+
.layout .paper .form-title[data-v-4a66ff73] {
|
|
3517
4120
|
text-align: center;
|
|
3518
4121
|
font-weight: 600;
|
|
3519
4122
|
font-size: 16px;
|
|
3520
4123
|
height: 40px;
|
|
3521
4124
|
}
|
|
3522
|
-
.row-item[data-v-
|
|
4125
|
+
.row-item[data-v-4a66ff73] {
|
|
3523
4126
|
height: -moz-fit-content;
|
|
3524
4127
|
height: fit-content;
|
|
3525
4128
|
/**打印非固定高度标签 高度不确定bug**/
|
|
3526
4129
|
}
|
|
3527
|
-
.no-row-item[data-v-
|
|
4130
|
+
.no-row-item[data-v-4a66ff73] {
|
|
3528
4131
|
border-right: none;
|
|
3529
4132
|
border-bottom: none;
|
|
3530
4133
|
}
|
|
3531
4134
|
/****page边框内的 ***/
|
|
3532
|
-
.page-border[data-v-
|
|
4135
|
+
.page-border[data-v-4a66ff73] {
|
|
3533
4136
|
background: #fff;
|
|
3534
4137
|
box-sizing: border-box;
|
|
3535
4138
|
}
|
|
3536
|
-
.page-border .row-item[data-v-
|
|
4139
|
+
.page-border .row-item[data-v-4a66ff73]:first-child {
|
|
3537
4140
|
border-top: 1px solid #000;
|
|
3538
4141
|
}
|
|
3539
|
-
.page-border .row-item[data-v-
|
|
4142
|
+
.page-border .row-item[data-v-4a66ff73] {
|
|
3540
4143
|
border-left: 1px solid #000;
|
|
3541
4144
|
}
|
|
3542
|
-
.page-border .item-bottom[data-v-
|
|
4145
|
+
.page-border .item-bottom[data-v-4a66ff73] {
|
|
3543
4146
|
border-bottom: 1px solid #000;
|
|
3544
4147
|
}
|
|
3545
|
-
.page-border .row-item[data-v-
|
|
4148
|
+
.page-border .row-item[data-v-4a66ff73]:not(:last-child) {
|
|
3546
4149
|
position: relative;
|
|
3547
4150
|
}
|
|
3548
|
-
.page-border li.sortable-chosen[data-v-
|
|
4151
|
+
.page-border li.sortable-chosen[data-v-4a66ff73] {
|
|
3549
4152
|
height: 2px !important;
|
|
3550
4153
|
overflow: hidden !important;
|
|
3551
4154
|
background: red !important;
|
|
3552
4155
|
}
|
|
3553
|
-
.page-border .ant-time-picker-panel[data-v-
|
|
4156
|
+
.page-border .ant-time-picker-panel[data-v-4a66ff73] {
|
|
3554
4157
|
z-index: 200000 !important;
|
|
3555
4158
|
}
|
|
3556
|
-
.page-border .ant-calendar-picker-container[data-v-
|
|
4159
|
+
.page-border .ant-calendar-picker-container[data-v-4a66ff73] {
|
|
3557
4160
|
z-index: 200000 !important;
|
|
3558
4161
|
}
|
|
3559
|
-
[data-v-
|
|
4162
|
+
[data-v-4a66ff73] .ant-time-picker-panel {
|
|
3560
4163
|
z-index: 9999 !important;
|
|
3561
4164
|
}
|
|
3562
|
-
.ant-calendar-picker-container[data-v-
|
|
4165
|
+
.ant-calendar-picker-container[data-v-4a66ff73] {
|
|
3563
4166
|
z-index: 200000 !important;
|
|
3564
4167
|
}
|
|
3565
|
-
[data-v-
|
|
4168
|
+
[data-v-4a66ff73] .ant-form-item-children {
|
|
3566
4169
|
display: block;
|
|
3567
4170
|
}
|
|
3568
|
-
[data-v-
|
|
4171
|
+
[data-v-4a66ff73] .ant-form-item {
|
|
3569
4172
|
width: 100%;
|
|
3570
4173
|
height: 100%;
|
|
3571
4174
|
margin-bottom: 0;
|
|
3572
4175
|
display: flex;
|
|
3573
4176
|
}
|
|
3574
|
-
[data-v-
|
|
4177
|
+
[data-v-4a66ff73] .ant-form-item .is_required::before {
|
|
3575
4178
|
content: "*";
|
|
3576
4179
|
color: #f56c6c;
|
|
3577
4180
|
margin-right: 4px;
|
|
3578
4181
|
}
|
|
3579
|
-
[data-v-
|
|
4182
|
+
[data-v-4a66ff73] .ant-form-item .ant-form-item-label {
|
|
3580
4183
|
border-right: 1px solid #000;
|
|
3581
4184
|
}
|
|
3582
|
-
[data-v-
|
|
4185
|
+
[data-v-4a66ff73] .ant-form-item .ant-form-item-label label {
|
|
3583
4186
|
display: flex;
|
|
3584
4187
|
justify-content: center;
|
|
3585
4188
|
align-items: center;
|
|
3586
4189
|
height: 100%;
|
|
3587
4190
|
}
|
|
3588
|
-
[data-v-
|
|
4191
|
+
[data-v-4a66ff73] .ant-form-item .ant-form-item-label > label.ant-form-item-no-colon::after {
|
|
3589
4192
|
display: none;
|
|
3590
4193
|
}
|
|
3591
|
-
[data-v-
|
|
4194
|
+
[data-v-4a66ff73] .ant-form-item .ant-form-item-control-wrapper {
|
|
3592
4195
|
display: flex;
|
|
3593
4196
|
align-items: center;
|
|
3594
4197
|
text-align: left;
|
|
3595
4198
|
}
|
|
3596
|
-
[data-v-
|
|
4199
|
+
[data-v-4a66ff73] .ant-form-item .ant-form-item-control {
|
|
3597
4200
|
width: 98%;
|
|
3598
4201
|
margin: 0 auto;
|
|
3599
4202
|
}
|
|
3600
|
-
[data-v-
|
|
4203
|
+
[data-v-4a66ff73] .ant-form-item .is_required::before {
|
|
3601
4204
|
content: "*";
|
|
3602
4205
|
color: #f56c6c;
|
|
3603
4206
|
margin-right: 4px;
|
|
3604
4207
|
}
|
|
3605
|
-
.row-table[data-v-
|
|
4208
|
+
.row-table[data-v-4a66ff73] {
|
|
3606
4209
|
display: flex;
|
|
3607
4210
|
}
|
|
3608
|
-
.row-table[data-v-
|
|
3609
|
-
.row-table[data-v-
|
|
4211
|
+
.row-table[data-v-4a66ff73] .ant-spin-container,
|
|
4212
|
+
.row-table[data-v-4a66ff73] {
|
|
3610
4213
|
display: flex;
|
|
3611
4214
|
width: 100%;
|
|
3612
4215
|
}
|
|
3613
|
-
.row-table[data-v-
|
|
3614
|
-
.row-table .table-left[data-v-
|
|
4216
|
+
.row-table[data-v-4a66ff73] .ant-spin-container .table-left,
|
|
4217
|
+
.row-table .table-left[data-v-4a66ff73] {
|
|
3615
4218
|
width: 100px;
|
|
3616
4219
|
text-align: center;
|
|
3617
4220
|
border-right: 1px solid #333;
|
|
3618
4221
|
border-bottom: 1px solid #333;
|
|
3619
4222
|
position: relative;
|
|
3620
4223
|
}
|
|
3621
|
-
.row-table[data-v-
|
|
3622
|
-
.row-table .table-left p[data-v-
|
|
4224
|
+
.row-table[data-v-4a66ff73] .ant-spin-container .table-left p,
|
|
4225
|
+
.row-table .table-left p[data-v-4a66ff73] {
|
|
3623
4226
|
position: absolute;
|
|
3624
4227
|
top: 50%;
|
|
3625
4228
|
left: 50%;
|
|
3626
4229
|
transform: translate(-50%, -50%);
|
|
3627
4230
|
}
|
|
3628
|
-
.row-table[data-v-
|
|
3629
|
-
.row-table .table-right[data-v-
|
|
4231
|
+
.row-table[data-v-4a66ff73] .ant-spin-container .table-right,
|
|
4232
|
+
.row-table .table-right[data-v-4a66ff73] {
|
|
3630
4233
|
flex: 1;
|
|
3631
4234
|
}
|
|
3632
|
-
.table-content[data-v-
|
|
4235
|
+
.table-content[data-v-4a66ff73] {
|
|
3633
4236
|
width: 100%;
|
|
3634
4237
|
height: 40px;
|
|
3635
4238
|
line-height: 40px;
|
|
@@ -3638,11 +4241,11 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3638
4241
|
border-bottom: 1px solid #333;
|
|
3639
4242
|
border-right: 1px solid #333;
|
|
3640
4243
|
}
|
|
3641
|
-
.sub-table-col[data-v-
|
|
4244
|
+
.sub-table-col[data-v-4a66ff73] {
|
|
3642
4245
|
display: flex;
|
|
3643
4246
|
box-sizing: border-box;
|
|
3644
4247
|
}
|
|
3645
|
-
.sub-table-col > span[data-v-
|
|
4248
|
+
.sub-table-col > span[data-v-4a66ff73] {
|
|
3646
4249
|
flex: 2;
|
|
3647
4250
|
border-bottom: 1px solid #000;
|
|
3648
4251
|
border-right: 1px solid #000;
|
|
@@ -3650,22 +4253,22 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3650
4253
|
line-height: 40px;
|
|
3651
4254
|
text-align: center;
|
|
3652
4255
|
}
|
|
3653
|
-
.sub-table-col > .last-one[data-v-
|
|
4256
|
+
.sub-table-col > .last-one[data-v-4a66ff73] {
|
|
3654
4257
|
width: 87px;
|
|
3655
4258
|
flex: 0 0 87px;
|
|
3656
4259
|
border-right: 1px solid #333;
|
|
3657
4260
|
border-bottom: 1px solid #333;
|
|
3658
4261
|
}
|
|
3659
|
-
.sub-table-col-no-border > span[data-v-
|
|
4262
|
+
.sub-table-col-no-border > span[data-v-4a66ff73] {
|
|
3660
4263
|
border: none;
|
|
3661
4264
|
height: auto;
|
|
3662
4265
|
width: 0;
|
|
3663
4266
|
}
|
|
3664
|
-
.sub-table-col-no-border > .sub-table-title[data-v-
|
|
3665
|
-
.sub-table-col-no-border > .sub-table-item[data-v-
|
|
4267
|
+
.sub-table-col-no-border > .sub-table-title[data-v-4a66ff73]:last-child,
|
|
4268
|
+
.sub-table-col-no-border > .sub-table-item[data-v-4a66ff73]:last-child {
|
|
3666
4269
|
border-right: none !important;
|
|
3667
4270
|
}
|
|
3668
|
-
.sub-table-col-no-border > .last-one[data-v-
|
|
4271
|
+
.sub-table-col-no-border > .last-one[data-v-4a66ff73] {
|
|
3669
4272
|
width: 87px;
|
|
3670
4273
|
flex: 0 0 87px;
|
|
3671
4274
|
display: flex;
|
|
@@ -3673,33 +4276,33 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3673
4276
|
align-items: center;
|
|
3674
4277
|
}
|
|
3675
4278
|
/*****无border *****/
|
|
3676
|
-
.no-border .page-border[data-v-
|
|
4279
|
+
.no-border .page-border[data-v-4a66ff73] {
|
|
3677
4280
|
border: none;
|
|
3678
4281
|
}
|
|
3679
|
-
.no-border .page-border .row-item[data-v-
|
|
4282
|
+
.no-border .page-border .row-item[data-v-4a66ff73]:not(:last-child) {
|
|
3680
4283
|
border: none;
|
|
3681
4284
|
}
|
|
3682
|
-
.no-border .page-border[data-v-
|
|
4285
|
+
.no-border .page-border[data-v-4a66ff73] .ant-form-item .ant-form-item-label {
|
|
3683
4286
|
border: none;
|
|
3684
4287
|
}
|
|
3685
|
-
.table_border[data-v-
|
|
4288
|
+
.table_border[data-v-4a66ff73] {
|
|
3686
4289
|
border-bottom: 0;
|
|
3687
4290
|
border-right: 0;
|
|
3688
4291
|
}
|
|
3689
4292
|
/*****无border *****/
|
|
3690
|
-
[data-v-
|
|
4293
|
+
[data-v-4a66ff73] .ant-form-item-children > div > p,[data-v-4a66ff73] .ant-form-item-children > div > h1,[data-v-4a66ff73] .ant-form-item-children > div > h2,[data-v-4a66ff73] .ant-form-item-children > div > h3,[data-v-4a66ff73] .ant-form-item-children > div > h4,[data-v-4a66ff73] .ant-form-item-children > div > h5,[data-v-4a66ff73] .ant-form-item-children > div > table /deep/ .ant-form-item-children > div > pre {
|
|
3691
4294
|
margin: 10px 0;
|
|
3692
4295
|
line-height: 1.5;
|
|
3693
4296
|
}
|
|
3694
|
-
[data-v-
|
|
4297
|
+
[data-v-4a66ff73] .ant-spin-dot {
|
|
3695
4298
|
font-size: 20px !important;
|
|
3696
4299
|
}
|
|
3697
|
-
.form_skeleton[data-v-
|
|
4300
|
+
.form_skeleton[data-v-4a66ff73] {
|
|
3698
4301
|
display: block;
|
|
3699
4302
|
width: 700px;
|
|
3700
4303
|
margin: 55px auto;
|
|
3701
4304
|
}
|
|
3702
|
-
.form_skeleton[data-v-
|
|
4305
|
+
.form_skeleton[data-v-4a66ff73] .ant-skeleton-title {
|
|
3703
4306
|
margin: 0 auto;
|
|
3704
4307
|
}
|
|
3705
4308
|
|
|
@@ -3834,97 +4437,97 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3834
4437
|
opacity: 0.6;
|
|
3835
4438
|
}
|
|
3836
4439
|
|
|
3837
|
-
.paper[data-v-
|
|
4440
|
+
.paper[data-v-e75cd372] * {
|
|
3838
4441
|
font-size: var(--paperFontSize);
|
|
3839
4442
|
}
|
|
3840
|
-
.paper .form-title[data-v-
|
|
4443
|
+
.paper .form-title[data-v-e75cd372] {
|
|
3841
4444
|
text-align: center;
|
|
3842
4445
|
font-weight: 600;
|
|
3843
4446
|
font-size: 16px;
|
|
3844
4447
|
height: 40px;
|
|
3845
4448
|
}
|
|
3846
|
-
[data-v-
|
|
4449
|
+
[data-v-e75cd372] .vue-grid-layout {
|
|
3847
4450
|
z-index: 2;
|
|
3848
4451
|
}
|
|
3849
|
-
[data-v-
|
|
4452
|
+
[data-v-e75cd372] .vue-grid-item {
|
|
3850
4453
|
border: 1px dashed #ccc;
|
|
3851
4454
|
box-sizing: border-box;
|
|
3852
4455
|
background-color: #fff;
|
|
3853
4456
|
}
|
|
3854
|
-
[data-v-
|
|
4457
|
+
[data-v-e75cd372] .ant-form-item {
|
|
3855
4458
|
width: 100%;
|
|
3856
4459
|
height: 100%;
|
|
3857
4460
|
margin-bottom: 0;
|
|
3858
4461
|
}
|
|
3859
|
-
[data-v-
|
|
4462
|
+
[data-v-e75cd372] .ant-form-item .ant-form-item-label {
|
|
3860
4463
|
height: 100%;
|
|
3861
4464
|
position: absolute;
|
|
3862
4465
|
left: 0;
|
|
3863
4466
|
top: 0;
|
|
3864
4467
|
border-right: 1px solid var(--designBorderColor);
|
|
3865
4468
|
}
|
|
3866
|
-
[data-v-
|
|
4469
|
+
[data-v-e75cd372] .ant-form-item .ant-form-item-label label {
|
|
3867
4470
|
display: flex;
|
|
3868
4471
|
justify-content: center;
|
|
3869
4472
|
align-items: center;
|
|
3870
4473
|
height: 100%;
|
|
3871
4474
|
}
|
|
3872
|
-
[data-v-
|
|
4475
|
+
[data-v-e75cd372] .ant-form-item .ant-form-item-label > label.ant-form-item-no-colon::after {
|
|
3873
4476
|
display: none;
|
|
3874
4477
|
}
|
|
3875
|
-
[data-v-
|
|
4478
|
+
[data-v-e75cd372] .ant-form-item .ant-form-item-control-wrapper {
|
|
3876
4479
|
height: 100%;
|
|
3877
4480
|
float: right;
|
|
3878
4481
|
display: flex;
|
|
3879
4482
|
align-items: center;
|
|
3880
4483
|
}
|
|
3881
|
-
[data-v-
|
|
4484
|
+
[data-v-e75cd372] .ant-form-item .ant-form-item-control {
|
|
3882
4485
|
width: 98%;
|
|
3883
4486
|
margin: 0 auto;
|
|
3884
4487
|
}
|
|
3885
|
-
.is_required[data-v-
|
|
4488
|
+
.is_required[data-v-e75cd372]::before {
|
|
3886
4489
|
content: "*";
|
|
3887
4490
|
color: #f56c6c;
|
|
3888
4491
|
margin-right: 4px;
|
|
3889
4492
|
}
|
|
3890
|
-
.widget-form-list[data-v-
|
|
4493
|
+
.widget-form-list[data-v-e75cd372] {
|
|
3891
4494
|
background: #fff;
|
|
3892
4495
|
box-sizing: border-box;
|
|
3893
4496
|
}
|
|
3894
|
-
.widget-form-list .row-item[data-v-
|
|
4497
|
+
.widget-form-list .row-item[data-v-e75cd372]:first-child {
|
|
3895
4498
|
border-top: 1px solid var(--designBorderColor);
|
|
3896
4499
|
}
|
|
3897
|
-
.widget-form-list .row-item[data-v-
|
|
4500
|
+
.widget-form-list .row-item[data-v-e75cd372] {
|
|
3898
4501
|
border-bottom: 1px solid var(--designBorderColor);
|
|
3899
4502
|
}
|
|
3900
|
-
.widget-form-list .row-item[data-v-
|
|
4503
|
+
.widget-form-list .row-item[data-v-e75cd372] {
|
|
3901
4504
|
border-right: 1px solid var(--designBorderColor);
|
|
3902
4505
|
border-left: 1px solid var(--designBorderColor);
|
|
3903
4506
|
}
|
|
3904
|
-
.widget-form-list .item-bottom[data-v-
|
|
4507
|
+
.widget-form-list .item-bottom[data-v-e75cd372] {
|
|
3905
4508
|
border-bottom: 1px solid var(--designBorderColor);
|
|
3906
4509
|
}
|
|
3907
|
-
.widget-form-list .no-row-item[data-v-
|
|
4510
|
+
.widget-form-list .no-row-item[data-v-e75cd372] {
|
|
3908
4511
|
border-right: none;
|
|
3909
4512
|
border-bottom: none !important;
|
|
3910
4513
|
}
|
|
3911
|
-
.widget-form-list .no-row-item .widget-form-list[data-v-
|
|
4514
|
+
.widget-form-list .no-row-item .widget-form-list[data-v-e75cd372] {
|
|
3912
4515
|
border-top: none !important;
|
|
3913
4516
|
border-right: none;
|
|
3914
4517
|
}
|
|
3915
|
-
.widget-form-list .widget-grid[data-v-
|
|
4518
|
+
.widget-form-list .widget-grid[data-v-e75cd372] {
|
|
3916
4519
|
background: #f4f6fc;
|
|
3917
4520
|
position: relative;
|
|
3918
4521
|
border-left: 5px solid transparent;
|
|
3919
4522
|
padding: 5px;
|
|
3920
4523
|
margin: 0 !important;
|
|
3921
4524
|
}
|
|
3922
|
-
.widget-form-list .widget-grid.active[data-v-
|
|
4525
|
+
.widget-form-list .widget-grid.active[data-v-e75cd372] {
|
|
3923
4526
|
outline: 2px solid #409eff;
|
|
3924
4527
|
border: 1px solid #409eff;
|
|
3925
4528
|
background: #b3d8ff;
|
|
3926
4529
|
}
|
|
3927
|
-
.widget-form-list .widget-grid .grid-background[data-v-
|
|
4530
|
+
.widget-form-list .widget-grid .grid-background[data-v-e75cd372] {
|
|
3928
4531
|
position: absolute;
|
|
3929
4532
|
z-index: 1;
|
|
3930
4533
|
top: 0;
|
|
@@ -3935,85 +4538,85 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3935
4538
|
height: 100%;
|
|
3936
4539
|
padding: 5px 5px 10px 5px;
|
|
3937
4540
|
}
|
|
3938
|
-
.widget-form-list .widget-grid .grid-background .rows[data-v-
|
|
4541
|
+
.widget-form-list .widget-grid .grid-background .rows[data-v-e75cd372] {
|
|
3939
4542
|
border-bottom: 1px dashed #ccc;
|
|
3940
4543
|
border-left: 1px dashed #ccc;
|
|
3941
4544
|
box-sizing: border-box;
|
|
3942
4545
|
overflow: hidden;
|
|
3943
4546
|
}
|
|
3944
|
-
.widget-form-list .widget-grid .grid-background .rows[data-v-
|
|
4547
|
+
.widget-form-list .widget-grid .grid-background .rows[data-v-e75cd372]:first-child {
|
|
3945
4548
|
border-top: 1px dashed #ccc;
|
|
3946
4549
|
}
|
|
3947
|
-
.widget-form-list .widget-grid .grid-background .rows .columns[data-v-
|
|
4550
|
+
.widget-form-list .widget-grid .grid-background .rows .columns[data-v-e75cd372] {
|
|
3948
4551
|
float: left;
|
|
3949
4552
|
border-right: 1px dashed #ccc;
|
|
3950
4553
|
min-height: 40px;
|
|
3951
4554
|
box-sizing: border-box;
|
|
3952
4555
|
}
|
|
3953
|
-
.widget-form-list .row_table[data-v-
|
|
4556
|
+
.widget-form-list .row_table[data-v-e75cd372] {
|
|
3954
4557
|
min-height: 60px;
|
|
3955
4558
|
position: relative;
|
|
3956
4559
|
}
|
|
3957
|
-
.widget-form-list li.sortable-chosen[data-v-
|
|
4560
|
+
.widget-form-list li.sortable-chosen[data-v-e75cd372] {
|
|
3958
4561
|
height: 2px !important;
|
|
3959
4562
|
overflow: hidden !important;
|
|
3960
4563
|
background: red !important;
|
|
3961
4564
|
}
|
|
3962
|
-
.widget-form-list .widget-col-list[data-v-
|
|
4565
|
+
.widget-form-list .widget-col-list[data-v-e75cd372] {
|
|
3963
4566
|
min-height: 50px;
|
|
3964
4567
|
border: 1px dashed #ccc;
|
|
3965
4568
|
background: #fff;
|
|
3966
4569
|
}
|
|
3967
|
-
.widget-form-list .widget-col[data-v-
|
|
4570
|
+
.widget-form-list .widget-col[data-v-e75cd372] {
|
|
3968
4571
|
padding-bottom: 0;
|
|
3969
4572
|
padding: 5px;
|
|
3970
4573
|
background-color: rgba(253, 246, 236, 0.3);
|
|
3971
4574
|
}
|
|
3972
|
-
.grid-lay-out-wrap .widget-col-list[data-v-
|
|
4575
|
+
.grid-lay-out-wrap .widget-col-list[data-v-e75cd372] {
|
|
3973
4576
|
width: 100%;
|
|
3974
4577
|
height: 100%;
|
|
3975
4578
|
min-height: 40px;
|
|
3976
4579
|
border: none;
|
|
3977
4580
|
}
|
|
3978
|
-
.widget-form-ocuupied[data-v-
|
|
4581
|
+
.widget-form-ocuupied[data-v-e75cd372] {
|
|
3979
4582
|
min-height: 540px;
|
|
3980
4583
|
border: none;
|
|
3981
4584
|
}
|
|
3982
|
-
.drag_table[data-v-
|
|
4585
|
+
.drag_table[data-v-e75cd372] {
|
|
3983
4586
|
width: calc(100% - 100px);
|
|
3984
4587
|
height: 100%;
|
|
3985
4588
|
display: flex;
|
|
3986
4589
|
overflow-y: scroll;
|
|
3987
4590
|
}
|
|
3988
|
-
.drag_table[data-v-
|
|
4591
|
+
.drag_table[data-v-e75cd372]::-webkit-scrollbar {
|
|
3989
4592
|
width: 3px;
|
|
3990
4593
|
height: 3px;
|
|
3991
4594
|
}
|
|
3992
|
-
.drag_table[data-v-
|
|
4595
|
+
.drag_table[data-v-e75cd372]::-webkit-scrollbar-track {
|
|
3993
4596
|
background: #fff;
|
|
3994
4597
|
border-radius: 2px;
|
|
3995
4598
|
}
|
|
3996
|
-
.drag_table[data-v-
|
|
4599
|
+
.drag_table[data-v-e75cd372]::-webkit-scrollbar-thumb {
|
|
3997
4600
|
background: #cdcdcd;
|
|
3998
4601
|
border-radius: 8px;
|
|
3999
4602
|
}
|
|
4000
|
-
.drag_table[data-v-
|
|
4603
|
+
.drag_table[data-v-e75cd372]::-webkit-scrollbar-thumb:hover {
|
|
4001
4604
|
background: #cdcdcd;
|
|
4002
4605
|
}
|
|
4003
|
-
.drag_table[data-v-
|
|
4606
|
+
.drag_table[data-v-e75cd372]::-webkit-scrollbar-corner {
|
|
4004
4607
|
background: #cdcdcd;
|
|
4005
4608
|
}
|
|
4006
|
-
.widget-form-ocuupied[data-v-
|
|
4609
|
+
.widget-form-ocuupied[data-v-e75cd372] {
|
|
4007
4610
|
min-height: 540px;
|
|
4008
4611
|
border: none;
|
|
4009
4612
|
}
|
|
4010
|
-
.table_label[data-v-
|
|
4613
|
+
.table_label[data-v-e75cd372] {
|
|
4011
4614
|
width: 100px;
|
|
4012
4615
|
min-width: 100px;
|
|
4013
4616
|
height: 100%;
|
|
4014
4617
|
text-align: right;
|
|
4015
4618
|
}
|
|
4016
|
-
.widget-view-model[data-v-
|
|
4619
|
+
.widget-view-model[data-v-e75cd372] {
|
|
4017
4620
|
position: absolute;
|
|
4018
4621
|
top: 0px;
|
|
4019
4622
|
right: 3px;
|
|
@@ -4023,12 +4626,12 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4023
4626
|
opacity: 0.6;
|
|
4024
4627
|
}
|
|
4025
4628
|
/**selectedWidget active*/
|
|
4026
|
-
[data-v-
|
|
4629
|
+
[data-v-e75cd372] .active {
|
|
4027
4630
|
outline: 2px solid #539dfa;
|
|
4028
4631
|
box-shadow: 0 0 5px #539dfa;
|
|
4029
4632
|
position: relative;
|
|
4030
4633
|
}
|
|
4031
|
-
[data-v-
|
|
4634
|
+
[data-v-e75cd372] .active .widget-view-drag {
|
|
4032
4635
|
position: absolute;
|
|
4033
4636
|
left: -2px;
|
|
4034
4637
|
top: -2px;
|
|
@@ -4042,7 +4645,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4042
4645
|
color: #ffffff;
|
|
4043
4646
|
cursor: move;
|
|
4044
4647
|
}
|
|
4045
|
-
[data-v-
|
|
4648
|
+
[data-v-e75cd372] .active .widget-view-action {
|
|
4046
4649
|
width: 70px;
|
|
4047
4650
|
position: absolute;
|
|
4048
4651
|
right: 0px;
|
|
@@ -4055,7 +4658,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4055
4658
|
background: transparent;
|
|
4056
4659
|
color: #fff;
|
|
4057
4660
|
}
|
|
4058
|
-
[data-v-
|
|
4661
|
+
[data-v-e75cd372] .active .widget-view-action .iconfont {
|
|
4059
4662
|
width: 25px;
|
|
4060
4663
|
height: 25px;
|
|
4061
4664
|
border-radius: 50%;
|
|
@@ -4065,17 +4668,17 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4065
4668
|
font-size: 14px;
|
|
4066
4669
|
justify-content: center;
|
|
4067
4670
|
}
|
|
4068
|
-
[data-v-
|
|
4671
|
+
[data-v-e75cd372] .active .widget-view-action .icon-icon_clone {
|
|
4069
4672
|
background: red;
|
|
4070
4673
|
}
|
|
4071
|
-
[data-v-
|
|
4674
|
+
[data-v-e75cd372] .active .widget-view-action .icon-trash {
|
|
4072
4675
|
margin-left: 20px;
|
|
4073
4676
|
}
|
|
4074
|
-
.widget-form-list .widget-view[data-v-
|
|
4677
|
+
.widget-form-list .widget-view[data-v-e75cd372] {
|
|
4075
4678
|
z-index: 8;
|
|
4076
4679
|
position: relative;
|
|
4077
4680
|
}
|
|
4078
|
-
.widget-form-list .widget-view .widget-view-action[data-v-
|
|
4681
|
+
.widget-form-list .widget-view .widget-view-action[data-v-e75cd372] {
|
|
4079
4682
|
position: absolute;
|
|
4080
4683
|
right: 0px;
|
|
4081
4684
|
bottom: 0;
|
|
@@ -4087,7 +4690,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4087
4690
|
background: transparent;
|
|
4088
4691
|
color: #fff;
|
|
4089
4692
|
}
|
|
4090
|
-
.widget-form-list .widget-view .widget-view-action .iconfont[data-v-
|
|
4693
|
+
.widget-form-list .widget-view .widget-view-action .iconfont[data-v-e75cd372] {
|
|
4091
4694
|
width: 25px;
|
|
4092
4695
|
height: 25px;
|
|
4093
4696
|
border-radius: 50%;
|
|
@@ -4097,13 +4700,13 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4097
4700
|
font-size: 14px;
|
|
4098
4701
|
justify-content: center;
|
|
4099
4702
|
}
|
|
4100
|
-
.widget-form-list .widget-view .widget-view-action .icon-icon_clone[data-v-
|
|
4703
|
+
.widget-form-list .widget-view .widget-view-action .icon-icon_clone[data-v-e75cd372] {
|
|
4101
4704
|
background: red;
|
|
4102
4705
|
}
|
|
4103
|
-
.widget-form-list .widget-view .widget-view-action .icon-trash[data-v-
|
|
4706
|
+
.widget-form-list .widget-view .widget-view-action .icon-trash[data-v-e75cd372] {
|
|
4104
4707
|
margin-left: 20px;
|
|
4105
4708
|
}
|
|
4106
|
-
.widget-form-list .widget-view .widget-view-drag[data-v-
|
|
4709
|
+
.widget-form-list .widget-view .widget-view-drag[data-v-e75cd372] {
|
|
4107
4710
|
position: absolute;
|
|
4108
4711
|
left: -2px;
|
|
4109
4712
|
top: -2px;
|
|
@@ -4113,30 +4716,30 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4113
4716
|
background: #409eff;
|
|
4114
4717
|
z-index: 9;
|
|
4115
4718
|
}
|
|
4116
|
-
.widget-form-list .widget-view .widget-view-drag i[data-v-
|
|
4719
|
+
.widget-form-list .widget-view .widget-view-drag i[data-v-e75cd372] {
|
|
4117
4720
|
font-size: 14px;
|
|
4118
4721
|
color: #fff;
|
|
4119
4722
|
margin: 0 5px;
|
|
4120
4723
|
cursor: move;
|
|
4121
4724
|
}
|
|
4122
4725
|
/*****无border *****/
|
|
4123
|
-
.no-border .widget-form-list[data-v-
|
|
4726
|
+
.no-border .widget-form-list[data-v-e75cd372] {
|
|
4124
4727
|
border: none;
|
|
4125
4728
|
}
|
|
4126
|
-
.no-border .widget-form-list .row-item[data-v-
|
|
4729
|
+
.no-border .widget-form-list .row-item[data-v-e75cd372]:not(:last-child) {
|
|
4127
4730
|
border: none;
|
|
4128
4731
|
}
|
|
4129
|
-
.no-border .widget-form-list[data-v-
|
|
4732
|
+
.no-border .widget-form-list[data-v-e75cd372] .ant-form-item .ant-form-item-label {
|
|
4130
4733
|
border: 0;
|
|
4131
4734
|
}
|
|
4132
4735
|
/*****无border *****/
|
|
4133
4736
|
/***label对齐方式 */
|
|
4134
|
-
[data-v-
|
|
4737
|
+
[data-v-e75cd372] .custom_form_item .break {
|
|
4135
4738
|
white-space: normal;
|
|
4136
4739
|
word-break: break-all;
|
|
4137
4740
|
word-wrap: break-word;
|
|
4138
4741
|
}
|
|
4139
|
-
[data-v-
|
|
4742
|
+
[data-v-e75cd372] .custom_form_item .align-between {
|
|
4140
4743
|
white-space: normal;
|
|
4141
4744
|
word-break: break-all;
|
|
4142
4745
|
word-wrap: break-word;
|
|
@@ -4145,28 +4748,28 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4145
4748
|
text-align-last: justify;
|
|
4146
4749
|
width: 80%;
|
|
4147
4750
|
}
|
|
4148
|
-
[data-v-
|
|
4751
|
+
[data-v-e75cd372] .custom_form_item .align-middle {
|
|
4149
4752
|
white-space: normal;
|
|
4150
4753
|
word-break: break-all;
|
|
4151
4754
|
word-wrap: break-word;
|
|
4152
4755
|
text-align: center;
|
|
4153
4756
|
width: 80%;
|
|
4154
4757
|
}
|
|
4155
|
-
[data-v-
|
|
4758
|
+
[data-v-e75cd372] .custom_form_item .align-left {
|
|
4156
4759
|
white-space: normal;
|
|
4157
4760
|
word-break: break-all;
|
|
4158
4761
|
word-wrap: break-word;
|
|
4159
4762
|
text-align: left;
|
|
4160
4763
|
width: 80%;
|
|
4161
4764
|
}
|
|
4162
|
-
[data-v-
|
|
4765
|
+
[data-v-e75cd372] .custom_form_item .align-right {
|
|
4163
4766
|
white-space: normal;
|
|
4164
4767
|
word-break: break-all;
|
|
4165
4768
|
word-wrap: break-word;
|
|
4166
4769
|
text-align: right;
|
|
4167
4770
|
width: 80%;
|
|
4168
4771
|
}
|
|
4169
|
-
[data-v-
|
|
4772
|
+
[data-v-e75cd372] .custom_form_item .align-center {
|
|
4170
4773
|
white-space: normal;
|
|
4171
4774
|
word-break: break-all;
|
|
4172
4775
|
word-wrap: break-word;
|
|
@@ -4194,262 +4797,17 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4194
4797
|
|
|
4195
4798
|
.cus-dialog-container .el-dialog__footer{margin:0 20px;padding:15px 0 16px;text-align:center;position:relative}.cus-dialog-container .el-dialog__footer .dialog-footer{display:block}.cus-dialog-container .el-dialog__footer .dialog-footer .circular{display:inline-block;vertical-align:middle;margin-right:5px;width:24px;height:24px}.cus-dialog-container .el-dialog__footer .dialog-footer .el-loading-text{display:inline-block;vertical-align:middle}.cus-dialog-container .el-dialog__footer .dialog-footer .el-loading-spinner{margin-top:-12px}
|
|
4196
4799
|
|
|
4197
|
-
.linkage_select-dropdown[data-v-70afff02] {
|
|
4198
|
-
cursor: pointer;
|
|
4199
|
-
padding: 8px 5px;
|
|
4200
|
-
border-radius: 4px;
|
|
4201
|
-
text-overflow: ellipsis;
|
|
4202
|
-
white-space: nowrap;
|
|
4203
|
-
overflow: hidden;
|
|
4204
|
-
}
|
|
4205
|
-
.linkage_select-dropdown[data-v-70afff02]:hover {
|
|
4206
|
-
background-color: #f5f6f8;
|
|
4207
|
-
}
|
|
4208
|
-
|
|
4209
|
-
.tags_input .ant-select-search__field__wrap {
|
|
4210
|
-
position: relative;
|
|
4211
|
-
padding-left: 8px;
|
|
4212
|
-
border: 1px solid #ccc;
|
|
4213
|
-
border-radius: 4px;
|
|
4214
|
-
}
|
|
4215
|
-
.tags_input .ant-select-search__field {
|
|
4216
|
-
min-width: 70px;
|
|
4217
|
-
}
|
|
4218
|
-
.tags_input .ant-select-search__field::-moz-placeholder {
|
|
4219
|
-
font-size: 12px;
|
|
4220
|
-
color: #ccc;
|
|
4221
|
-
}
|
|
4222
|
-
.tags_input .ant-select-search__field::placeholder {
|
|
4223
|
-
font-size: 12px;
|
|
4224
|
-
color: #ccc;
|
|
4225
|
-
}
|
|
4226
|
-
.tag_input_dropdown {
|
|
4227
|
-
display: none;
|
|
4228
|
-
}
|
|
4229
|
-
|
|
4230
4800
|
|
|
4231
|
-
[data-v-
|
|
4232
|
-
position: relative;
|
|
4233
|
-
margin: 0;
|
|
4234
|
-
padding: 4px 0;
|
|
4235
|
-
text-align: left;
|
|
4236
|
-
list-style-type: none;
|
|
4237
|
-
background-color: #fff;
|
|
4238
|
-
background-clip: padding-box;
|
|
4239
|
-
border-radius: 4px;
|
|
4240
|
-
outline: none;
|
|
4241
|
-
-webkit-transform: translate3d(0, 0, 0);
|
|
4242
|
-
}
|
|
4243
|
-
[data-v-61d00736] .ant-menu-item-group-title {
|
|
4244
|
-
padding: 5px 12px;
|
|
4245
|
-
color: rgba(0, 0, 0, 0.45);
|
|
4246
|
-
transition: all 0.3s;
|
|
4247
|
-
}
|
|
4248
|
-
[data-v-61d00736] .ant-menu-submenu-popup {
|
|
4249
|
-
position: absolute;
|
|
4250
|
-
z-index: 1050;
|
|
4251
|
-
}
|
|
4252
|
-
[data-v-61d00736] .ant-menu-submenu-popup > .ant--menu {
|
|
4253
|
-
transform-origin: 0 0;
|
|
4254
|
-
}
|
|
4255
|
-
[data-v-61d00736] .ant-menu-submenu-popup ul,[data-v-61d00736] .ant-menu-submenu-popup li {
|
|
4256
|
-
list-style: none;
|
|
4257
|
-
}
|
|
4258
|
-
[data-v-61d00736] .ant-menu-submenu-popup ul {
|
|
4259
|
-
margin-right: 0.3em;
|
|
4260
|
-
margin-left: 0.3em;
|
|
4261
|
-
padding: 0;
|
|
4262
|
-
}
|
|
4263
|
-
[data-v-61d00736] .ant-menu-item,[data-v-61d00736] .ant-menu-submenu-title {
|
|
4264
|
-
clear: both;
|
|
4265
|
-
margin: 0 !important;
|
|
4266
|
-
padding: 5px 12px;
|
|
4267
|
-
color: rgba(0, 0, 0, 0.65);
|
|
4268
|
-
font-weight: normal;
|
|
4269
|
-
font-size: 14px;
|
|
4270
|
-
line-height: 22px;
|
|
4271
|
-
white-space: nowrap;
|
|
4272
|
-
cursor: pointer;
|
|
4273
|
-
transition: all 0.3s;
|
|
4274
|
-
height: initial !important;
|
|
4275
|
-
}
|
|
4276
|
-
[data-v-61d00736] .ant-menu-item > .anticon:first-child,[data-v-61d00736] .ant-menu-submenu-title > .anticon:first-child,[data-v-61d00736] .ant-menu-item > span > .anticon:first-child,[data-v-61d00736] .ant-menu-submenu-title > span > .anticon:first-child {
|
|
4277
|
-
min-width: 12px;
|
|
4278
|
-
margin-right: 8px;
|
|
4279
|
-
font-size: 12px;
|
|
4280
|
-
}
|
|
4281
|
-
[data-v-61d00736] .ant-menu-item > a,[data-v-61d00736] .ant-menu-submenu-title > a {
|
|
4282
|
-
display: block;
|
|
4283
|
-
margin: -5px -12px;
|
|
4284
|
-
padding: 5px 12px;
|
|
4285
|
-
color: rgba(0, 0, 0, 0.65);
|
|
4286
|
-
transition: all 0.3s;
|
|
4287
|
-
}
|
|
4288
|
-
[data-v-61d00736] .ant-menu-item-selected,[data-v-61d00736] .ant-menu-submenu-title-selected,[data-v-61d00736] .ant-menu-item-selected > a,[data-v-61d00736] .ant-menu-submenu-title-selected > a {
|
|
4289
|
-
background: none !important;
|
|
4290
|
-
}
|
|
4291
|
-
[data-v-61d00736] .ant-menu-item:hover,[data-v-61d00736] .ant-menu-submenu-title:hover {
|
|
4292
|
-
background-color: #e8f4ff !important;
|
|
4293
|
-
}
|
|
4294
|
-
[data-v-61d00736] .ant-menu-item-disabled,[data-v-61d00736] .ant-menu-submenu-title-disabled {
|
|
4295
|
-
color: rgba(0, 0, 0, 0.25);
|
|
4296
|
-
cursor: not-allowed;
|
|
4297
|
-
}
|
|
4298
|
-
[data-v-61d00736] .ant-menu-item-disabled:hover,[data-v-61d00736] .ant-menu-submenu-title-disabled:hover {
|
|
4299
|
-
color: rgba(0, 0, 0, 0.25);
|
|
4300
|
-
background-color: #fff !important;
|
|
4301
|
-
cursor: not-allowed !important;
|
|
4302
|
-
}
|
|
4303
|
-
[data-v-61d00736] .ant-menu-item-divider,[data-v-61d00736] .ant-menu-submenu-title-divider {
|
|
4304
|
-
height: 1px;
|
|
4305
|
-
margin: 4px 0;
|
|
4306
|
-
overflow: hidden;
|
|
4307
|
-
line-height: 0;
|
|
4308
|
-
background-color: #e8e8e8;
|
|
4309
|
-
}
|
|
4310
|
-
[data-v-61d00736] .ant-menu-item .ant--menu-submenu-arrow,[data-v-61d00736] .ant-menu-submenu-title .ant--menu-submenu-arrow {
|
|
4311
|
-
position: absolute;
|
|
4312
|
-
right: 8px;
|
|
4313
|
-
}
|
|
4314
|
-
[data-v-61d00736] .ant-menu-item .ant--menu-submenu-arrow-icon,[data-v-61d00736] .ant-menu-submenu-title .ant--menu-submenu-arrow-icon {
|
|
4315
|
-
color: rgba(0, 0, 0, 0.45);
|
|
4316
|
-
font-style: normal;
|
|
4317
|
-
}
|
|
4318
|
-
[data-v-61d00736] .ant-menu-item-group-list {
|
|
4319
|
-
margin: 0 8px;
|
|
4320
|
-
padding: 0;
|
|
4321
|
-
list-style: none;
|
|
4322
|
-
}
|
|
4323
|
-
[data-v-61d00736] .ant-menu-submenu-title {
|
|
4324
|
-
padding-right: 26px;
|
|
4325
|
-
}
|
|
4326
|
-
[data-v-61d00736] .ant-menu-submenu-vertical {
|
|
4327
|
-
position: relative;
|
|
4328
|
-
}
|
|
4329
|
-
[data-v-61d00736] .ant-menu-submenu-vertical > .ant-menu {
|
|
4330
|
-
position: absolute;
|
|
4331
|
-
top: 0;
|
|
4332
|
-
left: 100%;
|
|
4333
|
-
min-width: 100%;
|
|
4334
|
-
margin-left: 4px;
|
|
4335
|
-
transform-origin: 0 0;
|
|
4336
|
-
}
|
|
4337
|
-
[data-v-61d00736] .ant-menu-submenu /deep/ .ant-menu-submenu-disabled .ant--menu-submenu-title,[data-v-61d00736] .ant-menu-submenu /deep/ .ant-menu-submenu-disabled .ant--menu-submenu-title .ant--menu-submenu-arrow-icon {
|
|
4338
|
-
color: rgba(0, 0, 0, 0.25);
|
|
4339
|
-
background-color: #fff;
|
|
4340
|
-
cursor: not-allowed;
|
|
4341
|
-
}
|
|
4342
|
-
[data-v-61d00736] .ant-menu-submenu-selected /deep/ .ant-menu-submenu-title {
|
|
4343
|
-
color: #1890ff;
|
|
4344
|
-
}
|
|
4345
|
-
|
|
4346
|
-
.notshow_dropdown {
|
|
4347
|
-
display: none;
|
|
4348
|
-
}
|
|
4349
|
-
.input_no_border {
|
|
4350
|
-
border: none;
|
|
4351
|
-
outline: none;
|
|
4352
|
-
box-shadow: none;
|
|
4353
|
-
}
|
|
4354
|
-
.input_no_border input {
|
|
4355
|
-
border: none !important;
|
|
4356
|
-
outline: none !important;
|
|
4357
|
-
box-shadow: none !important;
|
|
4358
|
-
}
|
|
4359
|
-
.advSelect_dropdown {
|
|
4360
|
-
box-shadow: 0 6px 10px 1px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.05);
|
|
4361
|
-
}
|
|
4362
|
-
.advSelect_dropdown .adv_search_input .ant-input {
|
|
4363
|
-
padding: 0 5px !important;
|
|
4364
|
-
padding-right: 24px !important;
|
|
4365
|
-
}
|
|
4366
|
-
.advSelect_dropdown .adv_search_input .ant-input-suffix {
|
|
4367
|
-
right: 8px;
|
|
4368
|
-
}
|
|
4369
|
-
.advSelect_dropdown .advSelect_search_item {
|
|
4370
|
-
cursor: initial;
|
|
4371
|
-
padding: 0;
|
|
4372
|
-
}
|
|
4373
|
-
|
|
4374
|
-
.toLinkageWidget.ant-select-disabled .ant-select-selection {
|
|
4375
|
-
background-color: #f5f5f5 !important;
|
|
4376
|
-
}
|
|
4377
|
-
|
|
4378
|
-
.linkage_list-item[data-v-3743792a] {
|
|
4379
|
-
display: flex;
|
|
4380
|
-
align-items: center;
|
|
4381
|
-
gap: 10px;
|
|
4382
|
-
margin-bottom: 10px;
|
|
4383
|
-
}
|
|
4384
|
-
.linkage_list-item > div[data-v-3743792a] {
|
|
4385
|
-
flex-shrink: 0;
|
|
4386
|
-
}
|
|
4387
|
-
[data-v-3743792a] .ant-select-dropdown-menu-item {
|
|
4388
|
-
-webkit-user-select: initial !important;
|
|
4389
|
-
-moz-user-select: initial !important;
|
|
4390
|
-
user-select: initial !important;
|
|
4391
|
-
}
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
[data-v-3052391b] .ant-drawer-header .ant-drawer-title {
|
|
4395
|
-
text-align: center;
|
|
4396
|
-
font-weight: bold;
|
|
4397
|
-
}
|
|
4398
|
-
.linkage_drawer_content[data-v-3052391b] {
|
|
4399
|
-
width: 900px;
|
|
4400
|
-
margin: 0 auto;
|
|
4401
|
-
}
|
|
4402
|
-
[data-v-3052391b] .ant-drawer-body {
|
|
4403
|
-
height: calc(100% - 55px);
|
|
4404
|
-
background-color: #f5f6f8;
|
|
4405
|
-
}
|
|
4406
|
-
|
|
4407
|
-
.linkage_manage_item {
|
|
4408
|
-
border-radius: 3px;
|
|
4409
|
-
cursor: pointer;
|
|
4410
|
-
border-top: 1px solid #ebecee;
|
|
4411
|
-
position: relative;
|
|
4412
|
-
padding: 16px;
|
|
4413
|
-
}
|
|
4414
|
-
.linkage_manage_item:first-of-type {
|
|
4415
|
-
border-top: none !important;
|
|
4416
|
-
}
|
|
4417
|
-
.linkage_manage_item:hover {
|
|
4418
|
-
border-top-color: transparent !important;
|
|
4419
|
-
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
|
|
4420
|
-
}
|
|
4421
|
-
.linkage_manage_item:hover .linkage_manage-del-icon {
|
|
4422
|
-
display: block;
|
|
4423
|
-
}
|
|
4424
|
-
.linkage_manage_item .linkage_manage-del-icon {
|
|
4425
|
-
position: absolute;
|
|
4426
|
-
display: none;
|
|
4427
|
-
right: 10px;
|
|
4428
|
-
top: 5px;
|
|
4429
|
-
}
|
|
4430
|
-
.select-no-border > div {
|
|
4431
|
-
border: none;
|
|
4432
|
-
}
|
|
4433
|
-
.select-no-border .ant-select-selection__rendered {
|
|
4434
|
-
margin-right: 0 !important;
|
|
4435
|
-
margin-left: 0 !important;
|
|
4436
|
-
}
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
[data-v-1c243160] .ant-form-item {
|
|
4801
|
+
[data-v-e8c0d9a0] .ant-form-item {
|
|
4440
4802
|
margin-bottom: 0;
|
|
4441
4803
|
}
|
|
4442
|
-
.m-colorPicker[data-v-
|
|
4804
|
+
.m-colorPicker[data-v-e8c0d9a0] .box.open {
|
|
4443
4805
|
z-index: 999;
|
|
4444
4806
|
}
|
|
4445
|
-
.m-colorPicker[data-v-
|
|
4807
|
+
.m-colorPicker[data-v-e8c0d9a0] .colorBtn {
|
|
4446
4808
|
border: 1px solid #e3e3e3;
|
|
4447
4809
|
}
|
|
4448
4810
|
|
|
4449
|
-
.form_var_collapse {
|
|
4450
|
-
margin: 10px 0;
|
|
4451
|
-
}
|
|
4452
|
-
|
|
4453
4811
|
|
|
4454
4812
|
[data-v-83162e7e] .w-e-toolbar {
|
|
4455
4813
|
display: none !important;
|