yc-ui2 0.1.2-beta23 → 0.1.2-beta25
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/css/286.00e562fe.css +1 -0
- package/dist/css/774.de9a931f.css +139 -0
- package/dist/css/94.de9a931f.css +139 -0
- package/dist/yc-ui2.common.94.js +442 -0
- package/dist/yc-ui2.common.94.js.map +1 -0
- package/dist/yc-ui2.common.js +393 -118
- package/dist/yc-ui2.common.js.map +1 -1
- package/dist/yc-ui2.css +1 -1
- package/dist/yc-ui2.umd.774.js +442 -0
- package/dist/yc-ui2.umd.774.js.map +1 -0
- package/dist/yc-ui2.umd.js +393 -118
- package/dist/yc-ui2.umd.js.map +1 -1
- package/dist/yc-ui2.umd.min.286.js +2 -0
- package/dist/yc-ui2.umd.min.286.js.map +1 -0
- package/dist/yc-ui2.umd.min.js +1 -1
- package/dist/yc-ui2.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/App.vue +7 -11
- package/src/main.js +2 -2
package/dist/yc-ui2.umd.js
CHANGED
@@ -11,6 +11,113 @@
|
|
11
11
|
return /******/ (function() { // webpackBootstrap
|
12
12
|
/******/ var __webpack_modules__ = ({
|
13
13
|
|
14
|
+
/***/ 1001:
|
15
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
16
|
+
|
17
|
+
"use strict";
|
18
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
19
|
+
/* harmony export */ Z: function() { return /* binding */ normalizeComponent; }
|
20
|
+
/* harmony export */ });
|
21
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
22
|
+
|
23
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
24
|
+
// This module is a runtime utility for cleaner component module output and will
|
25
|
+
// be included in the final webpack user bundle.
|
26
|
+
|
27
|
+
function normalizeComponent(
|
28
|
+
scriptExports,
|
29
|
+
render,
|
30
|
+
staticRenderFns,
|
31
|
+
functionalTemplate,
|
32
|
+
injectStyles,
|
33
|
+
scopeId,
|
34
|
+
moduleIdentifier /* server only */,
|
35
|
+
shadowMode /* vue-cli only */
|
36
|
+
) {
|
37
|
+
// Vue.extend constructor export interop
|
38
|
+
var options =
|
39
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
40
|
+
|
41
|
+
// render functions
|
42
|
+
if (render) {
|
43
|
+
options.render = render
|
44
|
+
options.staticRenderFns = staticRenderFns
|
45
|
+
options._compiled = true
|
46
|
+
}
|
47
|
+
|
48
|
+
// functional template
|
49
|
+
if (functionalTemplate) {
|
50
|
+
options.functional = true
|
51
|
+
}
|
52
|
+
|
53
|
+
// scopedId
|
54
|
+
if (scopeId) {
|
55
|
+
options._scopeId = 'data-v-' + scopeId
|
56
|
+
}
|
57
|
+
|
58
|
+
var hook
|
59
|
+
if (moduleIdentifier) {
|
60
|
+
// server build
|
61
|
+
hook = function (context) {
|
62
|
+
// 2.3 injection
|
63
|
+
context =
|
64
|
+
context || // cached call
|
65
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
66
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
67
|
+
// 2.2 with runInNewContext: true
|
68
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
69
|
+
context = __VUE_SSR_CONTEXT__
|
70
|
+
}
|
71
|
+
// inject component styles
|
72
|
+
if (injectStyles) {
|
73
|
+
injectStyles.call(this, context)
|
74
|
+
}
|
75
|
+
// register component module identifier for async chunk inferrence
|
76
|
+
if (context && context._registeredComponents) {
|
77
|
+
context._registeredComponents.add(moduleIdentifier)
|
78
|
+
}
|
79
|
+
}
|
80
|
+
// used by ssr in case component is cached and beforeCreate
|
81
|
+
// never gets called
|
82
|
+
options._ssrRegister = hook
|
83
|
+
} else if (injectStyles) {
|
84
|
+
hook = shadowMode
|
85
|
+
? function () {
|
86
|
+
injectStyles.call(
|
87
|
+
this,
|
88
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
89
|
+
)
|
90
|
+
}
|
91
|
+
: injectStyles
|
92
|
+
}
|
93
|
+
|
94
|
+
if (hook) {
|
95
|
+
if (options.functional) {
|
96
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
97
|
+
// go through the normalizer
|
98
|
+
options._injectStyles = hook
|
99
|
+
// register for functional component in vue file
|
100
|
+
var originalRender = options.render
|
101
|
+
options.render = function renderWithStyleInjection(h, context) {
|
102
|
+
hook.call(context)
|
103
|
+
return originalRender(h, context)
|
104
|
+
}
|
105
|
+
} else {
|
106
|
+
// inject component registration as beforeCreate hook
|
107
|
+
var existing = options.beforeCreate
|
108
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
return {
|
113
|
+
exports: scriptExports,
|
114
|
+
options: options
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
/***/ }),
|
120
|
+
|
14
121
|
/***/ 9662:
|
15
122
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
16
123
|
|
@@ -6271,6 +6378,9 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6271
6378
|
/******/ return module.exports;
|
6272
6379
|
/******/ }
|
6273
6380
|
/******/
|
6381
|
+
/******/ // expose the modules object (__webpack_modules__)
|
6382
|
+
/******/ __webpack_require__.m = __webpack_modules__;
|
6383
|
+
/******/
|
6274
6384
|
/************************************************************************/
|
6275
6385
|
/******/ /* webpack/runtime/compat get default export */
|
6276
6386
|
/******/ !function() {
|
@@ -6296,6 +6406,37 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6296
6406
|
/******/ };
|
6297
6407
|
/******/ }();
|
6298
6408
|
/******/
|
6409
|
+
/******/ /* webpack/runtime/ensure chunk */
|
6410
|
+
/******/ !function() {
|
6411
|
+
/******/ __webpack_require__.f = {};
|
6412
|
+
/******/ // This file contains only the entry chunk.
|
6413
|
+
/******/ // The chunk loading function for additional chunks
|
6414
|
+
/******/ __webpack_require__.e = function(chunkId) {
|
6415
|
+
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce(function(promises, key) {
|
6416
|
+
/******/ __webpack_require__.f[key](chunkId, promises);
|
6417
|
+
/******/ return promises;
|
6418
|
+
/******/ }, []));
|
6419
|
+
/******/ };
|
6420
|
+
/******/ }();
|
6421
|
+
/******/
|
6422
|
+
/******/ /* webpack/runtime/get javascript chunk filename */
|
6423
|
+
/******/ !function() {
|
6424
|
+
/******/ // This function allow to reference async chunks
|
6425
|
+
/******/ __webpack_require__.u = function(chunkId) {
|
6426
|
+
/******/ // return url for filenames based on template
|
6427
|
+
/******/ return "yc-ui2.umd." + chunkId + ".js";
|
6428
|
+
/******/ };
|
6429
|
+
/******/ }();
|
6430
|
+
/******/
|
6431
|
+
/******/ /* webpack/runtime/get mini-css chunk filename */
|
6432
|
+
/******/ !function() {
|
6433
|
+
/******/ // This function allow to reference async chunks
|
6434
|
+
/******/ __webpack_require__.miniCssF = function(chunkId) {
|
6435
|
+
/******/ // return url for filenames based on template
|
6436
|
+
/******/ return "css/" + chunkId + "." + "de9a931f" + ".css";
|
6437
|
+
/******/ };
|
6438
|
+
/******/ }();
|
6439
|
+
/******/
|
6299
6440
|
/******/ /* webpack/runtime/global */
|
6300
6441
|
/******/ !function() {
|
6301
6442
|
/******/ __webpack_require__.g = (function() {
|
@@ -6313,6 +6454,52 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6313
6454
|
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
6314
6455
|
/******/ }();
|
6315
6456
|
/******/
|
6457
|
+
/******/ /* webpack/runtime/load script */
|
6458
|
+
/******/ !function() {
|
6459
|
+
/******/ var inProgress = {};
|
6460
|
+
/******/ var dataWebpackPrefix = "yc-ui2:";
|
6461
|
+
/******/ // loadScript function to load a script via script tag
|
6462
|
+
/******/ __webpack_require__.l = function(url, done, key, chunkId) {
|
6463
|
+
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
|
6464
|
+
/******/ var script, needAttach;
|
6465
|
+
/******/ if(key !== undefined) {
|
6466
|
+
/******/ var scripts = document.getElementsByTagName("script");
|
6467
|
+
/******/ for(var i = 0; i < scripts.length; i++) {
|
6468
|
+
/******/ var s = scripts[i];
|
6469
|
+
/******/ if(s.getAttribute("src") == url || s.getAttribute("data-webpack") == dataWebpackPrefix + key) { script = s; break; }
|
6470
|
+
/******/ }
|
6471
|
+
/******/ }
|
6472
|
+
/******/ if(!script) {
|
6473
|
+
/******/ needAttach = true;
|
6474
|
+
/******/ script = document.createElement('script');
|
6475
|
+
/******/
|
6476
|
+
/******/ script.charset = 'utf-8';
|
6477
|
+
/******/ script.timeout = 120;
|
6478
|
+
/******/ if (__webpack_require__.nc) {
|
6479
|
+
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
6480
|
+
/******/ }
|
6481
|
+
/******/ script.setAttribute("data-webpack", dataWebpackPrefix + key);
|
6482
|
+
/******/
|
6483
|
+
/******/ script.src = url;
|
6484
|
+
/******/ }
|
6485
|
+
/******/ inProgress[url] = [done];
|
6486
|
+
/******/ var onScriptComplete = function(prev, event) {
|
6487
|
+
/******/ // avoid mem leaks in IE.
|
6488
|
+
/******/ script.onerror = script.onload = null;
|
6489
|
+
/******/ clearTimeout(timeout);
|
6490
|
+
/******/ var doneFns = inProgress[url];
|
6491
|
+
/******/ delete inProgress[url];
|
6492
|
+
/******/ script.parentNode && script.parentNode.removeChild(script);
|
6493
|
+
/******/ doneFns && doneFns.forEach(function(fn) { return fn(event); });
|
6494
|
+
/******/ if(prev) return prev(event);
|
6495
|
+
/******/ }
|
6496
|
+
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
|
6497
|
+
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
|
6498
|
+
/******/ script.onload = onScriptComplete.bind(null, script.onload);
|
6499
|
+
/******/ needAttach && document.head.appendChild(script);
|
6500
|
+
/******/ };
|
6501
|
+
/******/ }();
|
6502
|
+
/******/
|
6316
6503
|
/******/ /* webpack/runtime/make namespace object */
|
6317
6504
|
/******/ !function() {
|
6318
6505
|
/******/ // define __esModule on exports
|
@@ -6329,6 +6516,175 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgI
|
|
6329
6516
|
/******/ __webpack_require__.p = "";
|
6330
6517
|
/******/ }();
|
6331
6518
|
/******/
|
6519
|
+
/******/ /* webpack/runtime/css loading */
|
6520
|
+
/******/ !function() {
|
6521
|
+
/******/ if (typeof document === "undefined") return;
|
6522
|
+
/******/ var createStylesheet = function(chunkId, fullhref, oldTag, resolve, reject) {
|
6523
|
+
/******/ var linkTag = document.createElement("link");
|
6524
|
+
/******/
|
6525
|
+
/******/ linkTag.rel = "stylesheet";
|
6526
|
+
/******/ linkTag.type = "text/css";
|
6527
|
+
/******/ var onLinkComplete = function(event) {
|
6528
|
+
/******/ // avoid mem leaks.
|
6529
|
+
/******/ linkTag.onerror = linkTag.onload = null;
|
6530
|
+
/******/ if (event.type === 'load') {
|
6531
|
+
/******/ resolve();
|
6532
|
+
/******/ } else {
|
6533
|
+
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
6534
|
+
/******/ var realHref = event && event.target && event.target.href || fullhref;
|
6535
|
+
/******/ var err = new Error("Loading CSS chunk " + chunkId + " failed.\n(" + realHref + ")");
|
6536
|
+
/******/ err.code = "CSS_CHUNK_LOAD_FAILED";
|
6537
|
+
/******/ err.type = errorType;
|
6538
|
+
/******/ err.request = realHref;
|
6539
|
+
/******/ if (linkTag.parentNode) linkTag.parentNode.removeChild(linkTag)
|
6540
|
+
/******/ reject(err);
|
6541
|
+
/******/ }
|
6542
|
+
/******/ }
|
6543
|
+
/******/ linkTag.onerror = linkTag.onload = onLinkComplete;
|
6544
|
+
/******/ linkTag.href = fullhref;
|
6545
|
+
/******/
|
6546
|
+
/******/ if (oldTag) {
|
6547
|
+
/******/ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
|
6548
|
+
/******/ } else {
|
6549
|
+
/******/ document.head.appendChild(linkTag);
|
6550
|
+
/******/ }
|
6551
|
+
/******/ return linkTag;
|
6552
|
+
/******/ };
|
6553
|
+
/******/ var findStylesheet = function(href, fullhref) {
|
6554
|
+
/******/ var existingLinkTags = document.getElementsByTagName("link");
|
6555
|
+
/******/ for(var i = 0; i < existingLinkTags.length; i++) {
|
6556
|
+
/******/ var tag = existingLinkTags[i];
|
6557
|
+
/******/ var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href");
|
6558
|
+
/******/ if(tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return tag;
|
6559
|
+
/******/ }
|
6560
|
+
/******/ var existingStyleTags = document.getElementsByTagName("style");
|
6561
|
+
/******/ for(var i = 0; i < existingStyleTags.length; i++) {
|
6562
|
+
/******/ var tag = existingStyleTags[i];
|
6563
|
+
/******/ var dataHref = tag.getAttribute("data-href");
|
6564
|
+
/******/ if(dataHref === href || dataHref === fullhref) return tag;
|
6565
|
+
/******/ }
|
6566
|
+
/******/ };
|
6567
|
+
/******/ var loadStylesheet = function(chunkId) {
|
6568
|
+
/******/ return new Promise(function(resolve, reject) {
|
6569
|
+
/******/ var href = __webpack_require__.miniCssF(chunkId);
|
6570
|
+
/******/ var fullhref = __webpack_require__.p + href;
|
6571
|
+
/******/ if(findStylesheet(href, fullhref)) return resolve();
|
6572
|
+
/******/ createStylesheet(chunkId, fullhref, null, resolve, reject);
|
6573
|
+
/******/ });
|
6574
|
+
/******/ }
|
6575
|
+
/******/ // object to store loaded CSS chunks
|
6576
|
+
/******/ var installedCssChunks = {
|
6577
|
+
/******/ 343: 0
|
6578
|
+
/******/ };
|
6579
|
+
/******/
|
6580
|
+
/******/ __webpack_require__.f.miniCss = function(chunkId, promises) {
|
6581
|
+
/******/ var cssChunks = {"774":1};
|
6582
|
+
/******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
|
6583
|
+
/******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
|
6584
|
+
/******/ promises.push(installedCssChunks[chunkId] = loadStylesheet(chunkId).then(function() {
|
6585
|
+
/******/ installedCssChunks[chunkId] = 0;
|
6586
|
+
/******/ }, function(e) {
|
6587
|
+
/******/ delete installedCssChunks[chunkId];
|
6588
|
+
/******/ throw e;
|
6589
|
+
/******/ }));
|
6590
|
+
/******/ }
|
6591
|
+
/******/ };
|
6592
|
+
/******/
|
6593
|
+
/******/ // no hmr
|
6594
|
+
/******/ }();
|
6595
|
+
/******/
|
6596
|
+
/******/ /* webpack/runtime/jsonp chunk loading */
|
6597
|
+
/******/ !function() {
|
6598
|
+
/******/ // no baseURI
|
6599
|
+
/******/
|
6600
|
+
/******/ // object to store loaded and loading chunks
|
6601
|
+
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
6602
|
+
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
6603
|
+
/******/ var installedChunks = {
|
6604
|
+
/******/ 343: 0
|
6605
|
+
/******/ };
|
6606
|
+
/******/
|
6607
|
+
/******/ __webpack_require__.f.j = function(chunkId, promises) {
|
6608
|
+
/******/ // JSONP chunk loading for javascript
|
6609
|
+
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
6610
|
+
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
6611
|
+
/******/
|
6612
|
+
/******/ // a Promise means "currently loading".
|
6613
|
+
/******/ if(installedChunkData) {
|
6614
|
+
/******/ promises.push(installedChunkData[2]);
|
6615
|
+
/******/ } else {
|
6616
|
+
/******/ if(true) { // all chunks have JS
|
6617
|
+
/******/ // setup Promise in chunk cache
|
6618
|
+
/******/ var promise = new Promise(function(resolve, reject) { installedChunkData = installedChunks[chunkId] = [resolve, reject]; });
|
6619
|
+
/******/ promises.push(installedChunkData[2] = promise);
|
6620
|
+
/******/
|
6621
|
+
/******/ // start chunk loading
|
6622
|
+
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
6623
|
+
/******/ // create error before stack unwound to get useful stacktrace later
|
6624
|
+
/******/ var error = new Error();
|
6625
|
+
/******/ var loadingEnded = function(event) {
|
6626
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
6627
|
+
/******/ installedChunkData = installedChunks[chunkId];
|
6628
|
+
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
6629
|
+
/******/ if(installedChunkData) {
|
6630
|
+
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
6631
|
+
/******/ var realSrc = event && event.target && event.target.src;
|
6632
|
+
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
6633
|
+
/******/ error.name = 'ChunkLoadError';
|
6634
|
+
/******/ error.type = errorType;
|
6635
|
+
/******/ error.request = realSrc;
|
6636
|
+
/******/ installedChunkData[1](error);
|
6637
|
+
/******/ }
|
6638
|
+
/******/ }
|
6639
|
+
/******/ };
|
6640
|
+
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
|
6641
|
+
/******/ }
|
6642
|
+
/******/ }
|
6643
|
+
/******/ }
|
6644
|
+
/******/ };
|
6645
|
+
/******/
|
6646
|
+
/******/ // no prefetching
|
6647
|
+
/******/
|
6648
|
+
/******/ // no preloaded
|
6649
|
+
/******/
|
6650
|
+
/******/ // no HMR
|
6651
|
+
/******/
|
6652
|
+
/******/ // no HMR manifest
|
6653
|
+
/******/
|
6654
|
+
/******/ // no on chunks loaded
|
6655
|
+
/******/
|
6656
|
+
/******/ // install a JSONP callback for chunk loading
|
6657
|
+
/******/ var webpackJsonpCallback = function(parentChunkLoadingFunction, data) {
|
6658
|
+
/******/ var chunkIds = data[0];
|
6659
|
+
/******/ var moreModules = data[1];
|
6660
|
+
/******/ var runtime = data[2];
|
6661
|
+
/******/ // add "moreModules" to the modules object,
|
6662
|
+
/******/ // then flag all "chunkIds" as loaded and fire callback
|
6663
|
+
/******/ var moduleId, chunkId, i = 0;
|
6664
|
+
/******/ if(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {
|
6665
|
+
/******/ for(moduleId in moreModules) {
|
6666
|
+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
6667
|
+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
6668
|
+
/******/ }
|
6669
|
+
/******/ }
|
6670
|
+
/******/ if(runtime) var result = runtime(__webpack_require__);
|
6671
|
+
/******/ }
|
6672
|
+
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
6673
|
+
/******/ for(;i < chunkIds.length; i++) {
|
6674
|
+
/******/ chunkId = chunkIds[i];
|
6675
|
+
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
6676
|
+
/******/ installedChunks[chunkId][0]();
|
6677
|
+
/******/ }
|
6678
|
+
/******/ installedChunks[chunkId] = 0;
|
6679
|
+
/******/ }
|
6680
|
+
/******/
|
6681
|
+
/******/ }
|
6682
|
+
/******/
|
6683
|
+
/******/ var chunkLoadingGlobal = (typeof self !== 'undefined' ? self : this)["webpackChunkyc_ui2"] = (typeof self !== 'undefined' ? self : this)["webpackChunkyc_ui2"] || [];
|
6684
|
+
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
6685
|
+
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
6686
|
+
/******/ }();
|
6687
|
+
/******/
|
6332
6688
|
/************************************************************************/
|
6333
6689
|
var __webpack_exports__ = {};
|
6334
6690
|
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
@@ -6359,7 +6715,7 @@ if (typeof window !== 'undefined') {
|
|
6359
6715
|
// Indicate to webpack that this file can be concatenated
|
6360
6716
|
/* harmony default export */ var setPublicPath = (null);
|
6361
6717
|
|
6362
|
-
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcSlideVerify/index.vue?vue&type=template&id=
|
6718
|
+
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcSlideVerify/index.vue?vue&type=template&id=27550b14&scoped=true&
|
6363
6719
|
var render = function render() {
|
6364
6720
|
var _vm = this,
|
6365
6721
|
_c = _vm._self._c;
|
@@ -6401,6 +6757,9 @@ var es_array_push = __webpack_require__(7658);
|
|
6401
6757
|
|
6402
6758
|
/* harmony default export */ var YcSlideVerifyvue_type_script_lang_js_ = ({
|
6403
6759
|
name: "YcSlideVerify",
|
6760
|
+
components: {
|
6761
|
+
slideVerify: () => __webpack_require__.e(/* import() */ 774).then(__webpack_require__.bind(__webpack_require__, 6774))
|
6762
|
+
},
|
6404
6763
|
props: {
|
6405
6764
|
title: {
|
6406
6765
|
type: String,
|
@@ -6449,109 +6808,13 @@ var es_array_push = __webpack_require__(7658);
|
|
6449
6808
|
});
|
6450
6809
|
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue?vue&type=script&lang=js&
|
6451
6810
|
/* harmony default export */ var components_YcSlideVerifyvue_type_script_lang_js_ = (YcSlideVerifyvue_type_script_lang_js_);
|
6452
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=
|
6811
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=27550b14&prod&lang=scss&scoped=true&
|
6453
6812
|
// extracted by mini-css-extract-plugin
|
6454
6813
|
|
6455
|
-
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=
|
6456
|
-
|
6457
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
6458
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
6459
|
-
|
6460
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
6461
|
-
// This module is a runtime utility for cleaner component module output and will
|
6462
|
-
// be included in the final webpack user bundle.
|
6463
|
-
|
6464
|
-
function normalizeComponent(
|
6465
|
-
scriptExports,
|
6466
|
-
render,
|
6467
|
-
staticRenderFns,
|
6468
|
-
functionalTemplate,
|
6469
|
-
injectStyles,
|
6470
|
-
scopeId,
|
6471
|
-
moduleIdentifier /* server only */,
|
6472
|
-
shadowMode /* vue-cli only */
|
6473
|
-
) {
|
6474
|
-
// Vue.extend constructor export interop
|
6475
|
-
var options =
|
6476
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
6477
|
-
|
6478
|
-
// render functions
|
6479
|
-
if (render) {
|
6480
|
-
options.render = render
|
6481
|
-
options.staticRenderFns = staticRenderFns
|
6482
|
-
options._compiled = true
|
6483
|
-
}
|
6484
|
-
|
6485
|
-
// functional template
|
6486
|
-
if (functionalTemplate) {
|
6487
|
-
options.functional = true
|
6488
|
-
}
|
6489
|
-
|
6490
|
-
// scopedId
|
6491
|
-
if (scopeId) {
|
6492
|
-
options._scopeId = 'data-v-' + scopeId
|
6493
|
-
}
|
6494
|
-
|
6495
|
-
var hook
|
6496
|
-
if (moduleIdentifier) {
|
6497
|
-
// server build
|
6498
|
-
hook = function (context) {
|
6499
|
-
// 2.3 injection
|
6500
|
-
context =
|
6501
|
-
context || // cached call
|
6502
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
6503
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
6504
|
-
// 2.2 with runInNewContext: true
|
6505
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
6506
|
-
context = __VUE_SSR_CONTEXT__
|
6507
|
-
}
|
6508
|
-
// inject component styles
|
6509
|
-
if (injectStyles) {
|
6510
|
-
injectStyles.call(this, context)
|
6511
|
-
}
|
6512
|
-
// register component module identifier for async chunk inferrence
|
6513
|
-
if (context && context._registeredComponents) {
|
6514
|
-
context._registeredComponents.add(moduleIdentifier)
|
6515
|
-
}
|
6516
|
-
}
|
6517
|
-
// used by ssr in case component is cached and beforeCreate
|
6518
|
-
// never gets called
|
6519
|
-
options._ssrRegister = hook
|
6520
|
-
} else if (injectStyles) {
|
6521
|
-
hook = shadowMode
|
6522
|
-
? function () {
|
6523
|
-
injectStyles.call(
|
6524
|
-
this,
|
6525
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
6526
|
-
)
|
6527
|
-
}
|
6528
|
-
: injectStyles
|
6529
|
-
}
|
6530
|
-
|
6531
|
-
if (hook) {
|
6532
|
-
if (options.functional) {
|
6533
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
6534
|
-
// go through the normalizer
|
6535
|
-
options._injectStyles = hook
|
6536
|
-
// register for functional component in vue file
|
6537
|
-
var originalRender = options.render
|
6538
|
-
options.render = function renderWithStyleInjection(h, context) {
|
6539
|
-
hook.call(context)
|
6540
|
-
return originalRender(h, context)
|
6541
|
-
}
|
6542
|
-
} else {
|
6543
|
-
// inject component registration as beforeCreate hook
|
6544
|
-
var existing = options.beforeCreate
|
6545
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
6546
|
-
}
|
6547
|
-
}
|
6548
|
-
|
6549
|
-
return {
|
6550
|
-
exports: scriptExports,
|
6551
|
-
options: options
|
6552
|
-
}
|
6553
|
-
}
|
6814
|
+
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue?vue&type=style&index=0&id=27550b14&prod&lang=scss&scoped=true&
|
6554
6815
|
|
6816
|
+
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
6817
|
+
var componentNormalizer = __webpack_require__(1001);
|
6555
6818
|
;// CONCATENATED MODULE: ./src/components/YcSlideVerify/index.vue
|
6556
6819
|
|
6557
6820
|
|
@@ -6561,13 +6824,13 @@ function normalizeComponent(
|
|
6561
6824
|
|
6562
6825
|
/* normalize component */
|
6563
6826
|
|
6564
|
-
var component =
|
6827
|
+
var component = (0,componentNormalizer/* default */.Z)(
|
6565
6828
|
components_YcSlideVerifyvue_type_script_lang_js_,
|
6566
6829
|
render,
|
6567
6830
|
staticRenderFns,
|
6568
6831
|
false,
|
6569
6832
|
null,
|
6570
|
-
"
|
6833
|
+
"27550b14",
|
6571
6834
|
null
|
6572
6835
|
|
6573
6836
|
)
|
@@ -6860,7 +7123,7 @@ var chatvue_type_template_id_755436e0_scoped_true_staticRenderFns = [];
|
|
6860
7123
|
|
6861
7124
|
/* normalize component */
|
6862
7125
|
|
6863
|
-
var chat_component =
|
7126
|
+
var chat_component = (0,componentNormalizer/* default */.Z)(
|
6864
7127
|
YcCustomerService_chatvue_type_script_lang_js_,
|
6865
7128
|
chatvue_type_template_id_755436e0_scoped_true_render,
|
6866
7129
|
chatvue_type_template_id_755436e0_scoped_true_staticRenderFns,
|
@@ -6924,7 +7187,7 @@ var chat_component = normalizeComponent(
|
|
6924
7187
|
|
6925
7188
|
/* normalize component */
|
6926
7189
|
|
6927
|
-
var YcCustomerService_component =
|
7190
|
+
var YcCustomerService_component = (0,componentNormalizer/* default */.Z)(
|
6928
7191
|
components_YcCustomerServicevue_type_script_lang_js_,
|
6929
7192
|
YcCustomerServicevue_type_template_id_849349a0_scoped_true_render,
|
6930
7193
|
YcCustomerServicevue_type_template_id_849349a0_scoped_true_staticRenderFns,
|
@@ -7113,7 +7376,7 @@ var YcQuestionvue_type_template_id_6185ef7a_scoped_true_staticRenderFns = [];
|
|
7113
7376
|
|
7114
7377
|
/* normalize component */
|
7115
7378
|
|
7116
|
-
var YcQuestion_component =
|
7379
|
+
var YcQuestion_component = (0,componentNormalizer/* default */.Z)(
|
7117
7380
|
components_YcQuestionvue_type_script_lang_js_,
|
7118
7381
|
YcQuestionvue_type_template_id_6185ef7a_scoped_true_render,
|
7119
7382
|
YcQuestionvue_type_template_id_6185ef7a_scoped_true_staticRenderFns,
|
@@ -7125,8 +7388,8 @@ var YcQuestion_component = normalizeComponent(
|
|
7125
7388
|
)
|
7126
7389
|
|
7127
7390
|
/* harmony default export */ var YcQuestion = (YcQuestion_component.exports);
|
7128
|
-
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcCA/index.vue?vue&type=template&id=
|
7129
|
-
var
|
7391
|
+
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcCA/index.vue?vue&type=template&id=eeb04946&scoped=true&
|
7392
|
+
var YcCAvue_type_template_id_eeb04946_scoped_true_render = function render() {
|
7130
7393
|
var _vm = this,
|
7131
7394
|
_c = _vm._self._c;
|
7132
7395
|
return _c('div', [_c('el-form', {
|
@@ -7144,6 +7407,9 @@ var YcCAvue_type_template_id_30cb8b77_scoped_true_render = function render() {
|
|
7144
7407
|
staticClass: "ca-bg-text"
|
7145
7408
|
}, [_vm._v("请插入UKEY证书")]), _c('img', {
|
7146
7409
|
staticClass: "ca-refresh",
|
7410
|
+
class: {
|
7411
|
+
start: _vm.caLoading
|
7412
|
+
},
|
7147
7413
|
attrs: {
|
7148
7414
|
"src": __webpack_require__(3379),
|
7149
7415
|
"alt": ""
|
@@ -7159,6 +7425,9 @@ var YcCAvue_type_template_id_30cb8b77_scoped_true_render = function render() {
|
|
7159
7425
|
staticClass: "caName"
|
7160
7426
|
}, [_vm._v(_vm._s(_vm.loginForm.username))])]), _c('img', {
|
7161
7427
|
staticClass: "ca-refresh",
|
7428
|
+
class: {
|
7429
|
+
start: _vm.caLoading
|
7430
|
+
},
|
7162
7431
|
attrs: {
|
7163
7432
|
"src": __webpack_require__(3379),
|
7164
7433
|
"alt": ""
|
@@ -7229,7 +7498,7 @@ var YcCAvue_type_template_id_30cb8b77_scoped_true_render = function render() {
|
|
7229
7498
|
staticStyle: {
|
7230
7499
|
"color": "red"
|
7231
7500
|
}
|
7232
|
-
}, [_vm._v(
|
7501
|
+
}, [_vm._v(_vm._s(_vm.caInfo.error_text))]), _c('span', {
|
7233
7502
|
staticClass: "dialog-footer",
|
7234
7503
|
attrs: {
|
7235
7504
|
"slot": "footer"
|
@@ -7252,9 +7521,9 @@ var YcCAvue_type_template_id_30cb8b77_scoped_true_render = function render() {
|
|
7252
7521
|
}
|
7253
7522
|
}, [_vm._v("确 定")])], 1)])], 1);
|
7254
7523
|
};
|
7255
|
-
var
|
7524
|
+
var YcCAvue_type_template_id_eeb04946_scoped_true_staticRenderFns = [];
|
7256
7525
|
|
7257
|
-
;// CONCATENATED MODULE: ./src/components/YcCA/index.vue?vue&type=template&id=
|
7526
|
+
;// CONCATENATED MODULE: ./src/components/YcCA/index.vue?vue&type=template&id=eeb04946&scoped=true&
|
7258
7527
|
|
7259
7528
|
// EXTERNAL MODULE: ./src/utils/mTokenPlugin/mToken.js
|
7260
7529
|
var mToken = __webpack_require__(9008);
|
@@ -8790,7 +9059,8 @@ function formateTime(dateStr) {
|
|
8790
9059
|
message: "请输入您的密码"
|
8791
9060
|
}]
|
8792
9061
|
},
|
8793
|
-
loading: false
|
9062
|
+
loading: false,
|
9063
|
+
caLoading: false
|
8794
9064
|
};
|
8795
9065
|
},
|
8796
9066
|
computed: {
|
@@ -8818,6 +9088,11 @@ function formateTime(dateStr) {
|
|
8818
9088
|
}
|
8819
9089
|
},
|
8820
9090
|
async caReadBeijin() {
|
9091
|
+
if (this.caLoading) return;
|
9092
|
+
this.caLoading = true;
|
9093
|
+
setTimeout(() => {
|
9094
|
+
this.caLoading = false;
|
9095
|
+
}, 1000);
|
8821
9096
|
let retObj = await new Promise(resolve => {
|
8822
9097
|
window.SOF_GetUserList(function (retObj) {
|
8823
9098
|
resolve(retObj);
|
@@ -9106,10 +9381,10 @@ function formateTime(dateStr) {
|
|
9106
9381
|
});
|
9107
9382
|
;// CONCATENATED MODULE: ./src/components/YcCA/index.vue?vue&type=script&lang=js&
|
9108
9383
|
/* harmony default export */ var components_YcCAvue_type_script_lang_js_ = (YcCAvue_type_script_lang_js_);
|
9109
|
-
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcCA/index.vue?vue&type=style&index=0&id=
|
9384
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/YcCA/index.vue?vue&type=style&index=0&id=eeb04946&prod&lang=scss&scoped=true&
|
9110
9385
|
// extracted by mini-css-extract-plugin
|
9111
9386
|
|
9112
|
-
;// CONCATENATED MODULE: ./src/components/YcCA/index.vue?vue&type=style&index=0&id=
|
9387
|
+
;// CONCATENATED MODULE: ./src/components/YcCA/index.vue?vue&type=style&index=0&id=eeb04946&prod&lang=scss&scoped=true&
|
9113
9388
|
|
9114
9389
|
;// CONCATENATED MODULE: ./src/components/YcCA/index.vue
|
9115
9390
|
|
@@ -9120,13 +9395,13 @@ function formateTime(dateStr) {
|
|
9120
9395
|
|
9121
9396
|
/* normalize component */
|
9122
9397
|
|
9123
|
-
var YcCA_component =
|
9398
|
+
var YcCA_component = (0,componentNormalizer/* default */.Z)(
|
9124
9399
|
components_YcCAvue_type_script_lang_js_,
|
9125
|
-
|
9126
|
-
|
9400
|
+
YcCAvue_type_template_id_eeb04946_scoped_true_render,
|
9401
|
+
YcCAvue_type_template_id_eeb04946_scoped_true_staticRenderFns,
|
9127
9402
|
false,
|
9128
9403
|
null,
|
9129
|
-
"
|
9404
|
+
"eeb04946",
|
9130
9405
|
null
|
9131
9406
|
|
9132
9407
|
)
|