eoss-ui 0.5.28 → 0.5.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/button-group.js +188 -200
- package/lib/button.js +3 -2
- package/lib/card.js +2 -2
- package/lib/checkbox-group.js +6 -5
- package/lib/clients.js +2 -2
- package/lib/data-table.js +131 -306
- package/lib/dialog.js +9 -8
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +380 -319
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +2 -2
- package/lib/flow-list.js +2 -2
- package/lib/form.js +3 -2
- package/lib/handle-user.js +2 -2
- package/lib/handler.js +2 -2
- package/lib/icons.js +4 -4
- package/lib/index.js +1 -1
- package/lib/layout.js +152 -166
- package/lib/login.js +3 -2
- package/lib/main.js +11 -10
- package/lib/player.js +6 -6
- package/lib/qr-code.js +2 -2
- package/lib/radio-group.js +2 -2
- package/lib/select-ganged.js +2 -2
- package/lib/select.js +2 -2
- package/lib/selector-panel.js +3 -3
- package/lib/selector.js +30 -17
- package/lib/theme-chalk/button.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/upload.js +6 -5
- package/package.json +2 -2
- package/packages/button/src/main.vue +4 -2
- package/packages/data-table/src/main.vue +59 -13
- package/packages/main/src/userinfo.vue +1 -0
- package/packages/selector/src/main.vue +15 -13
- package/packages/theme-chalk/lib/button.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/button.scss +8 -0
- package/src/index.js +1 -1
package/lib/layout.js
CHANGED
|
@@ -82,25 +82,164 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 34);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/
|
|
90
|
+
/***/ 16:
|
|
91
91
|
/***/ (function(module, exports) {
|
|
92
92
|
|
|
93
93
|
module.exports = require("interactjs");
|
|
94
94
|
|
|
95
95
|
/***/ }),
|
|
96
96
|
|
|
97
|
-
/***/
|
|
97
|
+
/***/ 3:
|
|
98
98
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
99
99
|
|
|
100
100
|
"use strict";
|
|
101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
|
102
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
101
103
|
|
|
102
|
-
//
|
|
104
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
105
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
106
|
+
// be included in the final webpack user bundle.
|
|
107
|
+
|
|
108
|
+
function normalizeComponent(
|
|
109
|
+
scriptExports,
|
|
110
|
+
render,
|
|
111
|
+
staticRenderFns,
|
|
112
|
+
functionalTemplate,
|
|
113
|
+
injectStyles,
|
|
114
|
+
scopeId,
|
|
115
|
+
moduleIdentifier /* server only */,
|
|
116
|
+
shadowMode /* vue-cli only */
|
|
117
|
+
) {
|
|
118
|
+
// Vue.extend constructor export interop
|
|
119
|
+
var options =
|
|
120
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
121
|
+
|
|
122
|
+
// render functions
|
|
123
|
+
if (render) {
|
|
124
|
+
options.render = render
|
|
125
|
+
options.staticRenderFns = staticRenderFns
|
|
126
|
+
options._compiled = true
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// functional template
|
|
130
|
+
if (functionalTemplate) {
|
|
131
|
+
options.functional = true
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// scopedId
|
|
135
|
+
if (scopeId) {
|
|
136
|
+
options._scopeId = 'data-v-' + scopeId
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
var hook
|
|
140
|
+
if (moduleIdentifier) {
|
|
141
|
+
// server build
|
|
142
|
+
hook = function (context) {
|
|
143
|
+
// 2.3 injection
|
|
144
|
+
context =
|
|
145
|
+
context || // cached call
|
|
146
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
147
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
148
|
+
// 2.2 with runInNewContext: true
|
|
149
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
150
|
+
context = __VUE_SSR_CONTEXT__
|
|
151
|
+
}
|
|
152
|
+
// inject component styles
|
|
153
|
+
if (injectStyles) {
|
|
154
|
+
injectStyles.call(this, context)
|
|
155
|
+
}
|
|
156
|
+
// register component module identifier for async chunk inferrence
|
|
157
|
+
if (context && context._registeredComponents) {
|
|
158
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
// used by ssr in case component is cached and beforeCreate
|
|
162
|
+
// never gets called
|
|
163
|
+
options._ssrRegister = hook
|
|
164
|
+
} else if (injectStyles) {
|
|
165
|
+
hook = shadowMode
|
|
166
|
+
? function () {
|
|
167
|
+
injectStyles.call(
|
|
168
|
+
this,
|
|
169
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
170
|
+
)
|
|
171
|
+
}
|
|
172
|
+
: injectStyles
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (hook) {
|
|
176
|
+
if (options.functional) {
|
|
177
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
178
|
+
// go through the normalizer
|
|
179
|
+
options._injectStyles = hook
|
|
180
|
+
// register for functional component in vue file
|
|
181
|
+
var originalRender = options.render
|
|
182
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
183
|
+
hook.call(context)
|
|
184
|
+
return originalRender(h, context)
|
|
185
|
+
}
|
|
186
|
+
} else {
|
|
187
|
+
// inject component registration as beforeCreate hook
|
|
188
|
+
var existing = options.beforeCreate
|
|
189
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
return {
|
|
194
|
+
exports: scriptExports,
|
|
195
|
+
options: options
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
/***/ }),
|
|
201
|
+
|
|
202
|
+
/***/ 34:
|
|
203
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
204
|
+
|
|
205
|
+
"use strict";
|
|
206
|
+
// ESM COMPAT FLAG
|
|
207
|
+
__webpack_require__.r(__webpack_exports__);
|
|
208
|
+
|
|
209
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/layout/src/main.vue?vue&type=template&id=3f931032&
|
|
103
210
|
var render = function () {
|
|
211
|
+
var _vm = this
|
|
212
|
+
var _h = _vm.$createElement
|
|
213
|
+
var _c = _vm._self._c || _h
|
|
214
|
+
return _c(
|
|
215
|
+
"div",
|
|
216
|
+
{ staticClass: "es-layout" },
|
|
217
|
+
[
|
|
218
|
+
_c("layout-item"),
|
|
219
|
+
_c("layout-item", { attrs: { top: "100px" } }),
|
|
220
|
+
_vm._l(_vm.contents, function (item, index) {
|
|
221
|
+
return _c(
|
|
222
|
+
"layout-item",
|
|
223
|
+
_vm._b(
|
|
224
|
+
{ key: item.id || index },
|
|
225
|
+
"layout-item",
|
|
226
|
+
Object.assign({}, item, { disabled: _vm.disabled }),
|
|
227
|
+
false
|
|
228
|
+
)
|
|
229
|
+
)
|
|
230
|
+
}),
|
|
231
|
+
],
|
|
232
|
+
2
|
|
233
|
+
)
|
|
234
|
+
}
|
|
235
|
+
var staticRenderFns = []
|
|
236
|
+
render._withStripped = true
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
// CONCATENATED MODULE: ./packages/layout/src/main.vue?vue&type=template&id=3f931032&
|
|
240
|
+
|
|
241
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/layout/src/item.vue?vue&type=template&id=124bb300&
|
|
242
|
+
var itemvue_type_template_id_124bb300_render = function () {
|
|
104
243
|
var _vm = this
|
|
105
244
|
var _h = _vm.$createElement
|
|
106
245
|
var _c = _vm._self._c || _h
|
|
@@ -121,14 +260,14 @@ var render = function () {
|
|
|
121
260
|
1
|
|
122
261
|
)
|
|
123
262
|
}
|
|
124
|
-
var
|
|
125
|
-
|
|
263
|
+
var itemvue_type_template_id_124bb300_staticRenderFns = []
|
|
264
|
+
itemvue_type_template_id_124bb300_render._withStripped = true
|
|
126
265
|
|
|
127
266
|
|
|
128
267
|
// CONCATENATED MODULE: ./packages/layout/src/item.vue?vue&type=template&id=124bb300&
|
|
129
268
|
|
|
130
269
|
// EXTERNAL MODULE: external "interactjs"
|
|
131
|
-
var external_interactjs_ = __webpack_require__(
|
|
270
|
+
var external_interactjs_ = __webpack_require__(16);
|
|
132
271
|
var external_interactjs_default = /*#__PURE__*/__webpack_require__.n(external_interactjs_);
|
|
133
272
|
|
|
134
273
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/layout/src/item.vue?vue&type=script&lang=js&
|
|
@@ -297,8 +436,8 @@ var componentNormalizer = __webpack_require__(3);
|
|
|
297
436
|
|
|
298
437
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
299
438
|
src_itemvue_type_script_lang_js_,
|
|
300
|
-
|
|
301
|
-
|
|
439
|
+
itemvue_type_template_id_124bb300_render,
|
|
440
|
+
itemvue_type_template_id_124bb300_staticRenderFns,
|
|
302
441
|
false,
|
|
303
442
|
null,
|
|
304
443
|
null,
|
|
@@ -306,157 +445,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
306
445
|
|
|
307
446
|
)
|
|
308
447
|
|
|
309
|
-
/* harmony default export */ var item =
|
|
310
|
-
|
|
311
|
-
/***/ }),
|
|
312
|
-
|
|
313
|
-
/***/ 3:
|
|
314
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
315
|
-
|
|
316
|
-
"use strict";
|
|
317
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
|
318
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
319
|
-
|
|
320
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
321
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
322
|
-
// be included in the final webpack user bundle.
|
|
323
|
-
|
|
324
|
-
function normalizeComponent(
|
|
325
|
-
scriptExports,
|
|
326
|
-
render,
|
|
327
|
-
staticRenderFns,
|
|
328
|
-
functionalTemplate,
|
|
329
|
-
injectStyles,
|
|
330
|
-
scopeId,
|
|
331
|
-
moduleIdentifier /* server only */,
|
|
332
|
-
shadowMode /* vue-cli only */
|
|
333
|
-
) {
|
|
334
|
-
// Vue.extend constructor export interop
|
|
335
|
-
var options =
|
|
336
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
337
|
-
|
|
338
|
-
// render functions
|
|
339
|
-
if (render) {
|
|
340
|
-
options.render = render
|
|
341
|
-
options.staticRenderFns = staticRenderFns
|
|
342
|
-
options._compiled = true
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
// functional template
|
|
346
|
-
if (functionalTemplate) {
|
|
347
|
-
options.functional = true
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
// scopedId
|
|
351
|
-
if (scopeId) {
|
|
352
|
-
options._scopeId = 'data-v-' + scopeId
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
var hook
|
|
356
|
-
if (moduleIdentifier) {
|
|
357
|
-
// server build
|
|
358
|
-
hook = function (context) {
|
|
359
|
-
// 2.3 injection
|
|
360
|
-
context =
|
|
361
|
-
context || // cached call
|
|
362
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
363
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
364
|
-
// 2.2 with runInNewContext: true
|
|
365
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
366
|
-
context = __VUE_SSR_CONTEXT__
|
|
367
|
-
}
|
|
368
|
-
// inject component styles
|
|
369
|
-
if (injectStyles) {
|
|
370
|
-
injectStyles.call(this, context)
|
|
371
|
-
}
|
|
372
|
-
// register component module identifier for async chunk inferrence
|
|
373
|
-
if (context && context._registeredComponents) {
|
|
374
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
// used by ssr in case component is cached and beforeCreate
|
|
378
|
-
// never gets called
|
|
379
|
-
options._ssrRegister = hook
|
|
380
|
-
} else if (injectStyles) {
|
|
381
|
-
hook = shadowMode
|
|
382
|
-
? function () {
|
|
383
|
-
injectStyles.call(
|
|
384
|
-
this,
|
|
385
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
386
|
-
)
|
|
387
|
-
}
|
|
388
|
-
: injectStyles
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
if (hook) {
|
|
392
|
-
if (options.functional) {
|
|
393
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
394
|
-
// go through the normalizer
|
|
395
|
-
options._injectStyles = hook
|
|
396
|
-
// register for functional component in vue file
|
|
397
|
-
var originalRender = options.render
|
|
398
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
399
|
-
hook.call(context)
|
|
400
|
-
return originalRender(h, context)
|
|
401
|
-
}
|
|
402
|
-
} else {
|
|
403
|
-
// inject component registration as beforeCreate hook
|
|
404
|
-
var existing = options.beforeCreate
|
|
405
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
return {
|
|
410
|
-
exports: scriptExports,
|
|
411
|
-
options: options
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
/***/ }),
|
|
417
|
-
|
|
418
|
-
/***/ 49:
|
|
419
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
420
|
-
|
|
421
|
-
"use strict";
|
|
422
|
-
// ESM COMPAT FLAG
|
|
423
|
-
__webpack_require__.r(__webpack_exports__);
|
|
424
|
-
|
|
425
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/layout/src/main.vue?vue&type=template&id=3f931032&
|
|
426
|
-
var render = function () {
|
|
427
|
-
var _vm = this
|
|
428
|
-
var _h = _vm.$createElement
|
|
429
|
-
var _c = _vm._self._c || _h
|
|
430
|
-
return _c(
|
|
431
|
-
"div",
|
|
432
|
-
{ staticClass: "es-layout" },
|
|
433
|
-
[
|
|
434
|
-
_c("layout-item"),
|
|
435
|
-
_c("layout-item", { attrs: { top: "100px" } }),
|
|
436
|
-
_vm._l(_vm.contents, function (item, index) {
|
|
437
|
-
return _c(
|
|
438
|
-
"layout-item",
|
|
439
|
-
_vm._b(
|
|
440
|
-
{ key: item.id || index },
|
|
441
|
-
"layout-item",
|
|
442
|
-
Object.assign({}, item, { disabled: _vm.disabled }),
|
|
443
|
-
false
|
|
444
|
-
)
|
|
445
|
-
)
|
|
446
|
-
}),
|
|
447
|
-
],
|
|
448
|
-
2
|
|
449
|
-
)
|
|
450
|
-
}
|
|
451
|
-
var staticRenderFns = []
|
|
452
|
-
render._withStripped = true
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
// CONCATENATED MODULE: ./packages/layout/src/main.vue?vue&type=template&id=3f931032&
|
|
456
|
-
|
|
457
|
-
// EXTERNAL MODULE: ./packages/layout/src/item.vue + 4 modules
|
|
458
|
-
var item = __webpack_require__(18);
|
|
459
|
-
|
|
448
|
+
/* harmony default export */ var item = (component.exports);
|
|
460
449
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/layout/src/main.vue?vue&type=script&lang=js&
|
|
461
450
|
//
|
|
462
451
|
//
|
|
@@ -473,7 +462,7 @@ var item = __webpack_require__(18);
|
|
|
473
462
|
|
|
474
463
|
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
|
475
464
|
name: 'EsLayout',
|
|
476
|
-
components: { layoutItem: item
|
|
465
|
+
components: { layoutItem: item },
|
|
477
466
|
props: {
|
|
478
467
|
contents: Array,
|
|
479
468
|
disabled: Boolean
|
|
@@ -491,9 +480,6 @@ var item = __webpack_require__(18);
|
|
|
491
480
|
});
|
|
492
481
|
// CONCATENATED MODULE: ./packages/layout/src/main.vue?vue&type=script&lang=js&
|
|
493
482
|
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
|
494
|
-
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
495
|
-
var componentNormalizer = __webpack_require__(3);
|
|
496
|
-
|
|
497
483
|
// CONCATENATED MODULE: ./packages/layout/src/main.vue
|
|
498
484
|
|
|
499
485
|
|
|
@@ -502,7 +488,7 @@ var componentNormalizer = __webpack_require__(3);
|
|
|
502
488
|
|
|
503
489
|
/* normalize component */
|
|
504
490
|
|
|
505
|
-
var
|
|
491
|
+
var main_component = Object(componentNormalizer["a" /* default */])(
|
|
506
492
|
src_mainvue_type_script_lang_js_,
|
|
507
493
|
render,
|
|
508
494
|
staticRenderFns,
|
|
@@ -513,7 +499,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
513
499
|
|
|
514
500
|
)
|
|
515
501
|
|
|
516
|
-
/* harmony default export */ var main = (
|
|
502
|
+
/* harmony default export */ var main = (main_component.exports);
|
|
517
503
|
// CONCATENATED MODULE: ./packages/layout/index.js
|
|
518
504
|
|
|
519
505
|
|
package/lib/login.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 35);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ([
|
|
@@ -3662,7 +3662,8 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
|
|
|
3662
3662
|
/* 31 */,
|
|
3663
3663
|
/* 32 */,
|
|
3664
3664
|
/* 33 */,
|
|
3665
|
-
/* 34
|
|
3665
|
+
/* 34 */,
|
|
3666
|
+
/* 35 */
|
|
3666
3667
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3667
3668
|
|
|
3668
3669
|
"use strict";
|
package/lib/main.js
CHANGED
|
@@ -3631,13 +3631,13 @@ module.exports = require("babel-runtime/regenerator");
|
|
|
3631
3631
|
/* 18 */,
|
|
3632
3632
|
/* 19 */,
|
|
3633
3633
|
/* 20 */,
|
|
3634
|
-
/* 21
|
|
3635
|
-
/* 22 */
|
|
3634
|
+
/* 21 */
|
|
3636
3635
|
/***/ (function(module, exports) {
|
|
3637
3636
|
|
|
3638
3637
|
module.exports = require("runtime-import");
|
|
3639
3638
|
|
|
3640
3639
|
/***/ }),
|
|
3640
|
+
/* 22 */,
|
|
3641
3641
|
/* 23 */,
|
|
3642
3642
|
/* 24 */,
|
|
3643
3643
|
/* 25 */,
|
|
@@ -4085,8 +4085,8 @@ render._withStripped = true
|
|
|
4085
4085
|
|
|
4086
4086
|
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=f53c488c&
|
|
4087
4087
|
|
|
4088
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=
|
|
4089
|
-
var
|
|
4088
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=751fb998&
|
|
4089
|
+
var userinfovue_type_template_id_751fb998_render = function () {
|
|
4090
4090
|
var _vm = this
|
|
4091
4091
|
var _h = _vm.$createElement
|
|
4092
4092
|
var _c = _vm._self._c || _h
|
|
@@ -4102,11 +4102,11 @@ var userinfovue_type_template_id_799780ee_render = function () {
|
|
|
4102
4102
|
2
|
|
4103
4103
|
)
|
|
4104
4104
|
}
|
|
4105
|
-
var
|
|
4106
|
-
|
|
4105
|
+
var userinfovue_type_template_id_751fb998_staticRenderFns = []
|
|
4106
|
+
userinfovue_type_template_id_751fb998_render._withStripped = true
|
|
4107
4107
|
|
|
4108
4108
|
|
|
4109
|
-
// CONCATENATED MODULE: ./packages/main/src/userinfo.vue?vue&type=template&id=
|
|
4109
|
+
// CONCATENATED MODULE: ./packages/main/src/userinfo.vue?vue&type=template&id=751fb998&
|
|
4110
4110
|
|
|
4111
4111
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
4112
4112
|
var api = __webpack_require__(1);
|
|
@@ -4392,6 +4392,7 @@ var util = __webpack_require__(0);
|
|
|
4392
4392
|
key: 'userId',
|
|
4393
4393
|
value: value.value
|
|
4394
4394
|
});
|
|
4395
|
+
util["a" /* default */].removeStorage('mainConfig');
|
|
4395
4396
|
_this3.$message({
|
|
4396
4397
|
message: res.msg,
|
|
4397
4398
|
type: 'success',
|
|
@@ -4533,8 +4534,8 @@ var componentNormalizer = __webpack_require__(3);
|
|
|
4533
4534
|
|
|
4534
4535
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
4535
4536
|
src_userinfovue_type_script_lang_js_,
|
|
4536
|
-
|
|
4537
|
-
|
|
4537
|
+
userinfovue_type_template_id_751fb998_render,
|
|
4538
|
+
userinfovue_type_template_id_751fb998_staticRenderFns,
|
|
4538
4539
|
false,
|
|
4539
4540
|
null,
|
|
4540
4541
|
null,
|
|
@@ -5733,7 +5734,7 @@ var regenerator_ = __webpack_require__(12);
|
|
|
5733
5734
|
var regenerator_default = /*#__PURE__*/__webpack_require__.n(regenerator_);
|
|
5734
5735
|
|
|
5735
5736
|
// EXTERNAL MODULE: external "runtime-import"
|
|
5736
|
-
var external_runtime_import_ = __webpack_require__(
|
|
5737
|
+
var external_runtime_import_ = __webpack_require__(21);
|
|
5737
5738
|
|
|
5738
5739
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/async-component/index.vue?vue&type=script&lang=js&
|
|
5739
5740
|
|
package/lib/player.js
CHANGED
|
@@ -3322,7 +3322,7 @@ module.exports = require("sm-crypto");
|
|
|
3322
3322
|
|
|
3323
3323
|
/***/ }),
|
|
3324
3324
|
|
|
3325
|
-
/***/
|
|
3325
|
+
/***/ 18:
|
|
3326
3326
|
/***/ (function(module, exports) {
|
|
3327
3327
|
|
|
3328
3328
|
module.exports = require("video.js");
|
|
@@ -3336,14 +3336,14 @@ module.exports = require("eoss-element");
|
|
|
3336
3336
|
|
|
3337
3337
|
/***/ }),
|
|
3338
3338
|
|
|
3339
|
-
/***/
|
|
3339
|
+
/***/ 22:
|
|
3340
3340
|
/***/ (function(module, exports) {
|
|
3341
3341
|
|
|
3342
3342
|
module.exports = require("video.js/dist/lang/zh-CN.json");
|
|
3343
3343
|
|
|
3344
3344
|
/***/ }),
|
|
3345
3345
|
|
|
3346
|
-
/***/
|
|
3346
|
+
/***/ 26:
|
|
3347
3347
|
/***/ (function(module, exports) {
|
|
3348
3348
|
|
|
3349
3349
|
module.exports = require("video.js/dist/video-js.css");
|
|
@@ -3497,15 +3497,15 @@ render._withStripped = true
|
|
|
3497
3497
|
// CONCATENATED MODULE: ./packages/player/src/main.vue?vue&type=template&id=29c1659e&
|
|
3498
3498
|
|
|
3499
3499
|
// EXTERNAL MODULE: external "video.js"
|
|
3500
|
-
var external_video_js_ = __webpack_require__(
|
|
3500
|
+
var external_video_js_ = __webpack_require__(18);
|
|
3501
3501
|
var external_video_js_default = /*#__PURE__*/__webpack_require__.n(external_video_js_);
|
|
3502
3502
|
|
|
3503
3503
|
// EXTERNAL MODULE: external "video.js/dist/lang/zh-CN.json"
|
|
3504
|
-
var zh_CN_json_ = __webpack_require__(
|
|
3504
|
+
var zh_CN_json_ = __webpack_require__(22);
|
|
3505
3505
|
var zh_CN_json_default = /*#__PURE__*/__webpack_require__.n(zh_CN_json_);
|
|
3506
3506
|
|
|
3507
3507
|
// EXTERNAL MODULE: external "video.js/dist/video-js.css"
|
|
3508
|
-
var video_js_css_ = __webpack_require__(
|
|
3508
|
+
var video_js_css_ = __webpack_require__(26);
|
|
3509
3509
|
|
|
3510
3510
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
3511
3511
|
var util = __webpack_require__(0);
|
package/lib/qr-code.js
CHANGED
|
@@ -3329,7 +3329,7 @@ module.exports = require("eoss-element");
|
|
|
3329
3329
|
|
|
3330
3330
|
/***/ }),
|
|
3331
3331
|
|
|
3332
|
-
/***/
|
|
3332
|
+
/***/ 27:
|
|
3333
3333
|
/***/ (function(module, exports) {
|
|
3334
3334
|
|
|
3335
3335
|
module.exports = require("qrcode");
|
|
@@ -3528,7 +3528,7 @@ var util = __webpack_require__(0);
|
|
|
3528
3528
|
//
|
|
3529
3529
|
|
|
3530
3530
|
|
|
3531
|
-
var QRCode = __webpack_require__(
|
|
3531
|
+
var QRCode = __webpack_require__(27);
|
|
3532
3532
|
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
|
3533
3533
|
name: 'EsQrCode',
|
|
3534
3534
|
props: {
|
package/lib/radio-group.js
CHANGED
|
@@ -3354,7 +3354,7 @@ window.__store = store;
|
|
|
3354
3354
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3355
3355
|
|
|
3356
3356
|
"use strict";
|
|
3357
|
-
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3357
|
+
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(15);
|
|
3358
3358
|
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);
|
|
3359
3359
|
|
|
3360
3360
|
|
|
@@ -3362,7 +3362,7 @@ window.__store = store;
|
|
|
3362
3362
|
|
|
3363
3363
|
/***/ }),
|
|
3364
3364
|
|
|
3365
|
-
/***/
|
|
3365
|
+
/***/ 15:
|
|
3366
3366
|
/***/ (function(module, exports) {
|
|
3367
3367
|
|
|
3368
3368
|
module.exports = require("vue");
|
package/lib/select-ganged.js
CHANGED
|
@@ -3326,7 +3326,7 @@ module.exports = require("sm-crypto");
|
|
|
3326
3326
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3327
3327
|
|
|
3328
3328
|
"use strict";
|
|
3329
|
-
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3329
|
+
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(15);
|
|
3330
3330
|
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);
|
|
3331
3331
|
|
|
3332
3332
|
|
|
@@ -3334,7 +3334,7 @@ module.exports = require("sm-crypto");
|
|
|
3334
3334
|
|
|
3335
3335
|
/***/ }),
|
|
3336
3336
|
|
|
3337
|
-
/***/
|
|
3337
|
+
/***/ 15:
|
|
3338
3338
|
/***/ (function(module, exports) {
|
|
3339
3339
|
|
|
3340
3340
|
module.exports = require("vue");
|
package/lib/select.js
CHANGED
|
@@ -3354,7 +3354,7 @@ window.__store = store;
|
|
|
3354
3354
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
3355
3355
|
|
|
3356
3356
|
"use strict";
|
|
3357
|
-
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
3357
|
+
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(15);
|
|
3358
3358
|
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);
|
|
3359
3359
|
|
|
3360
3360
|
|
|
@@ -3362,7 +3362,7 @@ window.__store = store;
|
|
|
3362
3362
|
|
|
3363
3363
|
/***/ }),
|
|
3364
3364
|
|
|
3365
|
-
/***/
|
|
3365
|
+
/***/ 15:
|
|
3366
3366
|
/***/ (function(module, exports) {
|
|
3367
3367
|
|
|
3368
3368
|
module.exports = require("vue");
|
package/lib/selector-panel.js
CHANGED
|
@@ -3603,13 +3603,13 @@ module.exports = require("sm-crypto");
|
|
|
3603
3603
|
/* 21 */,
|
|
3604
3604
|
/* 22 */,
|
|
3605
3605
|
/* 23 */,
|
|
3606
|
-
/* 24
|
|
3607
|
-
/* 25 */
|
|
3606
|
+
/* 24 */
|
|
3608
3607
|
/***/ (function(module, exports) {
|
|
3609
3608
|
|
|
3610
3609
|
module.exports = require("sortablejs");
|
|
3611
3610
|
|
|
3612
3611
|
/***/ }),
|
|
3612
|
+
/* 25 */,
|
|
3613
3613
|
/* 26 */,
|
|
3614
3614
|
/* 27 */,
|
|
3615
3615
|
/* 28 */,
|
|
@@ -4319,7 +4319,7 @@ selectionvue_type_template_id_66e09547_render._withStripped = true
|
|
|
4319
4319
|
// CONCATENATED MODULE: ./packages/selector-panel/src/selection.vue?vue&type=template&id=66e09547&
|
|
4320
4320
|
|
|
4321
4321
|
// EXTERNAL MODULE: external "sortablejs"
|
|
4322
|
-
var external_sortablejs_ = __webpack_require__(
|
|
4322
|
+
var external_sortablejs_ = __webpack_require__(24);
|
|
4323
4323
|
var external_sortablejs_default = /*#__PURE__*/__webpack_require__.n(external_sortablejs_);
|
|
4324
4324
|
|
|
4325
4325
|
// EXTERNAL MODULE: ./src/utils/util.js
|