fengmao-ui 1.3.4 → 1.3.5

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.
@@ -5,7 +5,6 @@ declare const TQueryCondition: ({
5
5
  $props: {
6
6
  reset?: boolean | undefined;
7
7
  opts?: Record<string, any> | undefined;
8
- labelWidth?: string | undefined;
9
8
  btnCheckBind?: Record<string, any> | undefined;
10
9
  btnResetBind?: Record<string, any> | undefined;
11
10
  loading?: boolean | undefined;
@@ -16,6 +15,7 @@ declare const TQueryCondition: ({
16
15
  onHandleEvent?: ((...args: any[]) => any) | undefined;
17
16
  onSubmit?: ((...args: any[]) => any) | undefined;
18
17
  onReset?: ((...args: any[]) => any) | undefined;
18
+ readonly labelWidth?: string | undefined;
19
19
  readonly btnSettingBind?: Record<string, any> | undefined;
20
20
  key?: string | number | symbol | undefined;
21
21
  ref?: import("vue").VNodeRef | undefined;
@@ -83,7 +83,6 @@ declare const TQueryCondition: ({
83
83
  };
84
84
  labelWidth: {
85
85
  type: StringConstructor;
86
- default: string;
87
86
  };
88
87
  btnCheckBind: {
89
88
  type: ObjectConstructor;
@@ -127,6 +126,10 @@ declare const TQueryCondition: ({
127
126
  }, {
128
127
  props: any;
129
128
  currentPath: string;
129
+ searchBtnRef: import("vue").Ref<null>;
130
+ searchBtnWidth: import("vue").Ref<number>;
131
+ t_query_conditionRef: import("vue").Ref<null>;
132
+ queryRefWidth: import("vue").Ref<number>;
130
133
  labelValues: import("vue").ComputedRef<any[]>;
131
134
  labelLength: import("vue").ComputedRef<number>;
132
135
  generateData: () => any;
@@ -144,7 +147,6 @@ declare const TQueryCondition: ({
144
147
  queryState: {
145
148
  form: any;
146
149
  };
147
- colLength: import("vue").Ref<number>;
148
150
  open: import("vue").Ref<boolean>;
149
151
  queryAttrs: import("vue").ComputedRef<{
150
152
  type: string;
@@ -158,6 +160,7 @@ declare const TQueryCondition: ({
158
160
  }>;
159
161
  originCellLength: import("vue").ComputedRef<number>;
160
162
  cOpts: import("vue").ComputedRef<any>;
163
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
161
164
  cellLength: any;
162
165
  gridAreas: import("vue").ComputedRef<any>;
163
166
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -168,7 +171,7 @@ declare const TQueryCondition: ({
168
171
  getCache: (key: any) => any;
169
172
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
170
173
  initForm: (opts: any, keepVal?: boolean) => {};
171
- getColLength: () => number;
174
+ colLength: import("vue").ComputedRef<number>;
172
175
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
173
176
  resetHandle: () => void;
174
177
  handleEvent: (type: any, val: any) => void;
@@ -189,7 +192,6 @@ declare const TQueryCondition: ({
189
192
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEvent" | "submit" | "reset")[], string, {
190
193
  reset: boolean;
191
194
  opts: Record<string, any>;
192
- labelWidth: string;
193
195
  btnCheckBind: Record<string, any>;
194
196
  btnResetBind: Record<string, any>;
195
197
  loading: boolean;
@@ -225,7 +227,6 @@ declare const TQueryCondition: ({
225
227
  };
226
228
  labelWidth: {
227
229
  type: StringConstructor;
228
- default: string;
229
230
  };
230
231
  btnCheckBind: {
231
232
  type: ObjectConstructor;
@@ -269,6 +270,10 @@ declare const TQueryCondition: ({
269
270
  } & import("vue").ShallowUnwrapRef<{
270
271
  props: any;
271
272
  currentPath: string;
273
+ searchBtnRef: import("vue").Ref<null>;
274
+ searchBtnWidth: import("vue").Ref<number>;
275
+ t_query_conditionRef: import("vue").Ref<null>;
276
+ queryRefWidth: import("vue").Ref<number>;
272
277
  labelValues: import("vue").ComputedRef<any[]>;
273
278
  labelLength: import("vue").ComputedRef<number>;
274
279
  generateData: () => any;
@@ -286,7 +291,6 @@ declare const TQueryCondition: ({
286
291
  queryState: {
287
292
  form: any;
288
293
  };
289
- colLength: import("vue").Ref<number>;
290
294
  open: import("vue").Ref<boolean>;
291
295
  queryAttrs: import("vue").ComputedRef<{
292
296
  type: string;
@@ -300,6 +304,7 @@ declare const TQueryCondition: ({
300
304
  }>;
301
305
  originCellLength: import("vue").ComputedRef<number>;
302
306
  cOpts: import("vue").ComputedRef<any>;
307
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
303
308
  cellLength: any;
304
309
  gridAreas: import("vue").ComputedRef<any>;
305
310
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -310,7 +315,7 @@ declare const TQueryCondition: ({
310
315
  getCache: (key: any) => any;
311
316
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
312
317
  initForm: (opts: any, keepVal?: boolean) => {};
313
- getColLength: () => number;
318
+ colLength: import("vue").ComputedRef<number>;
314
319
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
315
320
  resetHandle: () => void;
316
321
  handleEvent: (type: any, val: any) => void;
@@ -340,7 +345,6 @@ declare const TQueryCondition: ({
340
345
  };
341
346
  labelWidth: {
342
347
  type: StringConstructor;
343
- default: string;
344
348
  };
345
349
  btnCheckBind: {
346
350
  type: ObjectConstructor;
@@ -384,6 +388,10 @@ declare const TQueryCondition: ({
384
388
  }, {
385
389
  props: any;
386
390
  currentPath: string;
391
+ searchBtnRef: import("vue").Ref<null>;
392
+ searchBtnWidth: import("vue").Ref<number>;
393
+ t_query_conditionRef: import("vue").Ref<null>;
394
+ queryRefWidth: import("vue").Ref<number>;
387
395
  labelValues: import("vue").ComputedRef<any[]>;
388
396
  labelLength: import("vue").ComputedRef<number>;
389
397
  generateData: () => any;
@@ -401,7 +409,6 @@ declare const TQueryCondition: ({
401
409
  queryState: {
402
410
  form: any;
403
411
  };
404
- colLength: import("vue").Ref<number>;
405
412
  open: import("vue").Ref<boolean>;
406
413
  queryAttrs: import("vue").ComputedRef<{
407
414
  type: string;
@@ -415,6 +422,7 @@ declare const TQueryCondition: ({
415
422
  }>;
416
423
  originCellLength: import("vue").ComputedRef<number>;
417
424
  cOpts: import("vue").ComputedRef<any>;
425
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
418
426
  cellLength: any;
419
427
  gridAreas: import("vue").ComputedRef<any>;
420
428
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -425,7 +433,7 @@ declare const TQueryCondition: ({
425
433
  getCache: (key: any) => any;
426
434
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
427
435
  initForm: (opts: any, keepVal?: boolean) => {};
428
- getColLength: () => number;
436
+ colLength: import("vue").ComputedRef<number>;
429
437
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
430
438
  resetHandle: () => void;
431
439
  handleEvent: (type: any, val: any) => void;
@@ -446,7 +454,6 @@ declare const TQueryCondition: ({
446
454
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEvent" | "submit" | "reset")[], "handleEvent" | "submit" | "reset", {
447
455
  reset: boolean;
448
456
  opts: Record<string, any>;
449
- labelWidth: string;
450
457
  btnCheckBind: Record<string, any>;
451
458
  btnResetBind: Record<string, any>;
452
459
  loading: boolean;
@@ -6,7 +6,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
6
6
  };
7
7
  labelWidth: {
8
8
  type: StringConstructor;
9
- default: string;
10
9
  };
11
10
  btnCheckBind: {
12
11
  type: ObjectConstructor;
@@ -46,6 +45,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
46
45
  }, {
47
46
  props: any;
48
47
  currentPath: string;
48
+ searchBtnRef: import("vue").Ref<null>;
49
+ searchBtnWidth: import("vue").Ref<number>;
50
+ t_query_conditionRef: import("vue").Ref<null>;
51
+ queryRefWidth: import("vue").Ref<number>;
49
52
  labelValues: import("vue").ComputedRef<any[]>;
50
53
  labelLength: import("vue").ComputedRef<number>;
51
54
  generateData: () => any;
@@ -63,7 +66,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
63
66
  queryState: {
64
67
  form: any;
65
68
  };
66
- colLength: import("vue").Ref<number>;
67
69
  open: import("vue").Ref<boolean>;
68
70
  queryAttrs: import("vue").ComputedRef<{
69
71
  type: string;
@@ -77,6 +79,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
77
79
  }>;
78
80
  originCellLength: import("vue").ComputedRef<number>;
79
81
  cOpts: import("vue").ComputedRef<any>;
82
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
80
83
  cellLength: any;
81
84
  gridAreas: import("vue").ComputedRef<any>;
82
85
  handleChange: (value: number[], direction: 'left' | 'right', movedKeys: string[]) => false | undefined;
@@ -87,7 +90,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
87
90
  getCache: (key: any) => any;
88
91
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
89
92
  initForm: (opts: any, keepVal?: boolean) => {};
90
- getColLength: () => number;
93
+ colLength: import("vue").ComputedRef<number>;
91
94
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
92
95
  resetHandle: () => void;
93
96
  handleEvent: (type: any, val: any) => void;
@@ -113,7 +116,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
113
116
  };
114
117
  labelWidth: {
115
118
  type: StringConstructor;
116
- default: string;
117
119
  };
118
120
  btnCheckBind: {
119
121
  type: ObjectConstructor;
@@ -157,7 +159,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
157
159
  }, {
158
160
  reset: boolean;
159
161
  opts: Record<string, any>;
160
- labelWidth: string;
161
162
  btnCheckBind: Record<string, any>;
162
163
  btnResetBind: Record<string, any>;
163
164
  loading: boolean;
@@ -10,10 +10,10 @@ declare const TSelect: ({
10
10
  optionSource?: any;
11
11
  paginationOption?: Record<string, any> | undefined;
12
12
  useVirtual?: boolean | undefined;
13
+ readonly width?: string | undefined;
13
14
  key?: string | number | symbol | undefined;
14
15
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
15
16
  readonly modelValue?: string | number | unknown[] | undefined;
16
- readonly width?: string | undefined;
17
17
  readonly customLabel?: string | undefined;
18
18
  ref?: import("vue").VNodeRef | undefined;
19
19
  ref_for?: boolean | undefined;
@@ -212,7 +212,6 @@ declare const TSelectTable: ({
212
212
  };
213
213
  labelWidth: {
214
214
  type: StringConstructor;
215
- default: string;
216
215
  };
217
216
  btnCheckBind: {
218
217
  type: ObjectConstructor;
@@ -252,6 +251,10 @@ declare const TSelectTable: ({
252
251
  }, {
253
252
  props: any;
254
253
  currentPath: string;
254
+ searchBtnRef: import("vue").Ref<null>;
255
+ searchBtnWidth: import("vue").Ref<number>;
256
+ t_query_conditionRef: import("vue").Ref<null>;
257
+ queryRefWidth: import("vue").Ref<number>;
255
258
  labelValues: import("vue").ComputedRef<any[]>;
256
259
  labelLength: import("vue").ComputedRef<number>;
257
260
  generateData: () => any;
@@ -269,7 +272,6 @@ declare const TSelectTable: ({
269
272
  queryState: {
270
273
  form: any;
271
274
  };
272
- colLength: import("vue").Ref<number>;
273
275
  open: import("vue").Ref<boolean>;
274
276
  queryAttrs: import("vue").ComputedRef<{
275
277
  type: string;
@@ -283,6 +285,7 @@ declare const TSelectTable: ({
283
285
  }>;
284
286
  originCellLength: import("vue").ComputedRef<number>;
285
287
  cOpts: import("vue").ComputedRef<any>;
288
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
286
289
  cellLength: any;
287
290
  gridAreas: import("vue").ComputedRef<any>;
288
291
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -293,7 +296,7 @@ declare const TSelectTable: ({
293
296
  getCache: (key: any) => any;
294
297
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
295
298
  initForm: (opts: any, keepVal?: boolean) => {};
296
- getColLength: () => number;
299
+ colLength: import("vue").ComputedRef<number>;
297
300
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
298
301
  resetHandle: () => void;
299
302
  handleEvent: (type: any, val: any) => void;
@@ -319,7 +322,6 @@ declare const TSelectTable: ({
319
322
  };
320
323
  labelWidth: {
321
324
  type: StringConstructor;
322
- default: string;
323
325
  };
324
326
  btnCheckBind: {
325
327
  type: ObjectConstructor;
@@ -363,7 +365,6 @@ declare const TSelectTable: ({
363
365
  }, {
364
366
  reset: boolean;
365
367
  opts: Record<string, any>;
366
- labelWidth: string;
367
368
  btnCheckBind: Record<string, any>;
368
369
  btnResetBind: Record<string, any>;
369
370
  loading: boolean;
@@ -557,7 +558,6 @@ declare const TSelectTable: ({
557
558
  };
558
559
  labelWidth: {
559
560
  type: StringConstructor;
560
- default: string;
561
561
  };
562
562
  btnCheckBind: {
563
563
  type: ObjectConstructor;
@@ -597,6 +597,10 @@ declare const TSelectTable: ({
597
597
  }, {
598
598
  props: any;
599
599
  currentPath: string;
600
+ searchBtnRef: import("vue").Ref<null>;
601
+ searchBtnWidth: import("vue").Ref<number>;
602
+ t_query_conditionRef: import("vue").Ref<null>;
603
+ queryRefWidth: import("vue").Ref<number>;
600
604
  labelValues: import("vue").ComputedRef<any[]>;
601
605
  labelLength: import("vue").ComputedRef<number>;
602
606
  generateData: () => any;
@@ -614,7 +618,6 @@ declare const TSelectTable: ({
614
618
  queryState: {
615
619
  form: any;
616
620
  };
617
- colLength: import("vue").Ref<number>;
618
621
  open: import("vue").Ref<boolean>;
619
622
  queryAttrs: import("vue").ComputedRef<{
620
623
  type: string;
@@ -628,6 +631,7 @@ declare const TSelectTable: ({
628
631
  }>;
629
632
  originCellLength: import("vue").ComputedRef<number>;
630
633
  cOpts: import("vue").ComputedRef<any>;
634
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
631
635
  cellLength: any;
632
636
  gridAreas: import("vue").ComputedRef<any>;
633
637
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -638,7 +642,7 @@ declare const TSelectTable: ({
638
642
  getCache: (key: any) => any;
639
643
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
640
644
  initForm: (opts: any, keepVal?: boolean) => {};
641
- getColLength: () => number;
645
+ colLength: import("vue").ComputedRef<number>;
642
646
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
643
647
  resetHandle: () => void;
644
648
  handleEvent: (type: any, val: any) => void;
@@ -664,7 +668,6 @@ declare const TSelectTable: ({
664
668
  };
665
669
  labelWidth: {
666
670
  type: StringConstructor;
667
- default: string;
668
671
  };
669
672
  btnCheckBind: {
670
673
  type: ObjectConstructor;
@@ -708,7 +711,6 @@ declare const TSelectTable: ({
708
711
  }, {
709
712
  reset: boolean;
710
713
  opts: Record<string, any>;
711
- labelWidth: string;
712
714
  btnCheckBind: Record<string, any>;
713
715
  btnResetBind: Record<string, any>;
714
716
  loading: boolean;
@@ -870,7 +872,6 @@ declare const TSelectTable: ({
870
872
  };
871
873
  labelWidth: {
872
874
  type: StringConstructor;
873
- default: string;
874
875
  };
875
876
  btnCheckBind: {
876
877
  type: ObjectConstructor;
@@ -910,6 +911,10 @@ declare const TSelectTable: ({
910
911
  }, {
911
912
  props: any;
912
913
  currentPath: string;
914
+ searchBtnRef: import("vue").Ref<null>;
915
+ searchBtnWidth: import("vue").Ref<number>;
916
+ t_query_conditionRef: import("vue").Ref<null>;
917
+ queryRefWidth: import("vue").Ref<number>;
913
918
  labelValues: import("vue").ComputedRef<any[]>;
914
919
  labelLength: import("vue").ComputedRef<number>;
915
920
  generateData: () => any;
@@ -927,7 +932,6 @@ declare const TSelectTable: ({
927
932
  queryState: {
928
933
  form: any;
929
934
  };
930
- colLength: import("vue").Ref<number>;
931
935
  open: import("vue").Ref<boolean>;
932
936
  queryAttrs: import("vue").ComputedRef<{
933
937
  type: string;
@@ -941,6 +945,7 @@ declare const TSelectTable: ({
941
945
  }>;
942
946
  originCellLength: import("vue").ComputedRef<number>;
943
947
  cOpts: import("vue").ComputedRef<any>;
948
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
944
949
  cellLength: any;
945
950
  gridAreas: import("vue").ComputedRef<any>;
946
951
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -951,7 +956,7 @@ declare const TSelectTable: ({
951
956
  getCache: (key: any) => any;
952
957
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
953
958
  initForm: (opts: any, keepVal?: boolean) => {};
954
- getColLength: () => number;
959
+ colLength: import("vue").ComputedRef<number>;
955
960
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
956
961
  resetHandle: () => void;
957
962
  handleEvent: (type: any, val: any) => void;
@@ -977,7 +982,6 @@ declare const TSelectTable: ({
977
982
  };
978
983
  labelWidth: {
979
984
  type: StringConstructor;
980
- default: string;
981
985
  };
982
986
  btnCheckBind: {
983
987
  type: ObjectConstructor;
@@ -1021,7 +1025,6 @@ declare const TSelectTable: ({
1021
1025
  }, {
1022
1026
  reset: boolean;
1023
1027
  opts: Record<string, any>;
1024
- labelWidth: string;
1025
1028
  btnCheckBind: Record<string, any>;
1026
1029
  btnResetBind: Record<string, any>;
1027
1030
  loading: boolean;
@@ -124,7 +124,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
124
124
  };
125
125
  labelWidth: {
126
126
  type: StringConstructor;
127
- default: string;
128
127
  };
129
128
  btnCheckBind: {
130
129
  type: ObjectConstructor;
@@ -164,6 +163,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
164
163
  }, {
165
164
  props: any;
166
165
  currentPath: string;
166
+ searchBtnRef: import("vue").Ref<null>;
167
+ searchBtnWidth: import("vue").Ref<number>;
168
+ t_query_conditionRef: import("vue").Ref<null>;
169
+ queryRefWidth: import("vue").Ref<number>;
167
170
  labelValues: import("vue").ComputedRef<any[]>;
168
171
  labelLength: import("vue").ComputedRef<number>;
169
172
  generateData: () => any;
@@ -181,7 +184,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
181
184
  queryState: {
182
185
  form: any;
183
186
  };
184
- colLength: import("vue").Ref<number>;
185
187
  open: import("vue").Ref<boolean>;
186
188
  queryAttrs: import("vue").ComputedRef<{
187
189
  type: string;
@@ -195,6 +197,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
195
197
  }>;
196
198
  originCellLength: import("vue").ComputedRef<number>;
197
199
  cOpts: import("vue").ComputedRef<any>;
200
+ defaultLabelWidth: import("vue").ComputedRef<"80px" | "90px" | "105px" | "120px" | "160px">;
198
201
  cellLength: any;
199
202
  gridAreas: import("vue").ComputedRef<any>;
200
203
  handleChange: (value: number[], direction: "left" | "right", movedKeys: string[]) => false | undefined;
@@ -205,7 +208,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
205
208
  getCache: (key: any) => any;
206
209
  cEvent: import("vue").ComputedRef<(opt: any) => {}>;
207
210
  initForm: (opts: any, keepVal?: boolean) => {};
208
- getColLength: () => number;
211
+ colLength: import("vue").ComputedRef<number>;
209
212
  emits: (event: "handleEvent" | "submit" | "reset", ...args: any[]) => void;
210
213
  resetHandle: () => void;
211
214
  handleEvent: (type: any, val: any) => void;
@@ -231,7 +234,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
231
234
  };
232
235
  labelWidth: {
233
236
  type: StringConstructor;
234
- default: string;
235
237
  };
236
238
  btnCheckBind: {
237
239
  type: ObjectConstructor;
@@ -275,7 +277,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
275
277
  }, {
276
278
  reset: boolean;
277
279
  opts: Record<string, any>;
278
- labelWidth: string;
279
280
  btnCheckBind: Record<string, any>;
280
281
  btnResetBind: Record<string, any>;
281
282
  loading: boolean;
package/lib/style.css CHANGED
@@ -1 +1 @@
1
- .t_layout_page[data-v-0f748eb4]{display:flex;flex-direction:column;padding:10px;width:100%;height:100%;overflow:auto}.layout_page_no_margin[data-v-0f748eb4]{padding:0}.t_layout_page_item[data-v-c3b0e17b]{margin:8px;padding:16px;background:var(--el-bg-color);border-radius:4px}.page_item_no_margin[data-v-c3b0e17b]{margin:0;padding:0}.t-query-condition.el-form{position:relative;display:grid;gap:2px 8px;margin-bottom:-7px;text-align:left}.t-query-condition.el-form.isClose{padding-right:400px}.t-query-condition.el-form.isClose .btn{grid-area:unset!important;position:absolute;top:0;right:0}.t-query-condition.el-form .el-select,.t-query-condition.el-form .el-date-editor,.t-query-condition.el-form .ant-calendar-picker{width:100%}.t-query-condition.el-form .flex_end{grid-area:submit_btn;margin-top:2px}.t-query-condition.el-form .flex_end .el-form-item__content{display:flex;justify-content:flex-end;align-items:center;overflow:visible!important}.t-query-condition.el-form .btn{text-align:end}.t-query-condition.el-form .btn .el-form-item__content{display:flex;justify-content:flex-end}.t-query-condition.el-form .el-form-item{display:flex;margin-bottom:6px}.t-query-condition.el-form .el-form-item .el-form-item__label{flex-shrink:0;min-width:60px;padding-left:8px}.t-query-condition.el-form .el-form-item .el-form-item__content{flex-grow:1;margin-left:0!important}.t-query-condition.el-form .render_label .el-form-item__label{cursor:pointer;display:flex;align-items:center;justify-content:flex-end}.t-query-condition.el-form .render_label .el-form-item__label:before{margin-top:1px}.t-query-condition.el-form .btn_check{position:relative;top:-1px}.t-query-condition.el-form .btn_reset,.t-query-condition.el-form .btn_setting{position:relative;top:-1px;margin-left:8px}.t-query-condition.el-form .transfer-container{display:flex;justify-content:center;align-items:center;height:100%}.single_edit_cell{cursor:pointer}.el-dropdown-menu[data-v-eb8e8a4b]{padding:10px;font-size:14px}.el-dropdown-menu .el-dropdown-menu__item[data-v-eb8e8a4b]{display:flex;flex-direction:row;align-items:flex-start}.el-dropdown-menu .el-dropdown-menu__item .title[data-v-eb8e8a4b]{font-weight:700;margin-bottom:5px}.el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown[data-v-eb8e8a4b]{display:flex;flex-direction:column;max-height:300px;overflow-y:auto}.el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label[data-v-eb8e8a4b]{color:var(--el-text-color-primary)}.t-table[data-v-e071329a]{z-index:0;background-color:var(--el-bg-color)}.t-table[data-v-e071329a] .el-table__header-wrapper .el-table__header,.t-table[data-v-e071329a] .el-table__body-wrapper .el-table__body{margin:0}.t-table[data-v-e071329a] .el-pagination{display:flex;justify-content:flex-end;align-items:center;margin-top:20px;margin-right:calc(2% - 20px);background-color:var(--el-bg-color)}.t-table .el-table .el-tooltip div[data-v-e071329a]{-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all;padding-left:10px;padding-right:10px}.t-table .el-table .el-tooltip .single_edit_cell[data-v-e071329a]{overflow:visible}.t-table .el-table .el-table__row[data-v-e071329a] .table_column_hidden .cell .el-radio__input,.t-table .el-table .el-table__row[data-v-e071329a] .table_column_hidden .cell .el-checkbox__input{display:none}.t-table .el-table .el-table__row[data-v-e071329a] .table_column_hidden .cell>span{display:none}.t-table .el-table th[data-v-e071329a],.t-table .el-table td[data-v-e071329a]{padding:8px 0}.t-table .el-table--border th:first-child .cell[data-v-e071329a],.t-table .el-table--border td:first-child .cell[data-v-e071329a]{padding-left:5px}.t-table .el-table .cell[data-v-e071329a]{padding:0 5px}.t-table .el-table--scrollable-y .el-table__fixed-right[data-v-e071329a]{right:8px!important}.t-table .header_wrap[data-v-e071329a]{display:flex;align-items:center}.t-table .header_wrap .toolbar_top[data-v-e071329a]{flex:0 70%;display:flex;padding:10px 0;align-items:center;justify-content:flex-end}.t-table .header_wrap .toolbar_top .toolbar[data-v-e071329a]{display:flex;justify-content:flex-end;width:100%}.t-table .header_wrap .toolbar_top .el-button--small[data-v-e071329a]{height:32px}.t-table .header_wrap .toolbar_top .el-button--success[data-v-e071329a]{background-color:#355db4;border:1px solid #355db4}.t-table .header_wrap .header_title[data-v-e071329a]{display:flex;align-items:center;flex:0 30%;padding:10px 0;font-size:16px;font-weight:700;line-height:35px;margin-left:10px;color:var(--el-text-color-primary)}.t-table .marginBttom[data-v-e071329a]{margin-bottom:-8px}.t-table .radioStyle[data-v-e071329a] .el-radio .el-radio__label{display:none}.t-table .radioStyle[data-v-e071329a] .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-table .radioStyle[data-v-e071329a] tbody .el-table__row,.t-table .cursor[data-v-e071329a] tbody .el-table__row{cursor:pointer}.t-table .row_sort[data-v-e071329a] tbody .el-table__row{cursor:move}.t-table .el-table .el-table__body .el-table__row[data-v-e071329a] .el-table__cell{padding:8px 0}.t-table .el-table .el-table__body .el-table__row[data-v-e071329a] .el-table__cell .cell{min-height:32px;line-height:32px}.t-table .tree_style[data-v-e071329a] .el-table__body-wrapper .el-table__body .cell{display:flex;align-items:center}.t-table .tree_style[data-v-e071329a] .el-table__body-wrapper .el-table__body .cell .el-table__expand-icon{display:flex;align-items:center;justify-content:center}.t-table .operator .operator_btn .el-button[data-v-e071329a]{margin:0 10px 0 0}.t-table[data-v-e071329a] .el-table__fixed-right{height:100%!important}.t-table .highlightCurrentRow[data-v-e071329a] .current-row{color:var(--el-color-primary);cursor:pointer;background-color:#355db4!important}.t-table .el-table--scrollable-y .el-table__body-wrapper[data-v-e071329a]{overflow-x:auto}.t-table .handle_wrap[data-v-e071329a]{position:sticky;z-index:10;right:0;bottom:-8px;margin:0 -8px -8px;padding:12px 16px;background-color:var(--el-bg-color);border-top:1px solid #ebeef5;text-align:right}.t-table .handle_wrap .el-btn[data-v-e071329a]{margin-left:8px}.t-form{display:flex;flex-wrap:wrap}.t-form .el-form-item{align-items:center}.t-form .el-form-item .el-form-item__content .el-input,.t-form .el-form-item .el-form-item__content .el-select,.t-form .el-form-item .el-form-item__content .el-date-editor,.t-form .el-form-item .el-form-item__content .el-textarea{width:100%}.t-form .el-form-item .el-form-item__content .el-input-number .el-input{width:inherit}.t-form .asterisk-left .el-form-item__label{margin-left:5px}.t-form .t-margin-top-5{margin-top:5px}.t-form .el-input-number .el-input .el-input__inner{text-align:left}.t-form .render_label .el-form-item__label{display:flex;align-items:center;justify-content:flex-end}.t-form .render_label .el-form-item__label:before{margin-top:1px}.t-form .render_laber_position_left .el-form-item__label,.t-form.el-form--label-top .render_label .el-form-item__label{justify-content:flex-start}.t-form .label_render{display:flex;align-items:center;justify-content:flex-end}.t-form .text_show{color:var(--el-text-color-primary)}.t-form .slot_label .el-form-item__content label{min-width:108px;color:var(--el-text-color-primary);text-align:right;margin-right:12px}.t-form .flex-box{display:-webkit-box;display:-webkit-flex;display:flex}.t-form .flex-ver{align-items:center;justify-content:center}.t-form .footer_btn{width:100%}.t_select .el-select-dropdown .all_checkbox[data-v-08c9d1f1]{margin-left:20px}.t-select-table .radioStyle .el-radio .el-radio__label{display:none}.t-select-table .radioStyle .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-select-table .radioStyle .el-table__row{cursor:pointer}.t-select-table .keyUpStyle .el-table__body tbody .current-row{color:var(--el-color-primary)!important;cursor:pointer}.t-select-table .highlightCurrentRow :deep(.current-row){color:var(--el-color-primary);cursor:pointer}.t-select-table .t-table-select__table{padding:10px}.t-select-table .t-table-select__table .el-table__body,.t-select-table .t-table-select__table .el-table__header{margin:0}.t-select-table .t-table-select__table .table_query_condition{width:100%;overflow-x:auto;overflow-y:hidden;padding:10px}.t-select-table .t-table-select__page{padding-top:5px;padding-right:10px}.t-select-table .t-table-select__page .el-pagination{display:flex;justify-content:flex-end;align-items:center;margin-right:calc(2% - 20px);background-color:var(--el-table-tr-bg-color)}.t_detail[data-v-7e7b10a1] .el-descriptions__label{font-weight:700;min-width:65px}.t-button-tip[data-v-f04d93eb]{padding:0;height:auto}.t-button-tip[data-v-f04d93eb]:hover,.t-button-tip[data-v-f04d93eb]:focus{animation:jump-f04d93eb .3s}@keyframes jump-f04d93eb{0%{transform:translateY(0)}50%{transform:translateY(-3px)}to{transform:translateY(0)}}.fix-btn[data-v-0b6a53fb]{width:100%}.flex-box[data-v-0b6a53fb]{display:-webkit-box;display:-webkit-flex;display:flex}.flex-ver[data-v-0b6a53fb]{align-items:center;justify-content:center}.bottom-tool-bar[data-v-0b6a53fb]{height:60px;text-align:center;margin:10px 0;background:var(--el-bg-color)}.bar-fixed-bottom[data-v-0b6a53fb]{position:absolute;margin:0!important;z-index:99;bottom:0;left:0}.i_layout .section .layout-content[data-v-538784f1]{padding:0}.flex-box[data-v-538784f1]{display:-webkit-box;display:-webkit-flex;display:flex}.flex-ver[data-v-538784f1]{align-items:center;justify-content:center}.flex-col[data-v-538784f1]{flex-direction:column}.step-wizard[data-v-538784f1]{position:relative}.step-wizard .el-steps--simple[data-v-538784f1]{border-radius:0}.step-wizard .content-step-main .step-last .icon-success[data-v-538784f1]{color:#67c23a;font-size:95px;margin-top:40px}.step-wizard .content-step-main .step-last .success-margin[data-v-538784f1]{margin-bottom:70px}.timer-btn[data-v-12c2de2c]{position:relative}.timer-btn .sendSmsBtn[data-v-12c2de2c]{height:40px;line-height:40px;border-radius:4px;background:#ef473a;border:none;padding:0 6px;color:#fff;display:inline-block;min-width:92px;cursor:pointer}.timer-btn .dissendSmsBtn[data-v-12c2de2c]{opacity:.5;cursor:auto}.t_detail .el-collapse[data-v-2bdf2823]{border:none}.t_detail .el-collapse .el-collapse-item[data-v-2bdf2823]{background-color:var(--el-bg-color);margin-top:10px;border:none}.t_detail .el-collapse .el-collapse-item .el-collapse-item__header[data-v-2bdf2823]{border-bottom:1px solid var(--el-border-color);position:relative;padding-left:35px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_detail .el-collapse .el-collapse-item .el-collapse-item__header .t_btn[data-v-2bdf2823]{margin-right:15px}.t_detail .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow[data-v-2bdf2823]{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:17px;left:14px;display:inline-block;font-size:14px}.t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap[data-v-2bdf2823]{padding:16px;border:none}.t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content[data-v-2bdf2823]{padding-bottom:0}.t_detail .el-collapse .title_bold .collapse-item_title[data-v-2bdf2823]{font-weight:700}.t_detail .el-collapse .noTitle[data-v-2bdf2823]{margin-top:0}.t_detail .el-collapse .noTitle>div[data-v-2bdf2823]:first-child{display:none}.t_detail .el-collapse .disabledStyle .el-collapse-item__header[data-v-2bdf2823]{color:var(--el-collapse-header-text-color);cursor:default;padding-left:20px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_detail .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow[data-v-2bdf2823]{display:none}.t_detail .el-collapse .disabledStyle .el-collapse-item__header .t_btn[data-v-2bdf2823]{margin-right:15px}.t_form .el-collapse[data-v-435bc47a]{border:none}.t_form .el-collapse .el-collapse-item[data-v-435bc47a]{background-color:var(--el-bg-color);margin-top:10px;border:none}.t_form .el-collapse .el-collapse-item .el-collapse-item__header[data-v-435bc47a]{border-bottom:1px solid var(--el-border-color);position:relative;padding-left:35px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_form .el-collapse .el-collapse-item .el-collapse-item__header .t_btn[data-v-435bc47a]{margin-right:15px}.t_form .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow[data-v-435bc47a]{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:17px;left:14px;display:inline-block;font-size:14px}.t_form .el-collapse .el-collapse-item .el-collapse-item__wrap[data-v-435bc47a]{padding:16px;border:none}.t_form .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content[data-v-435bc47a]{padding-bottom:0}.t_form .el-collapse .title_bold .collapse-item_title[data-v-435bc47a]{font-weight:700}.t_form .el-collapse .noTitle>div[data-v-435bc47a]:first-child{display:none}.t_form .el-collapse .disabledStyle .el-collapse-item__header[data-v-435bc47a]{color:var(--el-collapse-header-text-color);cursor:default;padding-left:20px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_form .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow[data-v-435bc47a]{display:none}.t_form .el-collapse .disabledStyle .el-collapse-item__header .t_btn[data-v-435bc47a]{margin-right:15px}.t_module_form[data-v-2b43e177]{position:relative;display:flex;flex-grow:1;flex-direction:column;height:100%;text-align:left;background-color:var(--el-bg-color-page);overflow:auto}.t_module_form .scroll_wrap[data-v-2b43e177]{display:flex;flex-direction:column;flex-grow:1}.t_module_form .scroll_wrap .el-page-header[data-v-2b43e177]{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;color:var(--el-text-color-primary);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";position:relative;padding:16px 24px;background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .el-page-header .el-page-header__breadcrumb[data-v-2b43e177]{margin:0}.t_module_form .scroll_wrap .el-page-header .el-page-header__left[data-v-2b43e177]{color:var(--el-text-color-primary);align-items:center;margin:0;width:100%}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-icon-back[data-v-2b43e177]{font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-page-header__title[data-v-2b43e177]{font-size:18px;font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__content[data-v-2b43e177]{display:flex;align-items:center;justify-content:space-between;flex:60%}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .sub_title[data-v-2b43e177]{flex:30%}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .extra[data-v-2b43e177]{flex:70%;display:flex;justify-content:flex-end}.t_module_form .scroll_wrap .noContent .el-page-header__left .el-divider[data-v-2b43e177],.t_module_form .scroll_wrap .isShowBack .el-page-header__left .el-page-header__icon[data-v-2b43e177]{display:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless[data-v-2b43e177]{background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .noTitle .el-collapse-header[data-v-2b43e177]{display:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item[data-v-2b43e177]{background-color:var(--el-bg-color);margin-top:10px;border:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item[data-v-2b43e177]:first-child{margin-top:0}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-header[data-v-2b43e177]{border-bottom:1px solid var(--el-border-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-content-box[data-v-2b43e177]{padding:16px}.t_module_form .scroll_wrap .tabs[data-v-2b43e177]{padding:0;margin:0}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__header[data-v-2b43e177]{margin:0;padding:0 10px;background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__nav-wrap[data-v-2b43e177]:after{height:1px}.t_module_form .handle_wrap[data-v-2b43e177]{position:fixed;z-index:4;right:0;bottom:0px;height:60px;display:flex;align-items:center;justify-content:flex-end;background-color:var(--el-bg-color);border-top:1px solid var(--el-border-color);text-align:right;width:100%}.t_module_form .handle_wrap .el-button[data-v-2b43e177]:last-child{margin-right:15px}.t_adaptive_page[data-v-f41d1573]{display:flex;align-content:center;width:100%;height:100%;overflow:hidden}.t_adaptive_page .left_content[data-v-f41d1573]{background:var(--el-bg-color);margin:8px 0 8px 8px}.t_adaptive_page .left_content .left_tree[data-v-f41d1573]{display:flex;flex-direction:column;width:100%;height:100%;padding:10px;overflow-y:auto}.t_adaptive_page .right_content[data-v-f41d1573]{display:flex;flex:1;flex-direction:column;width:100%;height:100%;overflow:hidden}.t_adaptive_page .right_content .table_main[data-v-f41d1573]{flex:1;overflow-y:auto;width:100%;height:100vh}.t_adaptive_page .right_content .table_main .t-table[data-v-f41d1573]{display:flex;flex:1;flex-direction:column;width:100%;height:100%}.t-date-picker[data-v-e14c5da5]{width:100%}
1
+ .t_layout_page[data-v-0f748eb4]{display:flex;flex-direction:column;padding:10px;width:100%;height:100%;overflow:auto}.layout_page_no_margin[data-v-0f748eb4]{padding:0}.t_layout_page_item[data-v-c3b0e17b]{margin:8px;padding:16px;background:var(--el-bg-color);border-radius:4px}.page_item_no_margin[data-v-c3b0e17b]{margin:0;padding:0}.t-query-condition.el-form{position:relative;display:grid;gap:2px 8px;margin-bottom:-7px;text-align:left}.t-query-condition.el-form.isClose .btn{grid-area:unset!important;position:absolute;top:0;right:0}.t-query-condition.el-form .el-select,.t-query-condition.el-form .el-date-editor,.t-query-condition.el-form .ant-calendar-picker{width:100%}.t-query-condition.el-form .flex_end{grid-area:submit_btn;margin-top:2px}.t-query-condition.el-form .flex_end .el-form-item__content{display:flex;justify-content:flex-end;align-items:center;overflow:visible!important}.t-query-condition.el-form .btn{text-align:end}.t-query-condition.el-form .btn .el-form-item__content{display:flex;justify-content:flex-end}.t-query-condition.el-form .el-form-item{display:flex;margin-bottom:6px}.t-query-condition.el-form .el-form-item .el-form-item__label{flex-shrink:0;min-width:60px;padding-left:8px}.t-query-condition.el-form .el-form-item .el-form-item__content{flex-grow:1;margin-left:0!important}.t-query-condition.el-form .render_label .el-form-item__label{cursor:pointer;display:flex;align-items:center;justify-content:flex-end}.t-query-condition.el-form .render_label .el-form-item__label:before{margin-top:1px}.t-query-condition.el-form .btn_check{position:relative;top:-1px}.t-query-condition.el-form .btn_reset,.t-query-condition.el-form .btn_setting{position:relative;top:-1px;margin-left:8px}.t-query-condition.el-form .transfer-container{display:flex;justify-content:center;align-items:center;height:100%}.single_edit_cell{cursor:pointer}.el-dropdown-menu[data-v-eb8e8a4b]{padding:10px;font-size:14px}.el-dropdown-menu .el-dropdown-menu__item[data-v-eb8e8a4b]{display:flex;flex-direction:row;align-items:flex-start}.el-dropdown-menu .el-dropdown-menu__item .title[data-v-eb8e8a4b]{font-weight:700;margin-bottom:5px}.el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown[data-v-eb8e8a4b]{display:flex;flex-direction:column;max-height:300px;overflow-y:auto}.el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label[data-v-eb8e8a4b]{color:var(--el-text-color-primary)}.t-table[data-v-e071329a]{z-index:0;background-color:var(--el-bg-color)}.t-table[data-v-e071329a] .el-table__header-wrapper .el-table__header,.t-table[data-v-e071329a] .el-table__body-wrapper .el-table__body{margin:0}.t-table[data-v-e071329a] .el-pagination{display:flex;justify-content:flex-end;align-items:center;margin-top:20px;margin-right:calc(2% - 20px);background-color:var(--el-bg-color)}.t-table .el-table .el-tooltip div[data-v-e071329a]{-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;word-break:break-all;padding-left:10px;padding-right:10px}.t-table .el-table .el-tooltip .single_edit_cell[data-v-e071329a]{overflow:visible}.t-table .el-table .el-table__row[data-v-e071329a] .table_column_hidden .cell .el-radio__input,.t-table .el-table .el-table__row[data-v-e071329a] .table_column_hidden .cell .el-checkbox__input{display:none}.t-table .el-table .el-table__row[data-v-e071329a] .table_column_hidden .cell>span{display:none}.t-table .el-table th[data-v-e071329a],.t-table .el-table td[data-v-e071329a]{padding:8px 0}.t-table .el-table--border th:first-child .cell[data-v-e071329a],.t-table .el-table--border td:first-child .cell[data-v-e071329a]{padding-left:5px}.t-table .el-table .cell[data-v-e071329a]{padding:0 5px}.t-table .el-table--scrollable-y .el-table__fixed-right[data-v-e071329a]{right:8px!important}.t-table .header_wrap[data-v-e071329a]{display:flex;align-items:center}.t-table .header_wrap .toolbar_top[data-v-e071329a]{flex:0 70%;display:flex;padding:10px 0;align-items:center;justify-content:flex-end}.t-table .header_wrap .toolbar_top .toolbar[data-v-e071329a]{display:flex;justify-content:flex-end;width:100%}.t-table .header_wrap .toolbar_top .el-button--small[data-v-e071329a]{height:32px}.t-table .header_wrap .toolbar_top .el-button--success[data-v-e071329a]{background-color:#355db4;border:1px solid #355db4}.t-table .header_wrap .header_title[data-v-e071329a]{display:flex;align-items:center;flex:0 30%;padding:10px 0;font-size:16px;font-weight:700;line-height:35px;margin-left:10px;color:var(--el-text-color-primary)}.t-table .marginBttom[data-v-e071329a]{margin-bottom:-8px}.t-table .radioStyle[data-v-e071329a] .el-radio .el-radio__label{display:none}.t-table .radioStyle[data-v-e071329a] .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-table .radioStyle[data-v-e071329a] tbody .el-table__row,.t-table .cursor[data-v-e071329a] tbody .el-table__row{cursor:pointer}.t-table .row_sort[data-v-e071329a] tbody .el-table__row{cursor:move}.t-table .el-table .el-table__body .el-table__row[data-v-e071329a] .el-table__cell{padding:8px 0}.t-table .el-table .el-table__body .el-table__row[data-v-e071329a] .el-table__cell .cell{min-height:32px;line-height:32px}.t-table .tree_style[data-v-e071329a] .el-table__body-wrapper .el-table__body .cell{display:flex;align-items:center}.t-table .tree_style[data-v-e071329a] .el-table__body-wrapper .el-table__body .cell .el-table__expand-icon{display:flex;align-items:center;justify-content:center}.t-table .operator .operator_btn .el-button[data-v-e071329a]{margin:0 10px 0 0}.t-table[data-v-e071329a] .el-table__fixed-right{height:100%!important}.t-table .highlightCurrentRow[data-v-e071329a] .current-row{color:var(--el-color-primary);cursor:pointer;background-color:#355db4!important}.t-table .el-table--scrollable-y .el-table__body-wrapper[data-v-e071329a]{overflow-x:auto}.t-table .handle_wrap[data-v-e071329a]{position:sticky;z-index:10;right:0;bottom:-8px;margin:0 -8px -8px;padding:12px 16px;background-color:var(--el-bg-color);border-top:1px solid #ebeef5;text-align:right}.t-table .handle_wrap .el-btn[data-v-e071329a]{margin-left:8px}.t-form{display:flex;flex-wrap:wrap}.t-form .el-form-item{align-items:center}.t-form .el-form-item .el-form-item__content .el-input,.t-form .el-form-item .el-form-item__content .el-select,.t-form .el-form-item .el-form-item__content .el-date-editor,.t-form .el-form-item .el-form-item__content .el-textarea{width:100%}.t-form .el-form-item .el-form-item__content .el-input-number .el-input{width:inherit}.t-form .asterisk-left .el-form-item__label{margin-left:5px}.t-form .t-margin-top-5{margin-top:5px}.t-form .el-input-number .el-input .el-input__inner{text-align:left}.t-form .render_label .el-form-item__label{display:flex;align-items:center;justify-content:flex-end}.t-form .render_label .el-form-item__label:before{margin-top:1px}.t-form .render_laber_position_left .el-form-item__label,.t-form.el-form--label-top .render_label .el-form-item__label{justify-content:flex-start}.t-form .label_render{display:flex;align-items:center;justify-content:flex-end}.t-form .text_show{color:var(--el-text-color-primary)}.t-form .slot_label .el-form-item__content label{min-width:108px;color:var(--el-text-color-primary);text-align:right;margin-right:12px}.t-form .flex-box{display:-webkit-box;display:-webkit-flex;display:flex}.t-form .flex-ver{align-items:center;justify-content:center}.t-form .footer_btn{width:100%}.t_select .el-select-dropdown .all_checkbox[data-v-08c9d1f1]{margin-left:20px}.t-select-table .radioStyle .el-radio .el-radio__label{display:none}.t-select-table .radioStyle .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:none}.t-select-table .radioStyle .el-table__row{cursor:pointer}.t-select-table .keyUpStyle .el-table__body tbody .current-row{color:var(--el-color-primary)!important;cursor:pointer}.t-select-table .highlightCurrentRow :deep(.current-row){color:var(--el-color-primary);cursor:pointer}.t-select-table .t-table-select__table{padding:10px}.t-select-table .t-table-select__table .el-table__body,.t-select-table .t-table-select__table .el-table__header{margin:0}.t-select-table .t-table-select__table .table_query_condition{width:100%;overflow-x:auto;overflow-y:hidden;padding:10px}.t-select-table .t-table-select__page{padding-top:5px;padding-right:10px}.t-select-table .t-table-select__page .el-pagination{display:flex;justify-content:flex-end;align-items:center;margin-right:calc(2% - 20px);background-color:var(--el-table-tr-bg-color)}.t_detail[data-v-7e7b10a1] .el-descriptions__label{font-weight:700;min-width:65px}.t-button-tip[data-v-f04d93eb]{padding:0;height:auto}.t-button-tip[data-v-f04d93eb]:hover,.t-button-tip[data-v-f04d93eb]:focus{animation:jump-f04d93eb .3s}@keyframes jump-f04d93eb{0%{transform:translateY(0)}50%{transform:translateY(-3px)}to{transform:translateY(0)}}.fix-btn[data-v-0b6a53fb]{width:100%}.flex-box[data-v-0b6a53fb]{display:-webkit-box;display:-webkit-flex;display:flex}.flex-ver[data-v-0b6a53fb]{align-items:center;justify-content:center}.bottom-tool-bar[data-v-0b6a53fb]{height:60px;text-align:center;margin:10px 0;background:var(--el-bg-color)}.bar-fixed-bottom[data-v-0b6a53fb]{position:absolute;margin:0!important;z-index:99;bottom:0;left:0}.i_layout .section .layout-content[data-v-538784f1]{padding:0}.flex-box[data-v-538784f1]{display:-webkit-box;display:-webkit-flex;display:flex}.flex-ver[data-v-538784f1]{align-items:center;justify-content:center}.flex-col[data-v-538784f1]{flex-direction:column}.step-wizard[data-v-538784f1]{position:relative}.step-wizard .el-steps--simple[data-v-538784f1]{border-radius:0}.step-wizard .content-step-main .step-last .icon-success[data-v-538784f1]{color:#67c23a;font-size:95px;margin-top:40px}.step-wizard .content-step-main .step-last .success-margin[data-v-538784f1]{margin-bottom:70px}.timer-btn[data-v-12c2de2c]{position:relative}.timer-btn .sendSmsBtn[data-v-12c2de2c]{height:40px;line-height:40px;border-radius:4px;background:#ef473a;border:none;padding:0 6px;color:#fff;display:inline-block;min-width:92px;cursor:pointer}.timer-btn .dissendSmsBtn[data-v-12c2de2c]{opacity:.5;cursor:auto}.t_detail .el-collapse[data-v-2bdf2823]{border:none}.t_detail .el-collapse .el-collapse-item[data-v-2bdf2823]{background-color:var(--el-bg-color);margin-top:10px;border:none}.t_detail .el-collapse .el-collapse-item .el-collapse-item__header[data-v-2bdf2823]{border-bottom:1px solid var(--el-border-color);position:relative;padding-left:35px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_detail .el-collapse .el-collapse-item .el-collapse-item__header .t_btn[data-v-2bdf2823]{margin-right:15px}.t_detail .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow[data-v-2bdf2823]{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:17px;left:14px;display:inline-block;font-size:14px}.t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap[data-v-2bdf2823]{padding:16px;border:none}.t_detail .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content[data-v-2bdf2823]{padding-bottom:0}.t_detail .el-collapse .title_bold .collapse-item_title[data-v-2bdf2823]{font-weight:700}.t_detail .el-collapse .noTitle[data-v-2bdf2823]{margin-top:0}.t_detail .el-collapse .noTitle>div[data-v-2bdf2823]:first-child{display:none}.t_detail .el-collapse .disabledStyle .el-collapse-item__header[data-v-2bdf2823]{color:var(--el-collapse-header-text-color);cursor:default;padding-left:20px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_detail .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow[data-v-2bdf2823]{display:none}.t_detail .el-collapse .disabledStyle .el-collapse-item__header .t_btn[data-v-2bdf2823]{margin-right:15px}.t_form .el-collapse[data-v-435bc47a]{border:none}.t_form .el-collapse .el-collapse-item[data-v-435bc47a]{background-color:var(--el-bg-color);margin-top:10px;border:none}.t_form .el-collapse .el-collapse-item .el-collapse-item__header[data-v-435bc47a]{border-bottom:1px solid var(--el-border-color);position:relative;padding-left:35px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_form .el-collapse .el-collapse-item .el-collapse-item__header .t_btn[data-v-435bc47a]{margin-right:15px}.t_form .el-collapse .el-collapse-item .el-collapse-item__header .el-collapse-item__arrow[data-v-435bc47a]{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:17px;left:14px;display:inline-block;font-size:14px}.t_form .el-collapse .el-collapse-item .el-collapse-item__wrap[data-v-435bc47a]{padding:16px;border:none}.t_form .el-collapse .el-collapse-item .el-collapse-item__wrap .el-collapse-item__content[data-v-435bc47a]{padding-bottom:0}.t_form .el-collapse .title_bold .collapse-item_title[data-v-435bc47a]{font-weight:700}.t_form .el-collapse .noTitle>div[data-v-435bc47a]:first-child{display:none}.t_form .el-collapse .disabledStyle .el-collapse-item__header[data-v-435bc47a]{color:var(--el-collapse-header-text-color);cursor:default;padding-left:20px;font-size:14px;display:flex;align-items:center;justify-content:space-between}.t_form .el-collapse .disabledStyle .el-collapse-item__header .el-collapse-item__arrow[data-v-435bc47a]{display:none}.t_form .el-collapse .disabledStyle .el-collapse-item__header .t_btn[data-v-435bc47a]{margin-right:15px}.t_module_form[data-v-2b43e177]{position:relative;display:flex;flex-grow:1;flex-direction:column;height:100%;text-align:left;background-color:var(--el-bg-color-page);overflow:auto}.t_module_form .scroll_wrap[data-v-2b43e177]{display:flex;flex-direction:column;flex-grow:1}.t_module_form .scroll_wrap .el-page-header[data-v-2b43e177]{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;color:var(--el-text-color-primary);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";position:relative;padding:16px 24px;background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .el-page-header .el-page-header__breadcrumb[data-v-2b43e177]{margin:0}.t_module_form .scroll_wrap .el-page-header .el-page-header__left[data-v-2b43e177]{color:var(--el-text-color-primary);align-items:center;margin:0;width:100%}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-icon-back[data-v-2b43e177]{font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__left .el-page-header__title[data-v-2b43e177]{font-size:18px;font-weight:700}.t_module_form .scroll_wrap .el-page-header .el-page-header__content[data-v-2b43e177]{display:flex;align-items:center;justify-content:space-between;flex:60%}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .sub_title[data-v-2b43e177]{flex:30%}.t_module_form .scroll_wrap .el-page-header .el-page-header__content .extra[data-v-2b43e177]{flex:70%;display:flex;justify-content:flex-end}.t_module_form .scroll_wrap .noContent .el-page-header__left .el-divider[data-v-2b43e177],.t_module_form .scroll_wrap .isShowBack .el-page-header__left .el-page-header__icon[data-v-2b43e177]{display:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless[data-v-2b43e177]{background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .noTitle .el-collapse-header[data-v-2b43e177]{display:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item[data-v-2b43e177]{background-color:var(--el-bg-color);margin-top:10px;border:none}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item[data-v-2b43e177]:first-child{margin-top:0}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-header[data-v-2b43e177]{border-bottom:1px solid var(--el-border-color)}.t_module_form .scroll_wrap .t_form .el-collapse-borderless .el-collapse-item .el-collapse-content-box[data-v-2b43e177]{padding:16px}.t_module_form .scroll_wrap .tabs[data-v-2b43e177]{padding:0;margin:0}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__header[data-v-2b43e177]{margin:0;padding:0 10px;background-color:var(--el-bg-color)}.t_module_form .scroll_wrap .tabs .el-tabs .el-tabs__nav-wrap[data-v-2b43e177]:after{height:1px}.t_module_form .handle_wrap[data-v-2b43e177]{position:fixed;z-index:4;right:0;bottom:0px;height:60px;display:flex;align-items:center;justify-content:flex-end;background-color:var(--el-bg-color);border-top:1px solid var(--el-border-color);text-align:right;width:100%}.t_module_form .handle_wrap .el-button[data-v-2b43e177]:last-child{margin-right:15px}.t_adaptive_page[data-v-f41d1573]{display:flex;align-content:center;width:100%;height:100%;overflow:hidden}.t_adaptive_page .left_content[data-v-f41d1573]{background:var(--el-bg-color);margin:8px 0 8px 8px}.t_adaptive_page .left_content .left_tree[data-v-f41d1573]{display:flex;flex-direction:column;width:100%;height:100%;padding:10px;overflow-y:auto}.t_adaptive_page .right_content[data-v-f41d1573]{display:flex;flex:1;flex-direction:column;width:100%;height:100%;overflow:hidden}.t_adaptive_page .right_content .table_main[data-v-f41d1573]{flex:1;overflow-y:auto;width:100%;height:100vh}.t_adaptive_page .right_content .table_main .t-table[data-v-f41d1573]{display:flex;flex:1;flex-direction:column;width:100%;height:100%}.t-date-picker[data-v-e14c5da5]{width:100%}
package/lib/style.css.gz CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fengmao-ui",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "Vue3 中基于Element-plus二次封装基础组件文档",
5
5
  "author": "wocwin",
6
6
  "license": "MIT",