tinydev-slider-captcha 1.0.0

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,916 @@
1
+ /******/ (function() { // webpackBootstrap
2
+ /******/ var __webpack_modules__ = ({
3
+
4
+ /***/ 662:
5
+ /***/ (function(module, exports) {
6
+
7
+ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// addapted from the document.currentScript polyfill by Adam Miller
8
+ // MIT license
9
+ // source: https://github.com/amiller-gh/currentScript-polyfill
10
+
11
+ // added support for Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1620505
12
+
13
+ (function (root, factory) {
14
+ if (true) {
15
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
16
+ __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
17
+ (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
18
+ __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
19
+ } else {}
20
+ }(typeof self !== 'undefined' ? self : this, function () {
21
+ function getCurrentScript () {
22
+ var descriptor = Object.getOwnPropertyDescriptor(document, 'currentScript')
23
+ // for chrome
24
+ if (!descriptor && 'currentScript' in document && document.currentScript) {
25
+ return document.currentScript
26
+ }
27
+
28
+ // for other browsers with native support for currentScript
29
+ if (descriptor && descriptor.get !== getCurrentScript && document.currentScript) {
30
+ return document.currentScript
31
+ }
32
+
33
+ // IE 8-10 support script readyState
34
+ // IE 11+ & Firefox support stack trace
35
+ try {
36
+ throw new Error();
37
+ }
38
+ catch (err) {
39
+ // Find the second match for the "at" string to get file src url from stack.
40
+ var ieStackRegExp = /.*at [^(]*\((.*):(.+):(.+)\)$/ig,
41
+ ffStackRegExp = /@([^@]*):(\d+):(\d+)\s*$/ig,
42
+ stackDetails = ieStackRegExp.exec(err.stack) || ffStackRegExp.exec(err.stack),
43
+ scriptLocation = (stackDetails && stackDetails[1]) || false,
44
+ line = (stackDetails && stackDetails[2]) || false,
45
+ currentLocation = document.location.href.replace(document.location.hash, ''),
46
+ pageSource,
47
+ inlineScriptSourceRegExp,
48
+ inlineScriptSource,
49
+ scripts = document.getElementsByTagName('script'); // Live NodeList collection
50
+
51
+ if (scriptLocation === currentLocation) {
52
+ pageSource = document.documentElement.outerHTML;
53
+ inlineScriptSourceRegExp = new RegExp('(?:[^\\n]+?\\n){0,' + (line - 2) + '}[^<]*<script>([\\d\\D]*?)<\\/script>[\\d\\D]*', 'i');
54
+ inlineScriptSource = pageSource.replace(inlineScriptSourceRegExp, '$1').trim();
55
+ }
56
+
57
+ for (var i = 0; i < scripts.length; i++) {
58
+ // If ready state is interactive, return the script tag
59
+ if (scripts[i].readyState === 'interactive') {
60
+ return scripts[i];
61
+ }
62
+
63
+ // If src matches, return the script tag
64
+ if (scripts[i].src === scriptLocation) {
65
+ return scripts[i];
66
+ }
67
+
68
+ // If inline source matches, return the script tag
69
+ if (
70
+ scriptLocation === currentLocation &&
71
+ scripts[i].innerHTML &&
72
+ scripts[i].innerHTML.trim() === inlineScriptSource
73
+ ) {
74
+ return scripts[i];
75
+ }
76
+ }
77
+
78
+ // If no match, return null
79
+ return null;
80
+ }
81
+ };
82
+
83
+ return getCurrentScript
84
+ }));
85
+
86
+
87
+ /***/ })
88
+
89
+ /******/ });
90
+ /************************************************************************/
91
+ /******/ // The module cache
92
+ /******/ var __webpack_module_cache__ = {};
93
+ /******/
94
+ /******/ // The require function
95
+ /******/ function __webpack_require__(moduleId) {
96
+ /******/ // Check if module is in cache
97
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
98
+ /******/ if (cachedModule !== undefined) {
99
+ /******/ return cachedModule.exports;
100
+ /******/ }
101
+ /******/ // Create a new module (and put it into the cache)
102
+ /******/ var module = __webpack_module_cache__[moduleId] = {
103
+ /******/ // no module.id needed
104
+ /******/ // no module.loaded needed
105
+ /******/ exports: {}
106
+ /******/ };
107
+ /******/
108
+ /******/ // Execute the module function
109
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
110
+ /******/
111
+ /******/ // Return the exports of the module
112
+ /******/ return module.exports;
113
+ /******/ }
114
+ /******/
115
+ /************************************************************************/
116
+ /******/ /* webpack/runtime/define property getters */
117
+ /******/ !function() {
118
+ /******/ // define getter functions for harmony exports
119
+ /******/ __webpack_require__.d = function(exports, definition) {
120
+ /******/ for(var key in definition) {
121
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
122
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
123
+ /******/ }
124
+ /******/ }
125
+ /******/ };
126
+ /******/ }();
127
+ /******/
128
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
129
+ /******/ !function() {
130
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
131
+ /******/ }();
132
+ /******/
133
+ /******/ /* webpack/runtime/make namespace object */
134
+ /******/ !function() {
135
+ /******/ // define __esModule on exports
136
+ /******/ __webpack_require__.r = function(exports) {
137
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
138
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
139
+ /******/ }
140
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
141
+ /******/ };
142
+ /******/ }();
143
+ /******/
144
+ /******/ /* webpack/runtime/publicPath */
145
+ /******/ !function() {
146
+ /******/ __webpack_require__.p = "";
147
+ /******/ }();
148
+ /******/
149
+ /************************************************************************/
150
+ var __webpack_exports__ = {};
151
+ // This entry need to be wrapped in an IIFE because it need to be in strict mode.
152
+ !function() {
153
+ "use strict";
154
+ // ESM COMPAT FLAG
155
+ __webpack_require__.r(__webpack_exports__);
156
+
157
+ // EXPORTS
158
+ __webpack_require__.d(__webpack_exports__, {
159
+ "default": function() { return /* binding */ entry_lib; }
160
+ });
161
+
162
+ ;// ../../../../node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
163
+ /* eslint-disable no-var */
164
+ // This file is imported into lib/wc client bundles.
165
+
166
+ if (typeof window !== 'undefined') {
167
+ var currentScript = window.document.currentScript
168
+ if (true) {
169
+ var getCurrentScript = __webpack_require__(662)
170
+ currentScript = getCurrentScript()
171
+
172
+ // for backward compatibility, because previously we directly included the polyfill
173
+ if (!('currentScript' in document)) {
174
+ Object.defineProperty(document, 'currentScript', { get: getCurrentScript })
175
+ }
176
+ }
177
+
178
+ var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
179
+ if (src) {
180
+ __webpack_require__.p = src[1] // eslint-disable-line
181
+ }
182
+ }
183
+
184
+ // Indicate to webpack that this file can be concatenated
185
+ /* harmony default export */ var setPublicPath = (null);
186
+
187
+ ;// ../../../../node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/packages-slider-captcha/SliderCaptcha.vue?vue&type=template&id=ef864250&scoped=true
188
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.dialogVisible)?_c('div',{staticClass:"lang-dialog__wrapper"},[_c('div',{staticClass:"lang-dialog"},[_c('div',{staticClass:"lang-dialog__header"},[_c('span',{staticClass:"lang-dialog__title"},[_vm._t("title",function(){return [_vm._v(_vm._s(_vm.title))]})],2),_c('button',{staticClass:"lang-dialog-header-btn",attrs:{"type":"button"},on:{"click":_vm.close}},[_c('i',{staticClass:"lang-icon-close"})])]),_c('div',{staticClass:"lang-dialog__body"},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.failed),expression:"failed"}],staticClass:"tips"},[_vm._t("errorText",function(){return [_vm._v(_vm._s(_vm.errorText))]})],2),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.failed),expression:"!failed"}],staticClass:"tips"},[_vm._t("tips",function(){return [_vm._v(_vm._s(_vm.tips))]})],2),_c('div',{staticClass:"slider-body",class:{'slider-shock':_vm.shock}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.mask),expression:"mask"}],staticClass:"loading-transparent-mask"}),(_vm.loading)?_c('div',{staticClass:"loading-body"},[_c('div',{staticClass:"loading slider-loading"})]):_vm._e(),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.sliderImg),expression:"sliderImg"}],staticClass:"slider-bg slider-img",style:({'background-image': 'url(' + _vm.sliderImg + ')'})}),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.sliderImg),expression:"sliderImg"}],staticClass:"slider-draw slider-move-draw slider-img",style:({'background-image': 'url(' + _vm.sliderImg + ')', 'top': _vm.sliderY + 'px', 'left': _vm.sliderMoveDrawLeft}),on:{"&touchstart":function($event){return _vm.sliderTouchStart.apply(null, arguments)},"&touchmove":function($event){return _vm.sliderTouchMove.apply(null, arguments)},"&touchend":function($event){return _vm.sliderEnd.apply(null, arguments)},"mousedown":_vm.sliderStart}}),_c('div',{staticClass:"slider-progress"}),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.success),expression:"success"}],staticClass:"slider-success"},[_vm._m(0),_c('div',{staticClass:"slider-success-text"},[_vm._t("successText",function(){return [_vm._v(_vm._s(_vm.successText))]})],2)]),_c('div',{staticClass:"slider-btn slider-move-btn",class:{'slider-shock':_vm.shock},style:({'left': _vm.sliderMoveLeft}),on:{"&touchstart":function($event){return _vm.sliderTouchStart.apply(null, arguments)},"&touchmove":function($event){return _vm.sliderTouchMove.apply(null, arguments)},"&touchend":function($event){return _vm.sliderEnd.apply(null, arguments)},"mousedown":_vm.sliderStart}},[_c('i',[_vm._v(" ")]),_c('img',{attrs:{"src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAcAgMAAABuexVFAAAACVBMVEUAAADCwsL9/f1P0DqbAAAAAXRSTlMAQObYZgAAAB1JREFUGNNjCGVgYGANABKhyMwoEHMBkIgaZWIwAdyJJQnaJRg5AAAAAElFTkSuQmCC","alt":""}}),_c('i',[_vm._v(" ")])])]),_c('div',{staticStyle:{"position":"relative"}},[_c('div',{staticClass:"slider-refresh",staticStyle:{"left":"35px"},on:{"click":function($event){$event.stopPropagation();return _vm.refresh.apply(null, arguments)},"mouseenter":function($event){_vm.refreshMessage = true},"mouseleave":function($event){_vm.refreshMessage = false}}},[_c('div',{staticClass:"slider-tools-btn lang-tips",staticStyle:{"width":"24px","height":"24px"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.refreshMessage),expression:"refreshMessage"}],staticClass:"lang-tips-item lang-tips-bottom",domProps:{"textContent":_vm._s(_vm.refreshText)}}),_c('img',{attrs:{"src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAPZSURBVHgB7VpLTuNAEC2b8NlNboDnBJgbJCdgOAFkAQixGDgB9gkIC4T4SIETTOYEhBOQOcF4buAVQojPvGfZGbv9iWMbE0vzpMam3e7Uq66u7q6yJhXh/PzcwKWjaZqJsop7E6XtF8JlwTPn7e3tF64jXMf7+/uOlIAmJTAYDNovLy/f39/fOyxSACSCd29A5r4ImUIEfG1buq5vyD8NlwbI3Ly+vtp5iFAGtpuJQKBxaOtQKhRcgQvF9Hd2duy0BldXV8eQQwMBKzeBs7Mzs9Vq/cCtkdYGpkBzuIcAY9r3ysqK2+v1aPse+cfHRwN9GL65rUHjnYyf5FzpqqNB4VFvodi5CVxeXtLOLUnWuoNn/eXl5dtA2LwIJj4IH0uyYthfb29vbxgWnve5CYRfUgVHsdD5rVQAkNnOIHKEZ1/CcgQE9KxO04SHxk+XlpbWqxKegDD0RF2UpD5PUpQoLUkBzSbhJRd1R/wx+QD49r6N0XD80ZiKxBGgbdKulWoXM7/7UcKHQdOAonp52sYI0FuA/Z1S7Ql/cHAwlpoAb7Wap12MAP28xCeSXafwGY4jhggBmo76IicsJmtfasIswhPqCFjK/w78uyU1YVbhiYkXovZh+1vKc2vWxako+PvcHuDWzvnKiH+0UAeW4rocmM5XmXNMTChJ+9IAeASwaPHwYYQfYKX9KQ2ARwB7cDNcyV1lXbZfFh4B/2AyAba5jdA+4RGAwJFtMvfy0hB4BGAyplLvSEMQeKHICJSNFNQJXRqO/wQ+GwGBiM/3D9uNQEDAUeoNaQg8AoxVRip13ZSGIFgHIgsXFrYNaQiClXgYruTCxrOxNAAeAX/hckL17efn521pACZuVA0oNcWMJgQQiI0c3BmAvbi4+CZzjgkB7v8Twnon8z4XpkUlDMyFXCG+z0KEACczo75Km8Pr6+stmVPEwus0GWj9QaKrMZNz3d3d3VoPOkyq+IvqKG2LH9vMcS4gPrMp0f1RG5P6zj/81wKOOuKjDyAwQPmN/VknqV3ibtSPg6qm5JGAZzqUDwZD+wg03CjVnaS2mRmahGBXgD7CLnbVkQvffAe4jblvmPB6kglPTTFlkHCkohRTjuznUVqAOVeSzzebk5THDopVJFGdQ/BIki8JudOsfvCXiQ8jtTNk3WG797gdLSwsuIuLi044zfr09MTkiclVHte1rOw++hqjr81pSpk5U59hUlWBhO28OYmynxpUucBxK3PKPdkszqHUxx6hRDXTUoXWCMZhcRkWSZQTpQiEEf7cBtc1FAP3RqiJC2EpIF3hH54Coe1hWVf8FxUNF4vY5AiIAAAAAElFTkSuQmCC"}})])])])])])]):_vm._e()}
189
+ var staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"slider-success-icon"},[_c('img',{attrs:{"src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAzFBMVEUAAAAs0AAu1AAs0AAr0AAq1QAs0AAt0AAs0AAs0AAr0AAq0wAs0AAq0QAs0AAs0AAs0AAs0AAr0AAs0AAr0AAs0AAr0QAs0QAs0AApygAs0AAs0AAs0AAs0AAs0QAr0QAt0gAs0AAt0QAtzwAq0QArzwAs0AAqzQAs0QAs0AAs0AAs0AD////l+d/8/vty4FVG1iCI5W/X989G1h881BNy31My0gd34Vr5/vjt++qk65Gd6omO5naB42Za2jdL1ybR9cjA8bNp3kpZ2jY9PuX7AAAAK3RSTlMA/APuFwfUZln0OxLIVEbr49vZzsKxmW1MDvmsqIxpXiGejlA3NGgk1pyDVbbBQAAAArxJREFUaN7Nmody2kAURZ9QQRIyTTTRDDauV3GsFNzjlP//p8CQjAZLwLY3w/mAc9EWZvftIzGS8HIyitp2AAR2OxpNLsOETFHzex5K8Hp+Td/u9DsWdmJ1+o6OvTLoWjiA1R1UFPVutQ0h2lVX5ddXmxCmWZX+ijCGFHEot3BuIM1cYkmd21DAPhcd/TMociY0E7MIysQzgdltQIPGxSH/yRBaBPX9/lMLmgz9vX4Y4HTP+FgwgHWyy78IYIThYsf6bMAQjasyvxvDGLFLRW5gkHnJBMMohYl2bBjFdmibMQwz3vbXYZz61j+0B+N4FcqpgoFq7nebYKDpFj6A6xMqLbDQ+j8LAzAxoA1dMNH9t4kt6PL+/Ov5DwpYm+3chy7fH9M0vctQoE9rOtr+u3TN3Ts+0ln7a5a+f8NrcYzWx0nflD99QQF/FdAz5U8fUKC3CvCgw+fc/2WJAh5RYsr/6R4lJHTB6kdIPqsfU7pl9WNCY1Y/RhSx+hFRCzv4/fPx6Xmp6UeLbJTzsFnb3/T8sClAKcunNE9Q9yMglPMjTfMEdT+wOyBP0PFjzxDlCRr+YN8k5wnKfti7l2lWSFDwo0URhBIU/YhoDLEENT9GdAvBhIL/KwSYkA/RBBU/pnQB4QQFP0JKIJzwJu9HQuQJJ6Tyfk/g2JJp+NETOXhl6n74QkfHTNlv1cQOv5miHx3R43um5kdf+AKSKfktR/wKlSn40ZW5BL49rvealB8DqWvs/evLwxIytCrMF/FL9lICdzGEvZzDXZBiLqmN2IuC7GXNAnMYZM5cWvZcKuGKqTiesxjCCMGC94FiWGd+YvG5H4m4n7nYH+oOMouhTDwjAVz1x1L3OJ57VzhjSDN2SIa6Bym8+rE1Daxwp6JtD1P3OBs3+FtP8uaZa5RwnTfP6JOE0+32n6lo+89fOWa8/GcTqREAAAAASUVORK5CYII=","alt":""}})])}]
190
+
191
+
192
+ ;// ./src/packages-slider-captcha/SliderCaptcha.vue?vue&type=template&id=ef864250&scoped=true
193
+
194
+ ;// ../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/packages-slider-captcha/SliderCaptcha.vue?vue&type=script&lang=js
195
+ //
196
+ //
197
+ //
198
+ //
199
+ //
200
+ //
201
+ //
202
+ //
203
+ //
204
+ //
205
+ //
206
+ //
207
+ //
208
+ //
209
+ //
210
+ //
211
+ //
212
+ //
213
+ //
214
+ //
215
+ //
216
+ //
217
+ //
218
+ //
219
+ //
220
+ //
221
+ //
222
+ //
223
+ //
224
+ //
225
+ //
226
+ //
227
+ //
228
+ //
229
+ //
230
+ //
231
+ //
232
+ //
233
+ //
234
+ //
235
+ //
236
+ //
237
+ //
238
+ //
239
+ //
240
+ //
241
+ //
242
+ //
243
+ //
244
+ //
245
+ //
246
+ //
247
+ //
248
+ //
249
+ //
250
+ //
251
+ //
252
+ //
253
+ //
254
+ //
255
+ //
256
+ //
257
+ //
258
+ //
259
+ //
260
+ //
261
+ //
262
+ //
263
+ //
264
+ //
265
+ //
266
+ //
267
+ //
268
+ //
269
+ //
270
+
271
+ /* harmony default export */ var SliderCaptchavue_type_script_lang_js = ({
272
+ name: 'SliderCaptcha',
273
+ props:
274
+ {
275
+ value: {
276
+ type: Boolean,
277
+ default: false
278
+ },
279
+ modelValue: {
280
+ type: Boolean,
281
+ default: false
282
+ },
283
+ loading: {
284
+ type: Boolean,
285
+ default: false
286
+ },
287
+ title: {
288
+ type: String,
289
+ default: '滑块安全验证'
290
+ },
291
+ tips: {
292
+ type: String,
293
+ default: '拖动下方滑块完成拼图'
294
+ },
295
+ successText: {
296
+ type: String,
297
+ default: '验证成功'
298
+ },
299
+ errorText:{
300
+ type: String,
301
+ default: '是不是太难了,咱换一个'
302
+ },
303
+ question: {
304
+ type: String,
305
+ default: ''
306
+ },
307
+ refreshText:{
308
+ type: String,
309
+ default: '刷新'
310
+ },
311
+ options: {
312
+ type: Object,
313
+ default() {
314
+ return {
315
+ sliderImg:'',
316
+ sliderKey: '',
317
+ sliderY: ''
318
+ }
319
+ }
320
+ }
321
+ },
322
+ watch: {
323
+ value: {
324
+ handler: function(val) {
325
+ this.init(val)
326
+ },
327
+ immediate: true
328
+ },
329
+ modelValue: {
330
+ handler: function(val) {
331
+ this.init(val)
332
+ },
333
+ immediate: true
334
+ },
335
+ options: {
336
+ handler: function(option) {
337
+ this.clear()
338
+ this.sliderImg = option.sliderImg
339
+ this.sliderKey = option.sliderKey
340
+ this.sliderY = option.sliderY
341
+ },
342
+ deep:true,
343
+ immediate: true
344
+ }
345
+ },
346
+ data() {
347
+ return {
348
+ dialogVisible: false,
349
+ mask: false,
350
+ success: false,
351
+ failed: false,
352
+ sliderImg:'',
353
+ sliderKey: '',
354
+ sliderX: 27,
355
+ sliderY: '',
356
+ sliderMoveDrawLeft: '27px',
357
+ sliderMoveLeft: '20px',
358
+ shock: false,
359
+ tipEvents: {},
360
+ sliderMoveX: 0,
361
+ questionMessage: false,
362
+ refreshMessage: false,
363
+ }
364
+ },
365
+ methods: {
366
+ init(open)
367
+ {
368
+ this.dialogVisible = open
369
+ if (open) {
370
+ this.clear()
371
+ }
372
+ },
373
+ clear() {
374
+ this.mask = false
375
+ this.success = false
376
+ this.failed = false
377
+ this.sliderImg = ''
378
+ this.sliderKey = ''
379
+ this.sliderX = 27
380
+ this.sliderMoveDrawLeft = '27px',
381
+ this.sliderMoveLeft = '20px',
382
+ this.sliderY = ''
383
+ },
384
+ check(sliderKey, sliderX)
385
+ {
386
+ this.$emit('check', sliderKey, sliderX, this.done, this.error)
387
+ },
388
+ done()
389
+ {
390
+ this.success = true
391
+ },
392
+ error() {
393
+ this.failed = true
394
+ this.mask = true
395
+ this.shock = true
396
+ setTimeout(() => {
397
+ this.shock = false
398
+ this.$emit('error')
399
+ }, 1000)
400
+ },
401
+ close() {
402
+ this.dialogVisible = false
403
+ this.$emit('input', this.dialogVisible)
404
+ this.$emit('update:modelValue', this.dialogVisible)
405
+ this.$emit('close')
406
+ },
407
+ refresh()
408
+ {
409
+ this.$emit('refresh')
410
+ },
411
+ sliderTouchStart(e) {
412
+ // 移动触摸移动
413
+ const that = this
414
+ const slider = e.target
415
+ that.sliderMoveX = e.touches[0].clientX - slider.offsetLeft
416
+ },
417
+ sliderTouchMove(e) {
418
+ const that = this
419
+ const left = e.touches[0].clientX - that.sliderMoveX
420
+ if (left >= 20 && left <= 280) {
421
+ that.sliderMoveDrawLeft = 5 + left + 'px';
422
+ that.sliderMoveLeft = left + 'px';
423
+ that.sliderX = 5 + left;
424
+ }
425
+ },
426
+ sliderEnd(){
427
+ this.check(this.sliderKey, this.sliderX);
428
+ },
429
+ sliderStart(e) {
430
+ var that = this
431
+ const slider = e.target // 获取目标元素
432
+ // 算出鼠标相对元素的位置
433
+ that.sliderMoveX = e.clientX - slider.offsetLeft
434
+
435
+ document.onmousemove = (e) => {
436
+ const left = e.clientX - that.sliderMoveX
437
+ if (left >= 20 && left <= 280) {
438
+ // slider.style.left = left + 'px'
439
+ that.sliderMoveDrawLeft = 5 + left + 'px';
440
+ that.sliderMoveLeft = left + 'px';
441
+ that.sliderX = 5 + left;
442
+ }
443
+ }
444
+
445
+ document.onmouseup = () => {
446
+ document.onmousemove = null
447
+ document.onmouseup = null
448
+ this.check(this.sliderKey, this.sliderX);
449
+ }
450
+ }
451
+ }
452
+ });
453
+
454
+ ;// ./src/packages-slider-captcha/SliderCaptcha.vue?vue&type=script&lang=js
455
+ /* harmony default export */ var packages_slider_captcha_SliderCaptchavue_type_script_lang_js = (SliderCaptchavue_type_script_lang_js);
456
+ ;// ../../../../node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!../../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!../../../../node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/packages-slider-captcha/SliderCaptcha.vue?vue&type=style&index=0&id=ef864250&prod&scoped=true&lang=css
457
+ // extracted by mini-css-extract-plugin
458
+
459
+ ;// ./src/packages-slider-captcha/SliderCaptcha.vue?vue&type=style&index=0&id=ef864250&prod&scoped=true&lang=css
460
+
461
+ ;// ../../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
462
+ /* globals __VUE_SSR_CONTEXT__ */
463
+
464
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
465
+ // This module is a runtime utility for cleaner component module output and will
466
+ // be included in the final webpack user bundle.
467
+
468
+ function normalizeComponent(
469
+ scriptExports,
470
+ render,
471
+ staticRenderFns,
472
+ functionalTemplate,
473
+ injectStyles,
474
+ scopeId,
475
+ moduleIdentifier /* server only */,
476
+ shadowMode /* vue-cli only */
477
+ ) {
478
+ // Vue.extend constructor export interop
479
+ var options =
480
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
481
+
482
+ // render functions
483
+ if (render) {
484
+ options.render = render
485
+ options.staticRenderFns = staticRenderFns
486
+ options._compiled = true
487
+ }
488
+
489
+ // functional template
490
+ if (functionalTemplate) {
491
+ options.functional = true
492
+ }
493
+
494
+ // scopedId
495
+ if (scopeId) {
496
+ options._scopeId = 'data-v-' + scopeId
497
+ }
498
+
499
+ var hook
500
+ if (moduleIdentifier) {
501
+ // server build
502
+ hook = function (context) {
503
+ // 2.3 injection
504
+ context =
505
+ context || // cached call
506
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
507
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
508
+ // 2.2 with runInNewContext: true
509
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
510
+ context = __VUE_SSR_CONTEXT__
511
+ }
512
+ // inject component styles
513
+ if (injectStyles) {
514
+ injectStyles.call(this, context)
515
+ }
516
+ // register component module identifier for async chunk inferrence
517
+ if (context && context._registeredComponents) {
518
+ context._registeredComponents.add(moduleIdentifier)
519
+ }
520
+ }
521
+ // used by ssr in case component is cached and beforeCreate
522
+ // never gets called
523
+ options._ssrRegister = hook
524
+ } else if (injectStyles) {
525
+ hook = shadowMode
526
+ ? function () {
527
+ injectStyles.call(
528
+ this,
529
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
530
+ )
531
+ }
532
+ : injectStyles
533
+ }
534
+
535
+ if (hook) {
536
+ if (options.functional) {
537
+ // for template-only hot-reload because in that case the render fn doesn't
538
+ // go through the normalizer
539
+ options._injectStyles = hook
540
+ // register for functional component in vue file
541
+ var originalRender = options.render
542
+ options.render = function renderWithStyleInjection(h, context) {
543
+ hook.call(context)
544
+ return originalRender(h, context)
545
+ }
546
+ } else {
547
+ // inject component registration as beforeCreate hook
548
+ var existing = options.beforeCreate
549
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
550
+ }
551
+ }
552
+
553
+ return {
554
+ exports: scriptExports,
555
+ options: options
556
+ }
557
+ }
558
+
559
+ ;// ./src/packages-slider-captcha/SliderCaptcha.vue
560
+
561
+
562
+
563
+ ;
564
+
565
+
566
+ /* normalize component */
567
+
568
+ var component = normalizeComponent(
569
+ packages_slider_captcha_SliderCaptchavue_type_script_lang_js,
570
+ render,
571
+ staticRenderFns,
572
+ false,
573
+ null,
574
+ "ef864250",
575
+ null
576
+
577
+ )
578
+
579
+ /* harmony default export */ var SliderCaptcha = (component.exports);
580
+ ;// ../../../../node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/packages-slider-captcha/RotateCaptcha.vue?vue&type=template&id=0cc21023&scoped=true
581
+ var RotateCaptchavue_type_template_id_0cc21023_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.dialogVisible)?_c('div',{staticClass:"lang-dialog__wrapper"},[_c('div',{staticClass:"lang-dialog"},[_c('div',{staticClass:"lang-dialog__header"},[_c('div',{staticClass:"lang-dialog__title"},[_vm._t("title",function(){return [_vm._v(_vm._s(_vm.title))]})],2),_c('button',{staticClass:"lang-dialog-header-btn",attrs:{"type":"button"},on:{"click":_vm.close}},[_c('i',{staticClass:"lang-icon-close"})])]),_c('div',{staticClass:"lang-dialog__body"},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.failed),expression:"failed"}],staticClass:"tips"},[_vm._t("errorText",function(){return [_vm._v(_vm._s(_vm.errorText))]})],2),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.success),expression:"success"}],staticClass:"tips"},[_vm._t("successText",function(){return [_vm._v(_vm._s(_vm.successText))]})],2),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.failed && !_vm.success),expression:"!failed && !success"}],staticClass:"tips"},[_vm._t("tips",function(){return [_vm._v(_vm._s(_vm.tips))]})],2),_c('div',{staticClass:"rotate-body"},[_c('div',{staticClass:"rotate-bg"},[_c('img',{directives:[{name:"show",rawName:"v-show",value:(_vm.rotateImg),expression:"rotateImg"}],class:{'slider-shock':_vm.shock},style:({'transform': 'rotate(' + _vm.rotateX + 'deg)'}),attrs:{"src":_vm.rotateImg,"alt":""}}),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isMove),expression:"isMove"}],staticClass:"rotate-correcting"}),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.loading || _vm.success || _vm.failed),expression:"loading || success || failed"}],staticClass:"rotate-mask"}),_c('div',{staticClass:"rotate-icon",class:[
582
+ _vm.loading ? 'rotate-icon-loading':'',
583
+ _vm.failed ? 'rotate-icon-error' : '',
584
+ _vm.success ? 'rotate-icon-success' : ''
585
+ ]})]),_c('div',{staticClass:"rotate-progress"},[_c('div',{staticClass:"rotate-progress-bottom",class:{'slider-shock':_vm.shock}},[_c('p',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isSlider || _vm.rotateX === 0),expression:"!isSlider || rotateX === 0"}]},[_vm._v("拖动滑块使图片角度为正")])]),_c('div',{staticClass:"rotate-progress-btn",class:[(!_vm.isSlider || _vm.rotateX === 0) ? 'rotate-btn-slider-up' :
586
+ (_vm.loading ? 'rotate-btn-slider-loading' : (_vm.failed ? 'rotate-btn-slider-error' : 'rotate-btn-slider-active')),{'slider-shock':_vm.shock}, {'slider-start-shock': _vm.btnShock}],style:({'left': _vm.rotateMoveLeft}),on:{"&touchstart":function($event){return _vm.rotateTouchStart.apply(null, arguments)},"&touchmove":function($event){return _vm.rotateTouchMove.apply(null, arguments)},"&touchend":function($event){return _vm.rotateEnd.apply(null, arguments)},"mousedown":_vm.rotateStart}},[_c('p',{class:[(!_vm.isSlider || _vm.rotateX === 0) ? 'rotate-black' : 'rotate-white']})])])]),_c('div',{staticStyle:{"position":"relative"}},[_c('div',{staticClass:"slider-refresh",staticStyle:{"left":"35px"},on:{"click":function($event){$event.stopPropagation();return _vm.refresh.apply(null, arguments)},"mouseenter":function($event){_vm.refreshMessage = true},"mouseleave":function($event){_vm.refreshMessage = false}}},[_c('div',{staticClass:"slider-tools-btn lang-tips",staticStyle:{"width":"24px","height":"24px"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.refreshMessage),expression:"refreshMessage"}],staticClass:"lang-tips-item lang-tips-bottom"},[_vm._v(" "+_vm._s(_vm.refreshText))]),_c('img',{attrs:{"src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAPZSURBVHgB7VpLTuNAEC2b8NlNboDnBJgbJCdgOAFkAQixGDgB9gkIC4T4SIETTOYEhBOQOcF4buAVQojPvGfZGbv9iWMbE0vzpMam3e7Uq66u7q6yJhXh/PzcwKWjaZqJsop7E6XtF8JlwTPn7e3tF64jXMf7+/uOlIAmJTAYDNovLy/f39/fOyxSACSCd29A5r4ImUIEfG1buq5vyD8NlwbI3Ly+vtp5iFAGtpuJQKBxaOtQKhRcgQvF9Hd2duy0BldXV8eQQwMBKzeBs7Mzs9Vq/cCtkdYGpkBzuIcAY9r3ysqK2+v1aPse+cfHRwN9GL65rUHjnYyf5FzpqqNB4VFvodi5CVxeXtLOLUnWuoNn/eXl5dtA2LwIJj4IH0uyYthfb29vbxgWnve5CYRfUgVHsdD5rVQAkNnOIHKEZ1/CcgQE9KxO04SHxk+XlpbWqxKegDD0RF2UpD5PUpQoLUkBzSbhJRd1R/wx+QD49r6N0XD80ZiKxBGgbdKulWoXM7/7UcKHQdOAonp52sYI0FuA/Z1S7Ql/cHAwlpoAb7Wap12MAP28xCeSXafwGY4jhggBmo76IicsJmtfasIswhPqCFjK/w78uyU1YVbhiYkXovZh+1vKc2vWxako+PvcHuDWzvnKiH+0UAeW4rocmM5XmXNMTChJ+9IAeASwaPHwYYQfYKX9KQ2ARwB7cDNcyV1lXbZfFh4B/2AyAba5jdA+4RGAwJFtMvfy0hB4BGAyplLvSEMQeKHICJSNFNQJXRqO/wQ+GwGBiM/3D9uNQEDAUeoNaQg8AoxVRip13ZSGIFgHIgsXFrYNaQiClXgYruTCxrOxNAAeAX/hckL17efn521pACZuVA0oNcWMJgQQiI0c3BmAvbi4+CZzjgkB7v8Twnon8z4XpkUlDMyFXCG+z0KEACczo75Km8Pr6+stmVPEwus0GWj9QaKrMZNz3d3d3VoPOkyq+IvqKG2LH9vMcS4gPrMp0f1RG5P6zj/81wKOOuKjDyAwQPmN/VknqV3ibtSPg6qm5JGAZzqUDwZD+wg03CjVnaS2mRmahGBXgD7CLnbVkQvffAe4jblvmPB6kglPTTFlkHCkohRTjuznUVqAOVeSzzebk5THDopVJFGdQ/BIki8JudOsfvCXiQ8jtTNk3WG797gdLSwsuIuLi044zfr09MTkiclVHte1rOw++hqjr81pSpk5U59hUlWBhO28OYmynxpUucBxK3PKPdkszqHUxx6hRDXTUoXWCMZhcRkWSZQTpQiEEf7cBtc1FAP3RqiJC2EpIF3hH54Coe1hWVf8FxUNF4vY5AiIAAAAAElFTkSuQmCC"}})])])])])])]):_vm._e()}
587
+ var RotateCaptchavue_type_template_id_0cc21023_scoped_true_staticRenderFns = []
588
+
589
+
590
+ ;// ../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/packages-slider-captcha/RotateCaptcha.vue?vue&type=script&lang=js
591
+ //
592
+ //
593
+ //
594
+ //
595
+ //
596
+ //
597
+ //
598
+ //
599
+ //
600
+ //
601
+ //
602
+ //
603
+ //
604
+ //
605
+ //
606
+ //
607
+ //
608
+ //
609
+ //
610
+ //
611
+ //
612
+ //
613
+ //
614
+ //
615
+ //
616
+ //
617
+ //
618
+ //
619
+ //
620
+ //
621
+ //
622
+ //
623
+ //
624
+ //
625
+ //
626
+ //
627
+ //
628
+ //
629
+ //
630
+ //
631
+ //
632
+ //
633
+ //
634
+ //
635
+ //
636
+ //
637
+ //
638
+ //
639
+ //
640
+ //
641
+ //
642
+ //
643
+ //
644
+ //
645
+ //
646
+ //
647
+ //
648
+ //
649
+ //
650
+ //
651
+ //
652
+ //
653
+ //
654
+ //
655
+ //
656
+ //
657
+ //
658
+ //
659
+ //
660
+ //
661
+ //
662
+ //
663
+
664
+ /* harmony default export */ var RotateCaptchavue_type_script_lang_js = ({
665
+ name: 'RotateCaptcha',
666
+ props:
667
+ {
668
+ value: {
669
+ type: Boolean,
670
+ default: false
671
+ },
672
+ modelValue: {
673
+ type: Boolean,
674
+ default: false
675
+ },
676
+ loading: {
677
+ type: Boolean,
678
+ default: false
679
+ },
680
+ title: {
681
+ type: String,
682
+ default: '安全验证'
683
+ },
684
+ tips: {
685
+ type: String,
686
+ default: '请完成下方验证'
687
+ },
688
+ successText: {
689
+ type: String,
690
+ default: '验证成功'
691
+ },
692
+ errorText:{
693
+ type: String,
694
+ default: '是不是太难了,咱换一个'
695
+ },
696
+ question: {
697
+ type: String,
698
+ default: ''
699
+ },
700
+ refreshText: {
701
+ type: String,
702
+ default: ''
703
+ },
704
+ options: {
705
+ type: Object,
706
+ default() {
707
+ return {
708
+ rotateImg:'',
709
+ rotateKey: ''
710
+ }
711
+ }
712
+ }
713
+ },
714
+ watch: {
715
+ value: {
716
+ handler: function(val) {
717
+ this.init(val)
718
+ },
719
+ immediate: true
720
+ },
721
+ modelValue: {
722
+ handler: function(val) {
723
+ this.init(val)
724
+ },
725
+ immediate: true
726
+ },
727
+ options: {
728
+ handler: function(option) {
729
+ this.clear()
730
+ this.rotateImg = option.rotateImg
731
+ this.rotateKey = option.rotateKey
732
+ },
733
+ deep:true,
734
+ immediate: true
735
+ }
736
+ },
737
+ data() {
738
+ return {
739
+ dialogVisible: false,
740
+ btnShock: false,
741
+ success: false,
742
+ failed: false,
743
+ rotateImg: '',
744
+ rotateKey: '',
745
+ rotateX: 0,
746
+ rotateRate: 1.7,
747
+ rotateWdtih: 212,
748
+ isSlider: false,
749
+ rotateMoveLeft: '0px',
750
+ isMove: false,
751
+ shock: false,
752
+ tipEvents: {},
753
+ rotateMoveX: 0,
754
+ questionMessage: false,
755
+ refreshMessage: false,
756
+ }
757
+ },
758
+ methods: {
759
+ init(open) {
760
+ this.dialogVisible = open
761
+ if(open) {
762
+ this.btnShock = open
763
+ setTimeout(() => {
764
+ this.btnShock = false
765
+ }, 1000)
766
+ this.clear()
767
+ }
768
+ },
769
+ clear() {
770
+ this.success = false
771
+ this.failed = false
772
+ this.rotateImg = ''
773
+ this.rotateKey = ''
774
+ this.rotateX = 0
775
+ this.rotateMoveLeft = '0px'
776
+ },
777
+ check(rotateKey, rotateX)
778
+ {
779
+ this.$emit('check', rotateKey, rotateX, this.done, this.error)
780
+ },
781
+ done()
782
+ {
783
+ this.success = true
784
+ },
785
+ error() {
786
+ this.failed = true
787
+ this.shock = true
788
+ setTimeout(() => {
789
+ this.shock = false
790
+ this.isSlider = false
791
+ this.rotateMoveLeft = '0px'
792
+ this.$emit('error')
793
+ }, 1000)
794
+ },
795
+ close() {
796
+ this.dialogVisible = false
797
+ this.$emit('input', this.dialogVisible)
798
+ this.$emit('update:modelValue', this.dialogVisible)
799
+ this.$emit('close')
800
+ },
801
+ refresh()
802
+ {
803
+ this.$emit('refresh')
804
+ },
805
+ rotateTouchStart(e) {
806
+ // 移动触摸移动
807
+ const that = this
808
+ if(that.loading || that.failed || that.success) return
809
+ const rotate = e.target
810
+ that.rotateMoveX = e.touches[0].clientX - rotate.offsetLeft
811
+ that.isSlider = true
812
+ that.isMove = true
813
+ },
814
+ rotateTouchMove(e) {
815
+ const that = this
816
+ if(that.loading || that.failed || that.success) return
817
+ let left = e.touches[0].clientX - that.rotateMoveX
818
+ if (left >= 0 && left <= that.rotateWdtih) {
819
+ if (left < 5) left = 0
820
+ that.rotateMoveLeft = left + 'px'
821
+ that.rotateX = left * that.rotateRate
822
+ }
823
+ },
824
+ rotateEnd() {
825
+ if(this.loading || this.failed || this.success) return
826
+ this.isMove = false
827
+ this.check(this.rotateKey, this.rotateX)
828
+ },
829
+ rotateStart(e) {
830
+ var that = this
831
+ if(that.loading || that.failed || that.success) return
832
+ const rotate = e.target // 获取目标元素
833
+ // 算出鼠标相对元素的位置
834
+ const rotateX = e.clientX - rotate.offsetLeft
835
+
836
+ that.isSlider = true
837
+ that.isMove = true
838
+ document.onmousemove = (e) => {
839
+ let left = e.clientX - rotateX
840
+ if (left >= 0 && left <= that.rotateWdtih) {
841
+ if (left < 5) left = 0
842
+ that.rotateMoveLeft = left + 'px'
843
+ that.rotateX = left * that.rotateRate
844
+ // console.log(that.rotateX)
845
+ }
846
+ }
847
+
848
+ document.onmouseup = () => {
849
+ // console.log('放开了我')
850
+ that.isMove = false
851
+ document.onmousemove = null
852
+ document.onmouseup = null
853
+ this.check(this.rotateKey, this.rotateX)
854
+ }
855
+ }
856
+ }
857
+ });
858
+
859
+ ;// ./src/packages-slider-captcha/RotateCaptcha.vue?vue&type=script&lang=js
860
+ /* harmony default export */ var packages_slider_captcha_RotateCaptchavue_type_script_lang_js = (RotateCaptchavue_type_script_lang_js);
861
+ ;// ../../../../node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!../../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!../../../../node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/packages-slider-captcha/RotateCaptcha.vue?vue&type=style&index=0&id=0cc21023&prod&scoped=true&lang=css
862
+ // extracted by mini-css-extract-plugin
863
+
864
+ ;// ./src/packages-slider-captcha/RotateCaptcha.vue?vue&type=style&index=0&id=0cc21023&prod&scoped=true&lang=css
865
+
866
+ ;// ./src/packages-slider-captcha/RotateCaptcha.vue
867
+
868
+
869
+
870
+ ;
871
+
872
+
873
+ /* normalize component */
874
+
875
+ var RotateCaptcha_component = normalizeComponent(
876
+ packages_slider_captcha_RotateCaptchavue_type_script_lang_js,
877
+ RotateCaptchavue_type_template_id_0cc21023_scoped_true_render,
878
+ RotateCaptchavue_type_template_id_0cc21023_scoped_true_staticRenderFns,
879
+ false,
880
+ null,
881
+ "0cc21023",
882
+ null
883
+
884
+ )
885
+
886
+ /* harmony default export */ var RotateCaptcha = (RotateCaptcha_component.exports);
887
+ ;// ./src/packages-slider-captcha/index.js
888
+
889
+
890
+
891
+ const Components = {
892
+ SliderCaptcha: SliderCaptcha,
893
+ RotateCaptcha: RotateCaptcha
894
+ }
895
+
896
+ const myComponents = {
897
+ install(app) {
898
+ Object.keys(Components).forEach((key) => {
899
+ app.component(key, Components[key])
900
+ })
901
+ }
902
+ }
903
+
904
+ // 导出
905
+ /* harmony default export */ var packages_slider_captcha = (myComponents);
906
+ ;// ../../../../node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
907
+
908
+
909
+ /* harmony default export */ var entry_lib = (packages_slider_captcha);
910
+
911
+
912
+ }();
913
+ module.exports = __webpack_exports__;
914
+ /******/ })()
915
+ ;
916
+ //# sourceMappingURL=tinydev-slider-captcha.common.js.map