@fmdevui/fm-dev 1.0.17 → 1.0.18

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.
@@ -0,0 +1,118 @@
1
+ import _sfc_main from './dragVerifyImgRotate.vue2.mjs';
2
+ import { createElementBlock, openBlock, createElementVNode, normalizeStyle, createCommentVNode, normalizeClass, toDisplayString, withModifiers } from 'vue';
3
+ import './dragVerifyImgRotate.vue3.mjs';
4
+ import './dragVerifyImgRotate.vue4.mjs';
5
+ import _export_sfc from '../../../../../_virtual/_plugin-vue_export-helper.mjs';
6
+
7
+ const _hoisted_1 = { class: "drag-verify-container" };
8
+ const _hoisted_2 = ["src"];
9
+ const _hoisted_3 = {
10
+ key: 0,
11
+ class: "tips success"
12
+ };
13
+ const _hoisted_4 = {
14
+ key: 1,
15
+ class: "tips danger"
16
+ };
17
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
18
+ return openBlock(), createElementBlock("div", _hoisted_1, [
19
+ createElementVNode(
20
+ "div",
21
+ {
22
+ style: normalizeStyle([$options.dragVerifyImgStyle, { "background-color": "var(--el-color-primary)" }])
23
+ },
24
+ [
25
+ createElementVNode("img", {
26
+ ref: "checkImg",
27
+ src: $props.imgsrc,
28
+ class: normalizeClass(["check-img", { goOrigin: $data.isOk }]),
29
+ onLoad: _cache[0] || (_cache[0] = (...args) => $options.checkimgLoaded && $options.checkimgLoaded(...args)),
30
+ style: normalizeStyle($data.imgStyle),
31
+ alt: ""
32
+ }, null, 46, _hoisted_2),
33
+ $props.showTips && $props.isPassing ? (openBlock(), createElementBlock(
34
+ "div",
35
+ _hoisted_3,
36
+ toDisplayString($props.successTip),
37
+ 1
38
+ /* TEXT */
39
+ )) : createCommentVNode("v-if", true),
40
+ $props.showTips && !$props.isPassing && $data.showErrorTip ? (openBlock(), createElementBlock(
41
+ "div",
42
+ _hoisted_4,
43
+ toDisplayString($props.failTip),
44
+ 1
45
+ /* TEXT */
46
+ )) : createCommentVNode("v-if", true)
47
+ ],
48
+ 4
49
+ /* STYLE */
50
+ ),
51
+ createElementVNode(
52
+ "div",
53
+ {
54
+ ref: "dragVerify",
55
+ class: "drag_verify",
56
+ style: normalizeStyle($options.dragVerifyStyle),
57
+ onMousemove: _cache[3] || (_cache[3] = (...args) => $options.dragMoving && $options.dragMoving(...args)),
58
+ onMouseup: _cache[4] || (_cache[4] = (...args) => $options.dragFinish && $options.dragFinish(...args)),
59
+ onMouseleave: _cache[5] || (_cache[5] = (...args) => $options.dragFinish && $options.dragFinish(...args)),
60
+ onTouchmove: _cache[6] || (_cache[6] = withModifiers((...args) => $options.dragMoving && $options.dragMoving(...args), ["prevent"])),
61
+ onTouchend: _cache[7] || (_cache[7] = withModifiers((...args) => $options.dragFinish && $options.dragFinish(...args), ["prevent"]))
62
+ },
63
+ [
64
+ createElementVNode(
65
+ "div",
66
+ {
67
+ class: normalizeClass(["dv_progress_bar", { goFirst2: $data.isOk }]),
68
+ ref: "progressBar",
69
+ style: normalizeStyle($options.progressBarStyle)
70
+ },
71
+ toDisplayString($options.successMessage),
72
+ 7
73
+ /* TEXT, CLASS, STYLE */
74
+ ),
75
+ createElementVNode(
76
+ "div",
77
+ {
78
+ class: "dv_text",
79
+ style: normalizeStyle($options.textStyle),
80
+ ref: "message"
81
+ },
82
+ toDisplayString($options.message),
83
+ 5
84
+ /* TEXT, STYLE */
85
+ ),
86
+ createElementVNode(
87
+ "div",
88
+ {
89
+ class: normalizeClass(["dv_handler dv_handler_bg", { goFirst: $data.isOk }]),
90
+ onMousedown: _cache[1] || (_cache[1] = (...args) => $options.dragStart && $options.dragStart(...args)),
91
+ onTouchstart: _cache[2] || (_cache[2] = withModifiers((...args) => $options.dragStart && $options.dragStart(...args), ["prevent"])),
92
+ ref: "handler",
93
+ style: normalizeStyle([$options.handlerStyle, { "background-color": "var(--el-color-primary)" }])
94
+ },
95
+ [
96
+ createElementVNode(
97
+ "i",
98
+ {
99
+ class: normalizeClass($props.handlerIcon),
100
+ style: { "color": "#fff" }
101
+ },
102
+ null,
103
+ 2
104
+ /* CLASS */
105
+ )
106
+ ],
107
+ 38
108
+ /* CLASS, STYLE, NEED_HYDRATION */
109
+ )
110
+ ],
111
+ 36
112
+ /* STYLE, NEED_HYDRATION */
113
+ )
114
+ ]);
115
+ }
116
+ var dragimg = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-9e8c9ed2"]]);
117
+
118
+ export { dragimg as default };
@@ -0,0 +1,266 @@
1
+ var _sfc_main = {
2
+ name: "dragVerify",
3
+ props: {
4
+ isPassing: {
5
+ type: Boolean,
6
+ default: false
7
+ },
8
+ width: {
9
+ type: Number,
10
+ default: 250
11
+ },
12
+ height: {
13
+ type: Number,
14
+ default: 40
15
+ },
16
+ text: {
17
+ type: String,
18
+ default: "swiping to the right side"
19
+ },
20
+ successText: {
21
+ type: String,
22
+ default: "success"
23
+ },
24
+ background: {
25
+ type: String,
26
+ default: "#eee"
27
+ },
28
+ progressBarBg: {
29
+ type: String,
30
+ default: "#76c61d"
31
+ },
32
+ completedBg: {
33
+ type: String,
34
+ default: "#76c61d"
35
+ },
36
+ circle: {
37
+ type: Boolean,
38
+ default: false
39
+ },
40
+ radius: {
41
+ type: String,
42
+ default: "4px"
43
+ },
44
+ handlerIcon: {
45
+ type: String
46
+ },
47
+ successIcon: {
48
+ type: String
49
+ },
50
+ handlerBg: {
51
+ type: String,
52
+ default: "#fff"
53
+ },
54
+ textSize: {
55
+ type: String,
56
+ default: "14px"
57
+ },
58
+ textColor: {
59
+ type: String,
60
+ default: "#333"
61
+ },
62
+ imgsrc: {
63
+ type: String
64
+ },
65
+ showTips: {
66
+ type: Boolean,
67
+ default: true
68
+ },
69
+ successTip: {
70
+ type: String,
71
+ default: "\u9A8C\u8BC1\u901A\u8FC7"
72
+ },
73
+ failTip: {
74
+ type: String,
75
+ default: "\u9A8C\u8BC1\u5931\u8D25"
76
+ },
77
+ diffDegree: {
78
+ type: Number,
79
+ default: 10
80
+ },
81
+ minDegree: {
82
+ type: Number,
83
+ default: 90
84
+ },
85
+ maxDegree: {
86
+ type: Number,
87
+ default: 270
88
+ }
89
+ },
90
+ mounted: function() {
91
+ const dragEl = this.$refs.dragVerify;
92
+ dragEl.style.setProperty("--textColor", this.textColor);
93
+ dragEl.style.setProperty("--width", Math.floor(this.width / 2) + "px");
94
+ dragEl.style.setProperty("--pwidth", -Math.floor(this.width / 2) + "px");
95
+ },
96
+ computed: {
97
+ handlerStyle: function() {
98
+ return {
99
+ width: this.height + "px",
100
+ height: this.height + "px",
101
+ background: this.handlerBg
102
+ };
103
+ },
104
+ message: function() {
105
+ return this.isPassing ? "" : this.text;
106
+ },
107
+ successMessage: function() {
108
+ return this.isPassing ? this.successText : "";
109
+ },
110
+ dragVerifyStyle: function() {
111
+ return {
112
+ width: this.width + "px",
113
+ height: this.height + "px",
114
+ lineHeight: this.height + "px",
115
+ marginTop: "20px",
116
+ background: this.background,
117
+ borderRadius: this.circle ? this.height / 2 + "px" : this.radius
118
+ };
119
+ },
120
+ dragVerifyImgStyle: function() {
121
+ return {
122
+ width: this.width + "px",
123
+ height: this.width + "px",
124
+ position: "relative",
125
+ overflow: "hidden",
126
+ "border-radius": "50%"
127
+ };
128
+ },
129
+ progressBarStyle: function() {
130
+ return {
131
+ background: this.progressBarBg,
132
+ height: this.height + "px",
133
+ borderRadius: this.circle ? this.height / 2 + "px 0 0 " + this.height / 2 + "px" : this.radius
134
+ };
135
+ },
136
+ textStyle: function() {
137
+ return {
138
+ height: this.height + "px",
139
+ width: this.width + "px",
140
+ fontSize: this.textSize
141
+ };
142
+ },
143
+ factor: function() {
144
+ if (this.minDegree == this.maxDegree) {
145
+ return Math.floor(1 + Math.random() * 6) / 10 + 1;
146
+ }
147
+ return 1;
148
+ }
149
+ },
150
+ data() {
151
+ return {
152
+ isMoving: false,
153
+ x: 0,
154
+ isOk: false,
155
+ showBar: false,
156
+ showErrorTip: false,
157
+ ranRotate: 0,
158
+ cRotate: 0,
159
+ imgStyle: {}
160
+ };
161
+ },
162
+ methods: {
163
+ checkimgLoaded: function() {
164
+ var minDegree = this.minDegree;
165
+ var maxDegree = this.maxDegree;
166
+ var ranRotate = Math.floor(minDegree + Math.random() * (maxDegree - minDegree));
167
+ this.ranRotate = ranRotate;
168
+ this.imgStyle = {
169
+ transform: `rotateZ(${ranRotate}deg)`
170
+ };
171
+ },
172
+ dragStart: function(e) {
173
+ if (!this.isPassing) {
174
+ this.isMoving = true;
175
+ this.x = e.pageX || e.touches[0].pageX;
176
+ }
177
+ this.showBar = true;
178
+ this.showErrorTip = false;
179
+ this.$emit("handlerMove");
180
+ },
181
+ dragMoving: function(e) {
182
+ if (this.isMoving && !this.isPassing) {
183
+ var _x = (e.pageX || e.touches[0].pageX) - this.x;
184
+ var handler = this.$refs.handler;
185
+ handler.style.left = _x + "px";
186
+ var progressBar = this.$refs.progressBar;
187
+ progressBar.style.width = _x + this.height / 2 + "px";
188
+ var cRotate = Math.ceil(_x / (this.width - this.height) * this.maxDegree * this.factor);
189
+ this.cRotate = cRotate;
190
+ var rotate = this.ranRotate - cRotate;
191
+ this.imgStyle = {
192
+ transform: `rotateZ(${rotate}deg)`
193
+ };
194
+ }
195
+ },
196
+ dragFinish: function(e) {
197
+ if (this.isMoving && !this.isPassing) {
198
+ if (Math.abs(this.ranRotate - this.cRotate) > this.diffDegree) {
199
+ this.isOk = true;
200
+ this.imgStyle = {
201
+ transform: `rotateZ(${this.ranRotate}deg)`
202
+ };
203
+ var that = this;
204
+ setTimeout(function() {
205
+ var handler = that.$refs.handler;
206
+ var progressBar = that.$refs.progressBar;
207
+ handler.style.left = "0";
208
+ progressBar.style.width = "0";
209
+ that.isOk = false;
210
+ }, 500);
211
+ this.showErrorTip = true;
212
+ this.$emit("passfail");
213
+ } else {
214
+ this.passVerify();
215
+ }
216
+ this.isMoving = false;
217
+ }
218
+ },
219
+ passVerify: function() {
220
+ this.$emit("update:isPassing", true);
221
+ this.isMoving = false;
222
+ var handler = this.$refs.handler;
223
+ handler.children[0].className = this.successIcon;
224
+ this.$refs.progressBar.style.background = this.completedBg;
225
+ this.$refs.message.style["-webkit-text-fill-color"] = "unset";
226
+ this.$refs.message.style.animation = "slidetounlock2 3s infinite";
227
+ this.$refs.progressBar.style.color = "#fff";
228
+ this.$refs.progressBar.style.fontSize = this.textSize;
229
+ this.$emit("passcallback");
230
+ },
231
+ reset: function() {
232
+ this.reImg();
233
+ this.checkimgLoaded();
234
+ },
235
+ reImg: function() {
236
+ this.$emit("update:isPassing", false);
237
+ const oriData = this.$options.data();
238
+ for (const key in oriData) {
239
+ if (Object.prototype.hasOwnProperty.call(oriData, key)) {
240
+ this[key] = oriData[key];
241
+ }
242
+ }
243
+ var handler = this.$refs.handler;
244
+ var message = this.$refs.message;
245
+ handler.style.left = "0";
246
+ this.$refs.progressBar.style.width = "0";
247
+ handler.children[0].className = this.handlerIcon;
248
+ message.style["-webkit-text-fill-color"] = "transparent";
249
+ message.style.animation = "slidetounlock 3s infinite";
250
+ message.style.color = this.background;
251
+ },
252
+ refreshimg: function() {
253
+ this.$emit("refresh");
254
+ }
255
+ },
256
+ watch: {
257
+ imgsrc: {
258
+ immediate: false,
259
+ handler: function() {
260
+ this.reImg();
261
+ }
262
+ }
263
+ }
264
+ };
265
+
266
+ export { _sfc_main as default };
@@ -0,0 +1,3 @@
1
+ var undefined$1 = undefined;
2
+
3
+ export { undefined$1 as default };
@@ -0,0 +1,3 @@
1
+ var undefined$1 = undefined;
2
+
3
+ export { undefined$1 as default };
@@ -1,10 +1,12 @@
1
1
  import './transfer/index.vue.mjs';
2
2
  import './noticeBar/index.vue.mjs';
3
+ import dragimg from './dragVerify/dragVerifyImgRotate.vue.mjs';
3
4
  export { elSvg } from './svgIcon/index.mjs';
4
5
  import _sfc_main from './transfer/index.vue2.mjs';
5
6
  import _sfc_main$1 from './noticeBar/index.vue2.mjs';
6
7
 
7
8
  const FmTransfer = _sfc_main;
8
9
  const FmNoticeBar = _sfc_main$1;
10
+ const FmDragImg = dragimg;
9
11
 
10
- export { FmNoticeBar, FmTransfer };
12
+ export { FmDragImg, FmNoticeBar, FmTransfer };
package/index.css CHANGED
@@ -1 +1,113 @@
1
- .fm-transfer-panel{box-sizing:border-box;display:inline-block;max-height:100%;overflow:hidden;position:relative;text-align:left;vertical-align:middle}.fm-transfer-panel,.fm-transfer-panel__header{box-shadow:0 0 0 1px var(--el-border-color,var(--el-border-color)) inset;width:100%}.fm-transfer-panel__header{align-items:center;display:flex;flex-wrap:nowrap;justify-content:space-between;padding:3px 6px}.fm-transfer-panel__body{height:400px}.fm-transfer-panel__body .transfer-panel__filter{padding:6px}.fm-transfer-panel__body .transfer-panel__list{height:calc(100% - 36px);overflow:auto;padding-top:10px}.fm-transfer-panel__body .transfer-panel__list .transfer-panel__item{display:block!important;padding-left:6px}.fm-transfer-buttons{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.fm-transfer-buttons__item{padding-top:10px;width:100%}.fm-notice-bar{border-radius:4px;padding:0 15px;width:100%}.fm-notice-bar .notice-bar-warp{align-items:center;display:flex;height:inherit;width:100%}.fm-notice-bar .notice-bar-warp .notice-bar-warp-text-box{align-items:center;display:flex;flex:1;height:inherit;margin-right:35px;overflow:hidden;position:relative}.fm-notice-bar .notice-bar-warp .notice-bar-warp-left-icon{font-size:inherit!important;width:24px}.fm-notice-bar .notice-bar-warp .notice-bar-warp-right-icon{font-size:inherit!important;text-align:right;width:24px}.fm-notice-bar .notice-bar-warp .notice-bar-warp-right-icon:hover{cursor:pointer}.layout-columns-aside{background:var(--next-bg-columnsMenuBar);height:100%;width:var(--el-columnsMenuWidth)}.layout-columns-aside ul{position:relative}.layout-columns-aside ul .layout-columns-active,.layout-columns-aside ul .layout-columns-active a{color:var(--next-bg-columnsMenuBarColor)!important;transition:.3s ease-in-out}.layout-columns-aside ul .layout-columns-hover,.layout-columns-aside ul .layout-columns-hover a{color:var(--el-color-primary)}.layout-columns-aside ul li{color:var(--next-bg-columnsMenuBarColor);cursor:pointer;display:flex;height:var(--el-columnsMenuHeight);position:relative;text-align:center;width:100%;z-index:1}.layout-columns-aside ul li:hover{background-color:var(--el-color-primary-light-3)}.layout-columns-aside ul li .columns-vertical{margin:auto}.layout-columns-aside ul li .columns-vertical .columns-vertical-title{padding-top:1px}.layout-columns-aside ul li .columns-horizontal{align-items:center;display:flex;height:var(--el-columnsMenuHeight);padding:0 5px;width:100%}.layout-columns-aside ul li .columns-horizontal i{margin-right:3px}.layout-columns-aside ul li .columns-horizontal a{display:flex}.layout-columns-aside ul li .columns-horizontal a .columns-horizontal-title{padding-top:1px}.layout-columns-aside ul li a{color:var(--next-bg-columnsMenuBarColor);text-decoration:none}.layout-columns-aside ul .columns-card,.layout-columns-aside ul .columns-round{background:var(--el-color-primary);border-radius:5px;color:var(--el-color-white);height:var(--el-columnsMenuRoundHeight);left:50%;position:absolute;top:2px;transform:translateX(-50%);transition:.5s ease-in-out;width:var(--el-columnsMenuRoundWidth);z-index:0}.layout-columns-aside ul .columns-card{border-radius:0;height:var(--el-columnsMenuHeight);top:0;width:100%}.layout-logo{height:var(--el-columnsLogoHeight);margin-bottom:8px;margin-top:5px}.layout-logo-medium-img{height:80%;width:auto}.layout-logo:hover img{animation:logoAnimation .3s ease-in-out}.layout-footer{display:flex;width:100%}.layout-footer-warp{animation:error-num .3s ease;color:var(--el-text-color-secondary);margin:auto;text-align:center}.layout-lock-screen,.layout-lock-screen-fixed,.layout-lock-screen-img,.layout-lock-screen-mask{height:100%;left:0;position:fixed;top:0;width:100%}.layout-lock-screen-filter{filter:blur(1px)}.layout-lock-screen-mask{background:var(--el-color-white);z-index:9999990}.layout-lock-screen-img{background-image:url(../assets/lockscreen.img);background-size:100% 100%;z-index:9999991}.layout-lock-screen{z-index:9999992}.layout-lock-screen-date{color:var(--el-color-white);height:100%;left:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;z-index:9999993}.layout-lock-screen-date-box{bottom:50px;left:30px;position:absolute}.layout-lock-screen-date-box-time{color:var(--el-color-white);font-size:100px}.layout-lock-screen-date-box-info{color:var(--el-color-white);font-size:40px}.layout-lock-screen-date-box-minutes{font-size:16px}.layout-lock-screen-date-top{background:hsla(0,0%,100%,.1);border:1px solid var(--el-border-color-light,#ebeef5);border-radius:100%;bottom:50px;color:var(--el-color-white);height:40px;line-height:40px;opacity:.8;overflow:hidden;position:absolute;right:30px;text-align:center;transition:all .3s ease;width:40px}.layout-lock-screen-date-top i{transition:all .3s ease}.layout-lock-screen-date-top-text{color:var(--el-color-white);font-size:12px;left:50%;line-height:1.2;opacity:0;position:absolute;top:150%;transform:translate(-50%,-50%);transition:all .3s ease;width:35px}.layout-lock-screen-date-top:hover{background:hsla(0,0%,100%,.2);border:1px solid hsla(0,0%,100%,.5);box-shadow:0 0 12px 0 hsla(0,0%,100%,.5);color:var(--el-color-white);opacity:1;transition:all .3s ease}.layout-lock-screen-date-top:hover i{transform:translateY(-40px);transition:all .3s ease}.layout-lock-screen-date-top:hover .layout-lock-screen-date-top-text{opacity:1;top:50%;transition:all .3s ease}.layout-lock-screen-login{color:var(--el-color-white);display:flex;flex-direction:column;height:100%;justify-content:center;left:0;position:relative;top:0;width:100%;z-index:9999994}.layout-lock-screen-login-box{margin:auto;text-align:center}.layout-lock-screen-login-box-img{height:180px;margin:auto;width:180px}.layout-lock-screen-login-box-img img{border-radius:100%;height:100%;width:100%}.layout-lock-screen-login-box-name{font-size:26px;margin:15px 0 30px}.layout-lock-screen-login-box-message{align-items:center;display:flex;flex-direction:column;font-size:16px}.layout-lock-screen-login-box-value{min-height:73px}.layout-lock-screen-login-icon{bottom:30px;position:absolute;right:30px}.layout-lock-screen-login-icon i{cursor:pointer;font-size:20px;margin-left:15px;opacity:.8}.layout-lock-screen-login-icon i:hover{opacity:1}.layout-logo{align-items:center;animation:logoAnimation .3s ease-in-out;box-shadow:0 1px 4px rgba(0,21,41,.02);color:var(--el-color-primary);cursor:pointer;display:flex;font-size:16px;height:50px;justify-content:center;width:220px}.layout-logo span{display:inline-block;font-size:18px;font-weight:800;white-space:nowrap}.layout-logo:hover span{color:var(--color-primary-light-2)}.layout-logo-medium-img{margin-right:5px;padding:3px;width:15%}.layout-logo-size{animation:logoAnimation .3s ease-in-out;cursor:pointer;display:flex;height:50px;width:100%}.layout-logo-size-img{margin:auto;width:35px}.layout-logo-size:hover img{animation:logoAnimation .3s ease-in-out}.layout-navbars-breadcrumb{align-items:center;display:flex;flex:1;height:inherit}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-icon{color:var(--next-bg-topBarColor);cursor:pointer;font-size:18px;height:100%;opacity:.8;width:40px}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-icon:hover{opacity:1}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-span{color:var(--next-bg-topBarColor);display:flex;opacity:.7}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-iconfont{font-size:16px;margin-right:5px}.layout-navbars-close-full{position:fixed;right:-30px;top:-30px;z-index:9999999999}.layout-navbars-close-full .layout-navbars-close-full-icon{background:rgba(0,0,0,.1);border-radius:100%;cursor:pointer;height:60px;position:relative;transition:all .3s ease;width:60px}.layout-navbars-close-full .layout-navbars-close-full-icon :deep(i){color:#333;left:10px;position:absolute;top:35px;transition:all .3s ease}.layout-navbars-close-full:hover{transition:all .3s ease}.layout-navbars-close-full:hover :deep(i){color:var(--el-color-primary);transition:all .3s ease}.layout-navbars-breadcrumb-index{align-items:center;background:var(--next-bg-topBar);border-bottom:1px solid var(--next-border-color-light);display:flex;height:50px}.layout-search-dialog{position:relative}.layout-search-dialog :deep(.el-dialog){background-color:transparent;box-shadow:none}.layout-search-dialog :deep(.el-dialog) .el-dialog__body,.layout-search-dialog :deep(.el-dialog) .el-dialog__header{display:none}.layout-search-dialog :deep(.el-dialog) .el-dialog__footer{left:50%;position:absolute;top:-53vh;transform:translateX(-50%);width:100%}.layout-search-dialog :deep(.el-autocomplete){left:50%;position:absolute;top:150px;transform:translateX(-50%);width:560px}.layout-breadcrumb-seting-bar{height:calc(100vh - 50px);padding:0 15px}.layout-breadcrumb-seting-bar :deep(.el-scrollbar__view){overflow-x:hidden!important}.layout-breadcrumb-seting-bar .layout-breadcrumb-seting-bar-flex{align-items:center;display:flex;margin-bottom:5px}.layout-breadcrumb-seting-bar .layout-breadcrumb-seting-bar-flex-label{color:var(--el-text-color-primary);flex:1}.layout-breadcrumb-seting-bar .layout-drawer-content-flex{align-content:flex-start;display:flex;flex-wrap:wrap;margin:0 -5px;overflow:hidden}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item{border:1px solid transparent;cursor:pointer;height:70px;padding:5px;position:relative;width:50%}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container{height:100%}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-aside-dark{background-color:var(--next-color-seting-header)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-aside{background-color:var(--next-color-seting-aside)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-header{background-color:var(--next-color-seting-header)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-main{background-color:var(--next-color-seting-main)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-circular{border:1px solid transparent;border-radius:2px;overflow:hidden;transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .drawer-layout-active{border:1px solid;border-color:var(--el-color-primary)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active{border:1px solid;border-color:var(--el-color-primary-light-5);border-radius:100%;left:50%;padding:4px;position:absolute;top:50%;transform:translate(-50%,-50%);transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp .layout-tips-box,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box{border:1px solid;border-color:var(--el-color-primary-light-5);border-radius:100%;height:30px;transition:inherit;width:30px;z-index:9}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp .layout-tips-box .layout-tips-txt,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box .layout-tips-txt{background-color:var(--next-color-seting-main);color:var(--el-color-primary-light-5);font-size:12px;height:17px;left:-1px;letter-spacing:2px;line-height:1;line-height:17px;position:relative;text-align:center;top:5px;transform:rotate(30deg);transition:inherit;white-space:nowrap;width:32px}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box{border:1px solid;border-color:var(--el-color-primary)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box .layout-tips-txt{background-color:var(--next-color-seting-main)!important;color:var(--el-color-primary)!important}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .el-circular{border:1px solid;border-color:var(--el-color-primary);transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .layout-tips-warp{border-color:var(--el-color-primary);transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .layout-tips-warp .layout-tips-box{border-color:var(--el-color-primary);transition:inherit}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .layout-tips-warp .layout-tips-box .layout-tips-txt{background-color:var(--next-color-seting-main)!important;color:var(--el-color-primary)!important;transition:inherit}.layout-breadcrumb-seting-bar .copy-config{margin:10px 0}.layout-breadcrumb-seting-bar .copy-config .copy-config-btn{margin-top:15px;width:100%}.layout-breadcrumb-seting-bar .copy-config .copy-config-btn-reset{margin:10px 0 0;width:100%}.traditionalColors{height:50px;position:relative}.traditionalColors-chines{text-align:center}.traditionalColors-circleCheck{left:calc(50% - 10px);position:absolute;top:calc(50% - 10px)}.layout-navbars-breadcrumb-user{align-items:center;display:flex;justify-content:flex-end}.layout-navbars-breadcrumb-user-link{align-items:center;display:flex;height:100%;white-space:nowrap}.layout-navbars-breadcrumb-user-link-photo{border-radius:100%;height:25px;width:25px}.layout-navbars-breadcrumb-user-icon{align-items:center;color:var(--next-bg-topBarColor);cursor:pointer;display:flex;height:50px;line-height:50px;padding:0 10px}.layout-navbars-breadcrumb-user-icon:hover{background:var(--next-color-user-hover)}.layout-navbars-breadcrumb-user-icon:hover i{animation:logoAnimation .3s ease-in-out;display:inline-block}.layout-navbars-breadcrumb-user :deep(.el-dropdown){color:var(--next-bg-topBarColor)}.layout-navbars-breadcrumb-user :deep(.el-badge){align-items:center;display:flex;height:40px;line-height:40px}.layout-navbars-breadcrumb-user :deep(.el-badge__content.is-fixed){top:12px}.user-news-container .content-box{font-size:12px}.user-news-container .content-box .notice-box{height:400px;margin-bottom:35px;padding-right:10px}.user-news-container .content-box .notice-box:hover{overflow-y:scroll}.user-news-container .content-box .notice-item:hover{background-color:hsla(0,0%,72%,.1)}.user-news-container .content-box .notice-item .notice-content{color:var(--el-text-color-secondary);margin-bottom:3px;margin-top:3px}.user-news-container .content-box .notice-item .notice-time{color:var(--el-text-color-secondary);text-align:right}.user-news-container .notice-foot{align-items:center;background-color:#fff;bottom:0;color:var(--el-color-primary);cursor:pointer;display:flex;font-size:14px;height:35px;justify-content:center;position:absolute;width:100%}.el-menu-horizontal-warp{flex:1;margin-right:30px;overflow:hidden}.el-menu-horizontal-warp :deep(.el-scrollbar__bar.is-vertical){display:none}.el-menu-horizontal-warp :deep(a){width:100%}.el-menu-horizontal-warp .el-menu.el-menu--horizontal{box-sizing:border-box;display:flex;height:100%;width:100%}.upgrade-dialog :deep(.el-dialog) .el-dialog__body{padding:0!important}.upgrade-dialog :deep(.el-dialog) .el-dialog__header{display:none!important}.upgrade-dialog :deep(.el-dialog) .upgrade-title{align-items:center;display:flex;height:130px;justify-content:center;position:relative;text-align:center}.upgrade-dialog :deep(.el-dialog) .upgrade-title:after{background-color:var(--el-color-primary-light-1);border-bottom-left-radius:100%;border-bottom-right-radius:100%;content:"";height:130px;position:absolute;width:130%}.upgrade-dialog :deep(.el-dialog) .upgrade-title .upgrade-title-warp{position:relative;z-index:1}.upgrade-dialog :deep(.el-dialog) .upgrade-title .upgrade-title-warp .upgrade-title-warp-txt{color:var(--next-color-white);font-size:22px;letter-spacing:3px}.upgrade-dialog :deep(.el-dialog) .upgrade-title .upgrade-title-warp .upgrade-title-warp-version{background-color:var(--el-color-primary-light-4);border-radius:2px;color:var(--next-color-white);display:flex;font-size:12px;padding:2px 4px;position:absolute;right:-50px;top:-2px}.upgrade-dialog :deep(.el-dialog) .upgrade-content{line-height:22px;padding:20px}.upgrade-dialog :deep(.el-dialog) .upgrade-content .upgrade-content-desc{color:var(--el-color-info-light-5);font-size:12px}.upgrade-dialog :deep(.el-dialog) .upgrade-btn{border-top:1px solid var(--el-border-color-lighter,#ebeef5);display:flex;justify-content:space-around;padding:15px 20px}.upgrade-dialog :deep(.el-dialog) .upgrade-btn .el-button{width:100%}
1
+
2
+ .drag_verify[data-v-9e8c9ed2] {
3
+ position: relative;
4
+ background-color: #e8e8e8;
5
+ text-align: center;
6
+ overflow: hidden;
7
+ }
8
+ .drag_verify .dv_handler[data-v-9e8c9ed2] {
9
+ position: absolute;
10
+ top: 0px;
11
+ left: 0px;
12
+ cursor: move;
13
+ }
14
+ .drag_verify .dv_handler i[data-v-9e8c9ed2] {
15
+ color: #666;
16
+ padding-left: 0;
17
+ font-size: 16px;
18
+ }
19
+ .drag_verify .dv_handler .el-icon-circle-check[data-v-9e8c9ed2] {
20
+ color: #6c6;
21
+ margin-top: 9px;
22
+ }
23
+ .drag_verify .dv_progress_bar[data-v-9e8c9ed2] {
24
+ position: absolute;
25
+ height: 34px;
26
+ width: 0px;
27
+ }
28
+ .drag_verify .dv_text[data-v-9e8c9ed2] {
29
+ position: absolute;
30
+ top: 0px;
31
+ color: transparent;
32
+ -moz-user-select: none;
33
+ -webkit-user-select: none;
34
+ user-select: none;
35
+ -o-user-select: none;
36
+ -ms-user-select: none;
37
+ background: -webkit-gradient(
38
+ linear,
39
+ left top,
40
+ right top,
41
+ color-stop(0, var(--textColor)),
42
+ color-stop(0.4, var(--textColor)),
43
+ color-stop(0.5, #fff),
44
+ color-stop(0.6, var(--textColor)),
45
+ color-stop(1, var(--textColor))
46
+ );
47
+ -webkit-background-clip: text;
48
+ -webkit-text-fill-color: transparent;
49
+ -webkit-text-size-adjust: none;
50
+ animation: slidetounlock 3s infinite;
51
+ }
52
+ .drag_verify .dv_text[data-v-9e8c9ed2] * {
53
+ -webkit-text-fill-color: var(--textColor);
54
+ }
55
+ .goFirst[data-v-9e8c9ed2] {
56
+ left: 0px !important;
57
+ transition: left 0.5s;
58
+ }
59
+ .goOrigin[data-v-9e8c9ed2] {
60
+ transition: transform 0.5s;
61
+ }
62
+ .goKeep[data-v-9e8c9ed2] {
63
+ transition: left 0.2s;
64
+ }
65
+ .goFirst2[data-v-9e8c9ed2] {
66
+ width: 0px !important;
67
+ transition: width 0.5s;
68
+ }
69
+ .drag-verify-container[data-v-9e8c9ed2] {
70
+ position: relative;
71
+ line-height: 0;
72
+ border-radius: 50%;
73
+ }
74
+ .move-bar[data-v-9e8c9ed2] {
75
+ position: absolute;
76
+ z-index: 100;
77
+ }
78
+ .clip-bar[data-v-9e8c9ed2] {
79
+ position: absolute;
80
+ background: rgba(255, 255, 255, 0.8);
81
+ }
82
+ .refresh[data-v-9e8c9ed2] {
83
+ position: absolute;
84
+ right: 5px;
85
+ top: 5px;
86
+ cursor: pointer;
87
+ font-size: 20px;
88
+ z-index: 200;
89
+ }
90
+ .tips[data-v-9e8c9ed2] {
91
+ position: absolute;
92
+ bottom: 25px;
93
+ height: 20px;
94
+ line-height: 20px;
95
+ text-align: center;
96
+ width: 100%;
97
+ font-size: 12px;
98
+ z-index: 200;
99
+ }
100
+ .tips.success[data-v-9e8c9ed2] {
101
+ background: rgba(255, 255, 255, 0.6);
102
+ color: green;
103
+ }
104
+ .tips.danger[data-v-9e8c9ed2] {
105
+ background: rgba(0, 0, 0, 0.6);
106
+ color: yellow;
107
+ }
108
+ .check-img[data-v-9e8c9ed2] {
109
+ width: 100%;
110
+ border-radius: 50%;
111
+ }
112
+
113
+