@fmdevui/fm-dev 1.0.115 → 1.0.117
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/core/index.d.ts +1 -0
- package/es/core/plugins/index.d.ts +1 -0
- package/es/core/ui/components/fmHBarChart/index.vue.d.ts +121 -8
- package/es/core/ui/components/index.d.ts +120 -7
- package/es/index.mjs +3 -0
- package/es/packages/core/hook/useChart.mjs +2 -0
- package/es/packages/core/index.mjs +4 -0
- package/es/packages/core/plugins/index.mjs +3 -0
- package/es/packages/core/ui/components/fmHBarChart/index.vue2.mjs +40 -10
- package/{lib/index.css → es/version.css} +2 -2
- package/index.js +1566 -172
- package/index.min.js +60 -59
- package/index.min.mjs +60 -59
- package/index.mjs +1564 -172
- package/lib/core/index.d.ts +1 -0
- package/lib/core/plugins/index.d.ts +1 -0
- package/lib/core/ui/components/fmHBarChart/index.vue.d.ts +121 -8
- package/lib/core/ui/components/index.d.ts +120 -7
- package/lib/index.js +4 -0
- package/lib/packages/core/hook/useChart.js +2 -0
- package/lib/packages/core/index.js +5 -0
- package/lib/packages/core/plugins/index.js +9 -0
- package/lib/packages/core/ui/components/fmHBarChart/index.vue2.js +40 -10
- package/package.json +1 -1
- /package/{es/make-installer.css → lib/defaults.css} +0 -0
package/es/core/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './echarts';
|
|
@@ -1,10 +1,123 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
height: {
|
|
4
|
+
type: NumberConstructor;
|
|
5
|
+
default: () => string;
|
|
6
|
+
};
|
|
7
|
+
loading: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
isEmpty: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
colors: {
|
|
16
|
+
type: PropType<string[]>;
|
|
17
|
+
default: () => string[];
|
|
18
|
+
};
|
|
19
|
+
data: {
|
|
20
|
+
type: PropType<number[]>;
|
|
21
|
+
default: () => number[];
|
|
22
|
+
};
|
|
23
|
+
xAxisData: {
|
|
24
|
+
type: PropType<string[]>;
|
|
25
|
+
default: () => never[];
|
|
26
|
+
};
|
|
27
|
+
barWidth: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
stack: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
showAxisLabel: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
showAxisLine: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
showSplitLine: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
showTooltip: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
showLegend: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
legendPosition: {
|
|
56
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
60
|
+
height: {
|
|
61
|
+
type: NumberConstructor;
|
|
62
|
+
default: () => string;
|
|
63
|
+
};
|
|
64
|
+
loading: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
isEmpty: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
default: boolean;
|
|
71
|
+
};
|
|
72
|
+
colors: {
|
|
73
|
+
type: PropType<string[]>;
|
|
74
|
+
default: () => string[];
|
|
75
|
+
};
|
|
76
|
+
data: {
|
|
77
|
+
type: PropType<number[]>;
|
|
78
|
+
default: () => number[];
|
|
79
|
+
};
|
|
80
|
+
xAxisData: {
|
|
81
|
+
type: PropType<string[]>;
|
|
82
|
+
default: () => never[];
|
|
83
|
+
};
|
|
84
|
+
barWidth: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
stack: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
showAxisLabel: {
|
|
93
|
+
type: BooleanConstructor;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
96
|
+
showAxisLine: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
};
|
|
100
|
+
showSplitLine: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
showTooltip: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
showLegend: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
112
|
+
legendPosition: {
|
|
113
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
}>> & Readonly<{}>, {
|
|
117
|
+
data: number[];
|
|
118
|
+
height: number;
|
|
6
119
|
xAxisData: string[];
|
|
7
|
-
barWidth: string
|
|
120
|
+
barWidth: string;
|
|
8
121
|
stack: boolean;
|
|
9
122
|
loading: boolean;
|
|
10
123
|
isEmpty: boolean;
|
|
@@ -14,8 +127,8 @@ declare const _default: DefineComponent<BarChartProps, {}, {}, {}, {}, Component
|
|
|
14
127
|
showSplitLine: boolean;
|
|
15
128
|
showTooltip: boolean;
|
|
16
129
|
showLegend: boolean;
|
|
17
|
-
legendPosition:
|
|
18
|
-
}, {}, {}, {}, string, ComponentProvideOptions,
|
|
130
|
+
legendPosition: "left" | "right" | "bottom" | "top";
|
|
131
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
19
132
|
chartRef: HTMLDivElement;
|
|
20
133
|
}, HTMLDivElement>;
|
|
21
134
|
export default _default;
|
|
@@ -4,7 +4,6 @@ import { TreeKey } from 'element-plus';
|
|
|
4
4
|
import { TQueryConditionProps } from './querycondition/type';
|
|
5
5
|
import { FmSelectTableProps } from './selecttable/type';
|
|
6
6
|
import { FmButtonSelfProps } from './fmbutton/type';
|
|
7
|
-
import { BarChartProps, BarDataItem, LegendPosition } from 'fm-dev';
|
|
8
7
|
export * from './selecttable/type';
|
|
9
8
|
export * from './selecttable/ClickOutside';
|
|
10
9
|
export * from './fmbutton/type';
|
|
@@ -2330,11 +2329,125 @@ declare const FmAddressParsing: DefineComponent<ExtractPropTypes<{
|
|
|
2330
2329
|
fcity: string;
|
|
2331
2330
|
fcounty: string;
|
|
2332
2331
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2333
|
-
declare const FmHBarChart: DefineComponent<
|
|
2334
|
-
|
|
2335
|
-
|
|
2332
|
+
declare const FmHBarChart: DefineComponent<ExtractPropTypes<{
|
|
2333
|
+
height: {
|
|
2334
|
+
type: NumberConstructor;
|
|
2335
|
+
default: () => string;
|
|
2336
|
+
};
|
|
2337
|
+
loading: {
|
|
2338
|
+
type: BooleanConstructor;
|
|
2339
|
+
default: boolean;
|
|
2340
|
+
};
|
|
2341
|
+
isEmpty: {
|
|
2342
|
+
type: BooleanConstructor;
|
|
2343
|
+
default: boolean;
|
|
2344
|
+
};
|
|
2345
|
+
colors: {
|
|
2346
|
+
type: PropType<string[]>;
|
|
2347
|
+
default: () => string[];
|
|
2348
|
+
};
|
|
2349
|
+
data: {
|
|
2350
|
+
type: PropType<number[]>;
|
|
2351
|
+
default: () => number[];
|
|
2352
|
+
};
|
|
2353
|
+
xAxisData: {
|
|
2354
|
+
type: PropType<string[]>;
|
|
2355
|
+
default: () => never[];
|
|
2356
|
+
};
|
|
2357
|
+
barWidth: {
|
|
2358
|
+
type: StringConstructor;
|
|
2359
|
+
default: string;
|
|
2360
|
+
};
|
|
2361
|
+
stack: {
|
|
2362
|
+
type: BooleanConstructor;
|
|
2363
|
+
default: boolean;
|
|
2364
|
+
};
|
|
2365
|
+
showAxisLabel: {
|
|
2366
|
+
type: BooleanConstructor;
|
|
2367
|
+
default: boolean;
|
|
2368
|
+
};
|
|
2369
|
+
showAxisLine: {
|
|
2370
|
+
type: BooleanConstructor;
|
|
2371
|
+
default: boolean;
|
|
2372
|
+
};
|
|
2373
|
+
showSplitLine: {
|
|
2374
|
+
type: BooleanConstructor;
|
|
2375
|
+
default: boolean;
|
|
2376
|
+
};
|
|
2377
|
+
showTooltip: {
|
|
2378
|
+
type: BooleanConstructor;
|
|
2379
|
+
default: boolean;
|
|
2380
|
+
};
|
|
2381
|
+
showLegend: {
|
|
2382
|
+
type: BooleanConstructor;
|
|
2383
|
+
default: boolean;
|
|
2384
|
+
};
|
|
2385
|
+
legendPosition: {
|
|
2386
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
2387
|
+
default: string;
|
|
2388
|
+
};
|
|
2389
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
2390
|
+
height: {
|
|
2391
|
+
type: NumberConstructor;
|
|
2392
|
+
default: () => string;
|
|
2393
|
+
};
|
|
2394
|
+
loading: {
|
|
2395
|
+
type: BooleanConstructor;
|
|
2396
|
+
default: boolean;
|
|
2397
|
+
};
|
|
2398
|
+
isEmpty: {
|
|
2399
|
+
type: BooleanConstructor;
|
|
2400
|
+
default: boolean;
|
|
2401
|
+
};
|
|
2402
|
+
colors: {
|
|
2403
|
+
type: PropType<string[]>;
|
|
2404
|
+
default: () => string[];
|
|
2405
|
+
};
|
|
2406
|
+
data: {
|
|
2407
|
+
type: PropType<number[]>;
|
|
2408
|
+
default: () => number[];
|
|
2409
|
+
};
|
|
2410
|
+
xAxisData: {
|
|
2411
|
+
type: PropType<string[]>;
|
|
2412
|
+
default: () => never[];
|
|
2413
|
+
};
|
|
2414
|
+
barWidth: {
|
|
2415
|
+
type: StringConstructor;
|
|
2416
|
+
default: string;
|
|
2417
|
+
};
|
|
2418
|
+
stack: {
|
|
2419
|
+
type: BooleanConstructor;
|
|
2420
|
+
default: boolean;
|
|
2421
|
+
};
|
|
2422
|
+
showAxisLabel: {
|
|
2423
|
+
type: BooleanConstructor;
|
|
2424
|
+
default: boolean;
|
|
2425
|
+
};
|
|
2426
|
+
showAxisLine: {
|
|
2427
|
+
type: BooleanConstructor;
|
|
2428
|
+
default: boolean;
|
|
2429
|
+
};
|
|
2430
|
+
showSplitLine: {
|
|
2431
|
+
type: BooleanConstructor;
|
|
2432
|
+
default: boolean;
|
|
2433
|
+
};
|
|
2434
|
+
showTooltip: {
|
|
2435
|
+
type: BooleanConstructor;
|
|
2436
|
+
default: boolean;
|
|
2437
|
+
};
|
|
2438
|
+
showLegend: {
|
|
2439
|
+
type: BooleanConstructor;
|
|
2440
|
+
default: boolean;
|
|
2441
|
+
};
|
|
2442
|
+
legendPosition: {
|
|
2443
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
2444
|
+
default: string;
|
|
2445
|
+
};
|
|
2446
|
+
}>> & Readonly<{}>, {
|
|
2447
|
+
data: number[];
|
|
2448
|
+
height: number;
|
|
2336
2449
|
xAxisData: string[];
|
|
2337
|
-
barWidth: string
|
|
2450
|
+
barWidth: string;
|
|
2338
2451
|
stack: boolean;
|
|
2339
2452
|
loading: boolean;
|
|
2340
2453
|
isEmpty: boolean;
|
|
@@ -2344,8 +2457,8 @@ declare const FmHBarChart: DefineComponent<BarChartProps, {}, {}, {}, {}, Compon
|
|
|
2344
2457
|
showSplitLine: boolean;
|
|
2345
2458
|
showTooltip: boolean;
|
|
2346
2459
|
showLegend: boolean;
|
|
2347
|
-
legendPosition:
|
|
2348
|
-
}, {}, {}, {}, string, ComponentProvideOptions,
|
|
2460
|
+
legendPosition: "left" | "right" | "bottom" | "top";
|
|
2461
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
2349
2462
|
chartRef: HTMLDivElement;
|
|
2350
2463
|
}, HTMLDivElement>;
|
|
2351
2464
|
export { FmTransfer, FmNoticeBar, FmDragImg, Fmselect, FmAutocomplete, Fminputdropdown, Fminputtable, FmTree, Fmdatepicker, FmQueryCondition, FmMoreChoose, FmRenderComp, FmSelectTable, FmRenderCol, FmButton, FmAddressParsing, FmHBarChart, elSvg };
|
package/es/index.mjs
CHANGED
|
@@ -39,6 +39,9 @@ export { auth, authAll, auths, hAuth, hAuthAll, hAuths } from './packages/core/a
|
|
|
39
39
|
export { useDateTimeShortCust } from './packages/core/hook/dateTimeShortCust.mjs';
|
|
40
40
|
export { useVxeTable } from './packages/core/hook/useVxeTableOptionsHook.mjs';
|
|
41
41
|
export { useChart, useChartComponent, useChartOps } from './packages/core/hook/useChart.mjs';
|
|
42
|
+
import * as core from './node_modules/.pnpm/echarts@6.0.0/node_modules/echarts/core.mjs';
|
|
43
|
+
export { core as echarts };
|
|
44
|
+
export { graphic } from './packages/core/plugins/echarts.mjs';
|
|
42
45
|
export { addressparsing } from './packages/core/utils/cityparess/index.mjs';
|
|
43
46
|
|
|
44
47
|
const install = installer.install;
|
|
@@ -72,6 +72,8 @@ function useChart(options = {}) {
|
|
|
72
72
|
let menuOpenStopHandle = null;
|
|
73
73
|
let menuTypeStopHandle = null;
|
|
74
74
|
const setupMenuWatchers = () => {
|
|
75
|
+
nextTick(requestAnimationResize);
|
|
76
|
+
setTimeout(() => multiDelayResize(MENU_RESIZE_DELAYS), 0);
|
|
75
77
|
};
|
|
76
78
|
const cleanupMenuWatchers = () => {
|
|
77
79
|
menuOpenStopHandle?.();
|
|
@@ -10,6 +10,7 @@ export { auth, authAll, auths, hAuth, hAuthAll, hAuths } from './auth/index.mjs'
|
|
|
10
10
|
export { useDateTimeShortCust } from './hook/dateTimeShortCust.mjs';
|
|
11
11
|
export { useVxeTable } from './hook/useVxeTableOptionsHook.mjs';
|
|
12
12
|
export { useChart, useChartComponent, useChartOps } from './hook/useChart.mjs';
|
|
13
|
+
import './plugins/index.mjs';
|
|
13
14
|
export { addressparsing } from './utils/cityparess/index.mjs';
|
|
14
15
|
import './types/index.mjs';
|
|
15
16
|
export { elSvg } from './ui/components/svgIcon/index.mjs';
|
|
@@ -38,3 +39,6 @@ export { AppItem, getAppItemData, getAppItemText } from './utils/comm/gloabdata.
|
|
|
38
39
|
export { default as commonFunction } from './utils/comm/commonFunction.mjs';
|
|
39
40
|
export { commonFunctionObj } from './utils/comm/index.mjs';
|
|
40
41
|
export { PUB } from './utils/const/index.mjs';
|
|
42
|
+
import * as core from '../../node_modules/.pnpm/echarts@6.0.0/node_modules/echarts/core.mjs';
|
|
43
|
+
export { core as echarts };
|
|
44
|
+
export { graphic } from './plugins/echarts.mjs';
|
|
@@ -6,21 +6,51 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
6
6
|
...{ name: "FmHBarChart" },
|
|
7
7
|
__name: "index",
|
|
8
8
|
props: {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
9
|
+
// 基础配置
|
|
10
|
+
height: {
|
|
11
|
+
type: Number,
|
|
12
|
+
default: () => useChartOps().chartHeight
|
|
13
|
+
},
|
|
14
|
+
loading: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: false
|
|
17
|
+
},
|
|
18
|
+
isEmpty: {
|
|
19
|
+
type: Boolean,
|
|
20
|
+
default: false
|
|
21
|
+
},
|
|
22
|
+
colors: {
|
|
23
|
+
type: Array,
|
|
24
|
+
default: () => useChartOps().colors
|
|
25
|
+
},
|
|
26
|
+
// 数据配置
|
|
27
|
+
data: {
|
|
28
|
+
type: Array,
|
|
29
|
+
default: () => [0, 0, 0, 0, 0, 0, 0]
|
|
30
|
+
},
|
|
31
|
+
xAxisData: {
|
|
32
|
+
type: Array,
|
|
33
|
+
default: () => []
|
|
34
|
+
},
|
|
35
|
+
barWidth: {
|
|
36
|
+
type: String,
|
|
37
|
+
default: "36%"
|
|
38
|
+
},
|
|
39
|
+
stack: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
default: false
|
|
42
|
+
},
|
|
43
|
+
// 轴线显示配置
|
|
18
44
|
showAxisLabel: { type: Boolean, default: true },
|
|
19
45
|
showAxisLine: { type: Boolean, default: true },
|
|
20
46
|
showSplitLine: { type: Boolean, default: true },
|
|
47
|
+
// 交互配置
|
|
21
48
|
showTooltip: { type: Boolean, default: true },
|
|
22
49
|
showLegend: { type: Boolean, default: false },
|
|
23
|
-
legendPosition: {
|
|
50
|
+
legendPosition: {
|
|
51
|
+
type: String,
|
|
52
|
+
default: "bottom"
|
|
53
|
+
}
|
|
24
54
|
},
|
|
25
55
|
setup(__props) {
|
|
26
56
|
const props = __props;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.drag_verify[data-v-9e8c9ed2]{background-color:#e8e8e8;overflow:hidden;position:relative;text-align:center}.drag_verify .dv_handler[data-v-9e8c9ed2]{cursor:move;left:0;position:absolute;top:0}.drag_verify .dv_handler i[data-v-9e8c9ed2]{color:#666;font-size:16px;padding-left:0}.drag_verify .dv_handler .el-icon-circle-check[data-v-9e8c9ed2]{color:#6c6;margin-top:9px}.drag_verify .dv_progress_bar[data-v-9e8c9ed2]{height:34px;position:absolute;width:0}.drag_verify .dv_text[data-v-9e8c9ed2]{background:-webkit-gradient(linear,left top,right top,color-stop(0,var(--textColor)),color-stop(.4,var(--textColor)),color-stop(.5,#fff),color-stop(.6,var(--textColor)),color-stop(1,var(--textColor)));-webkit-background-clip:text;color:transparent;position:absolute;top:0;-moz-user-select:none;-webkit-user-select:none;user-select:none;-o-user-select:none;-ms-user-select:none;-webkit-text-fill-color:transparent;-webkit-text-size-adjust:none;animation:slidetounlock 3s infinite}.drag_verify .dv_text[data-v-9e8c9ed2] *{-webkit-text-fill-color:var(--textColor)}.goFirst[data-v-9e8c9ed2]{left:0!important;transition:left .5s}.goOrigin[data-v-9e8c9ed2]{transition:transform .5s}.goKeep[data-v-9e8c9ed2]{transition:left .2s}.goFirst2[data-v-9e8c9ed2]{transition:width .5s;width:0!important}.drag-verify-container[data-v-9e8c9ed2]{border-radius:50%;line-height:0;position:relative}.move-bar[data-v-9e8c9ed2]{position:absolute;z-index:100}.clip-bar[data-v-9e8c9ed2]{background:hsla(0,0%,100%,.8);position:absolute}.refresh[data-v-9e8c9ed2]{cursor:pointer;font-size:20px;position:absolute;right:5px;top:5px;z-index:200}.tips[data-v-9e8c9ed2]{bottom:25px;font-size:12px;height:20px;line-height:20px;position:absolute;text-align:center;width:100%;z-index:200}.tips.success[data-v-9e8c9ed2]{background:hsla(0,0%,100%,.6);color:green}.tips.danger[data-v-9e8c9ed2]{background:rgba(0,0,0,.6);color:#ff0}.check-img[data-v-9e8c9ed2]{border-radius:50%;width:100%}
|
|
2
|
-
|
|
3
1
|
.query-form[data-v-88872668]{z-index:9999}[data-v-88872668] .el-select-dropdown{.el-scrollbar>.el-scrollbar__bar{display:none!important}}.popper-class[data-v-88872668]{min-width:400px!important}[data-v-88872668] .popper-class :deep(.el-select-dropdown__wrap){max-height:600px!important}
|
|
2
|
+
|
|
3
|
+
.drag_verify[data-v-9e8c9ed2]{background-color:#e8e8e8;overflow:hidden;position:relative;text-align:center}.drag_verify .dv_handler[data-v-9e8c9ed2]{cursor:move;left:0;position:absolute;top:0}.drag_verify .dv_handler i[data-v-9e8c9ed2]{color:#666;font-size:16px;padding-left:0}.drag_verify .dv_handler .el-icon-circle-check[data-v-9e8c9ed2]{color:#6c6;margin-top:9px}.drag_verify .dv_progress_bar[data-v-9e8c9ed2]{height:34px;position:absolute;width:0}.drag_verify .dv_text[data-v-9e8c9ed2]{background:-webkit-gradient(linear,left top,right top,color-stop(0,var(--textColor)),color-stop(.4,var(--textColor)),color-stop(.5,#fff),color-stop(.6,var(--textColor)),color-stop(1,var(--textColor)));-webkit-background-clip:text;color:transparent;position:absolute;top:0;-moz-user-select:none;-webkit-user-select:none;user-select:none;-o-user-select:none;-ms-user-select:none;-webkit-text-fill-color:transparent;-webkit-text-size-adjust:none;animation:slidetounlock 3s infinite}.drag_verify .dv_text[data-v-9e8c9ed2] *{-webkit-text-fill-color:var(--textColor)}.goFirst[data-v-9e8c9ed2]{left:0!important;transition:left .5s}.goOrigin[data-v-9e8c9ed2]{transition:transform .5s}.goKeep[data-v-9e8c9ed2]{transition:left .2s}.goFirst2[data-v-9e8c9ed2]{transition:width .5s;width:0!important}.drag-verify-container[data-v-9e8c9ed2]{border-radius:50%;line-height:0;position:relative}.move-bar[data-v-9e8c9ed2]{position:absolute;z-index:100}.clip-bar[data-v-9e8c9ed2]{background:hsla(0,0%,100%,.8);position:absolute}.refresh[data-v-9e8c9ed2]{cursor:pointer;font-size:20px;position:absolute;right:5px;top:5px;z-index:200}.tips[data-v-9e8c9ed2]{bottom:25px;font-size:12px;height:20px;line-height:20px;position:absolute;text-align:center;width:100%;z-index:200}.tips.success[data-v-9e8c9ed2]{background:hsla(0,0%,100%,.6);color:green}.tips.danger[data-v-9e8c9ed2]{background:rgba(0,0,0,.6);color:#ff0}.check-img[data-v-9e8c9ed2]{border-radius:50%;width:100%}
|
|
4
4
|
.el-select-dropdown__wrap[max-height],.popper-class .el-select-dropdown__wrap{max-height:450px!important}.el-table .selected-row,.popper-class .selected-row{background-color:var(--el-color-primary-light-9)!important;border-left:3px solid var(--el-color-primary)!important}.el-table .selected-row:hover,.popper-class .selected-row:hover{background-color:var(--el-color-primary-light-8)!important}.el-table .selected-row td,.popper-class .selected-row td{background-color:var(--el-color-primary-light-9)!important}.el-table .selected-row:hover td,.popper-class .selected-row:hover td{background-color:var(--el-color-primary-light-8)!important}
|