@panpanzhao/component-ui 0.0.18 → 0.0.20

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,626 @@
1
+ module.exports =
2
+ /******/ (function(modules) { // webpackBootstrap
3
+ /******/ // The module cache
4
+ /******/ var installedModules = {};
5
+ /******/
6
+ /******/ // The require function
7
+ /******/ function __webpack_require__(moduleId) {
8
+ /******/
9
+ /******/ // Check if module is in cache
10
+ /******/ if(installedModules[moduleId]) {
11
+ /******/ return installedModules[moduleId].exports;
12
+ /******/ }
13
+ /******/ // Create a new module (and put it into the cache)
14
+ /******/ var module = installedModules[moduleId] = {
15
+ /******/ i: moduleId,
16
+ /******/ l: false,
17
+ /******/ exports: {}
18
+ /******/ };
19
+ /******/
20
+ /******/ // Execute the module function
21
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
22
+ /******/
23
+ /******/ // Flag the module as loaded
24
+ /******/ module.l = true;
25
+ /******/
26
+ /******/ // Return the exports of the module
27
+ /******/ return module.exports;
28
+ /******/ }
29
+ /******/
30
+ /******/
31
+ /******/ // expose the modules object (__webpack_modules__)
32
+ /******/ __webpack_require__.m = modules;
33
+ /******/
34
+ /******/ // expose the module cache
35
+ /******/ __webpack_require__.c = installedModules;
36
+ /******/
37
+ /******/ // define getter function for harmony exports
38
+ /******/ __webpack_require__.d = function(exports, name, getter) {
39
+ /******/ if(!__webpack_require__.o(exports, name)) {
40
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
41
+ /******/ }
42
+ /******/ };
43
+ /******/
44
+ /******/ // define __esModule on exports
45
+ /******/ __webpack_require__.r = function(exports) {
46
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
47
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
48
+ /******/ }
49
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
50
+ /******/ };
51
+ /******/
52
+ /******/ // create a fake namespace object
53
+ /******/ // mode & 1: value is a module id, require it
54
+ /******/ // mode & 2: merge all properties of value into the ns
55
+ /******/ // mode & 4: return value when already ns object
56
+ /******/ // mode & 8|1: behave like require
57
+ /******/ __webpack_require__.t = function(value, mode) {
58
+ /******/ if(mode & 1) value = __webpack_require__(value);
59
+ /******/ if(mode & 8) return value;
60
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
61
+ /******/ var ns = Object.create(null);
62
+ /******/ __webpack_require__.r(ns);
63
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
64
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
65
+ /******/ return ns;
66
+ /******/ };
67
+ /******/
68
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
69
+ /******/ __webpack_require__.n = function(module) {
70
+ /******/ var getter = module && module.__esModule ?
71
+ /******/ function getDefault() { return module['default']; } :
72
+ /******/ function getModuleExports() { return module; };
73
+ /******/ __webpack_require__.d(getter, 'a', getter);
74
+ /******/ return getter;
75
+ /******/ };
76
+ /******/
77
+ /******/ // Object.prototype.hasOwnProperty.call
78
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
79
+ /******/
80
+ /******/ // __webpack_public_path__
81
+ /******/ __webpack_require__.p = "/dist/";
82
+ /******/
83
+ /******/
84
+ /******/ // Load entry module and return exports
85
+ /******/ return __webpack_require__(__webpack_require__.s = 79);
86
+ /******/ })
87
+ /************************************************************************/
88
+ /******/ ({
89
+
90
+ /***/ 0:
91
+ /***/ (function(module, exports) {
92
+
93
+ module.exports = require("@vue/babel-helper-vue-jsx-merge-props");
94
+
95
+ /***/ }),
96
+
97
+ /***/ 1:
98
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
99
+
100
+ "use strict";
101
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
102
+ /* globals __VUE_SSR_CONTEXT__ */
103
+
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
+ /***/ 12:
203
+ /***/ (function(module, exports) {
204
+
205
+ module.exports = require("element-ui/lib/form");
206
+
207
+ /***/ }),
208
+
209
+ /***/ 13:
210
+ /***/ (function(module, exports) {
211
+
212
+ module.exports = require("element-ui/lib/row");
213
+
214
+ /***/ }),
215
+
216
+ /***/ 14:
217
+ /***/ (function(module, exports) {
218
+
219
+ module.exports = require("element-ui/lib/col");
220
+
221
+ /***/ }),
222
+
223
+ /***/ 15:
224
+ /***/ (function(module, exports) {
225
+
226
+ module.exports = require("@panpanzhao/component-ui/lib/components/form-item");
227
+
228
+ /***/ }),
229
+
230
+ /***/ 2:
231
+ /***/ (function(module, exports) {
232
+
233
+ module.exports = require("lodash");
234
+
235
+ /***/ }),
236
+
237
+ /***/ 79:
238
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
239
+
240
+ "use strict";
241
+ // ESM COMPAT FLAG
242
+ __webpack_require__.r(__webpack_exports__);
243
+
244
+ // EXTERNAL MODULE: external "@vue/babel-helper-vue-jsx-merge-props"
245
+ var babel_helper_vue_jsx_merge_props_ = __webpack_require__(0);
246
+ var babel_helper_vue_jsx_merge_props_default = /*#__PURE__*/__webpack_require__.n(babel_helper_vue_jsx_merge_props_);
247
+
248
+ // EXTERNAL MODULE: external "element-ui/lib/form"
249
+ var form_ = __webpack_require__(12);
250
+ var form_default = /*#__PURE__*/__webpack_require__.n(form_);
251
+
252
+ // EXTERNAL MODULE: external "element-ui/lib/row"
253
+ var row_ = __webpack_require__(13);
254
+ var row_default = /*#__PURE__*/__webpack_require__.n(row_);
255
+
256
+ // EXTERNAL MODULE: external "element-ui/lib/col"
257
+ var col_ = __webpack_require__(14);
258
+ var col_default = /*#__PURE__*/__webpack_require__.n(col_);
259
+
260
+ // EXTERNAL MODULE: external "@panpanzhao/component-ui/lib/components/form-item"
261
+ var form_item_ = __webpack_require__(15);
262
+ var form_item_default = /*#__PURE__*/__webpack_require__.n(form_item_);
263
+
264
+ // EXTERNAL MODULE: external "lodash"
265
+ var external_lodash_ = __webpack_require__(2);
266
+
267
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/form-query/src/form.vue?vue&type=script&lang=js&
268
+
269
+
270
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
271
+
272
+
273
+
274
+
275
+
276
+ /* harmony default export */ var formvue_type_script_lang_js_ = ({
277
+ name: "FormQuery",
278
+ componentName: "FormQuery",
279
+ components: {
280
+ elForm: form_default.a,
281
+ FormItem: form_item_default.a,
282
+ elRow: row_default.a,
283
+ elCol: col_default.a
284
+ },
285
+ provide: function provide() {
286
+ return {
287
+ form: this
288
+ };
289
+ },
290
+ props: {
291
+ defaultCollapsed: {
292
+ type: Boolean,
293
+ default: true
294
+ },
295
+ defaultColsNumber: Number,
296
+ //默认展示数
297
+ span: {
298
+ //每列占用行
299
+ Number: Number,
300
+ default: 8
301
+ },
302
+ submitterSpan: Number,
303
+ gutter: {
304
+ type: Number,
305
+ default: 24
306
+ },
307
+ showHiddenNum: Boolean,
308
+ //是否显示隐藏数量
309
+ isFull: {
310
+ type: Boolean,
311
+ default: true
312
+ },
313
+ actions: {
314
+ type: Array,
315
+ default: function _default() {
316
+ return [];
317
+ }
318
+ },
319
+ formItems: {
320
+ type: Array,
321
+ default: function _default() {
322
+ return [];
323
+ }
324
+ },
325
+ formModel: {
326
+ type: Object,
327
+ default: function _default() {
328
+ return {};
329
+ }
330
+ }
331
+ },
332
+ computed: {
333
+ formProps: function formProps() {
334
+ return Object.assign({}, this.$attrs, {
335
+ model: this.formModel
336
+ });
337
+ },
338
+ actionItem: function actionItem() {
339
+ var relItem = {};
340
+ this.actions.forEach(function (item) {
341
+ if (!relItem[item.trigger]) {
342
+ relItem[item.trigger] = [];
343
+ }
344
+ relItem[item.trigger].push(item);
345
+ });
346
+ return relItem;
347
+ }
348
+ },
349
+ data: function data() {
350
+ return {
351
+ pageData: {
352
+ searchLoading: false
353
+ },
354
+ collapsed: true,
355
+ defaultModel: {},
356
+ //默认值存储
357
+ formItemLayout: {}
358
+ };
359
+ },
360
+ created: function created() {
361
+ var _this = this;
362
+ this.collapsed = this.defaultCollapsed;
363
+ this.formItems.forEach(function (item) {
364
+ _this.formItemLayout[item.prop] = item;
365
+ if (typeof item.value === "function") {
366
+ item.value = item.value.call(_this);
367
+ }
368
+ _this.defaultModel[item.prop] = item.value;
369
+ //初始化值处理
370
+ var formVal = Object(external_lodash_["get"])(_this.formModel, item.prop);
371
+ if (typeof formVal === 'undefined') {
372
+ //初始化数据值
373
+ if (item.prop && item.prop.indexOf(".") != -1) {
374
+ //循环设置值
375
+ var keyArr = item.prop.split('.');
376
+ var tempObj = _this.formModel;
377
+ keyArr.forEach(function (key, index) {
378
+ if (index < keyArr.length - 1) {
379
+ if (typeof tempObj[key] === 'undefined') {
380
+ _this.$set(tempObj, key, {});
381
+ }
382
+ tempObj = tempObj[key];
383
+ } else {
384
+ _this.$set(tempObj, key, item.value || null);
385
+ }
386
+ });
387
+ } else {
388
+ _this.$set(_this.formModel, item.prop, item.value || null);
389
+ }
390
+ } else {
391
+ item.value = formVal;
392
+ }
393
+ });
394
+ },
395
+ methods: {
396
+ validate: function validate(callback) {
397
+ return this.$refs.form.validate(callback);
398
+ },
399
+ validateField: function validateField(props, callback) {
400
+ return this.$refs.form.validateField(props, callback);
401
+ },
402
+ reset: function reset() {
403
+ this.resetFields();
404
+ },
405
+ resetFields: function resetFields() {
406
+ for (var key in this.defaultModel) {
407
+ if (this.formItemLayout[key]) {
408
+ this.formItemLayout[key].value = this.defaultModel[key];
409
+ this.formModel[key] = this.defaultModel[key];
410
+ }
411
+ }
412
+ this.$refs.form.resetFields();
413
+ },
414
+ clearValidate: function clearValidate(props) {
415
+ return this.$refs.form.clearValidate(props);
416
+ },
417
+ searchSubmit: function searchSubmit() {
418
+ this.$emit("query", this.formModel, {
419
+ loading: this.pageData.searchLoading
420
+ });
421
+ },
422
+ resetForm: function resetForm() {
423
+ this.reset();
424
+ },
425
+ setCollapsed: function setCollapsed() {
426
+ this.collapsed = !this.collapsed;
427
+ },
428
+ needCollapseRender: function needCollapseRender(totalSize, showLength, totalSpan) {
429
+ if (totalSpan < 24 || totalSize <= showLength) {
430
+ return false;
431
+ }
432
+ return true;
433
+ },
434
+ offset: function offset(currentSpan) {
435
+ var offsetSpan = currentSpan % 24 + (this.submitterSpan || this.span);
436
+ if (offsetSpan > 24) {
437
+ return 24 - (this.submitterSpan || this.span);
438
+ }
439
+ return 24 - offsetSpan;
440
+ },
441
+ renderSubmitter: function renderSubmitter(hiddenNum, needCollapseRender) {
442
+ if (typeof this.$scopedSlots.submitter === "function") {
443
+ return this.$scopedSlots.submitter.call(this, {
444
+ formModel: this.formModel,
445
+ collapsed: this.collapsed,
446
+ setCollapsed: this.setCollapsed,
447
+ hiddenNum: hiddenNum,
448
+ needCollapseRender: needCollapseRender
449
+ });
450
+ }
451
+ return this.$slots.submitter;
452
+ },
453
+ renderQueryContent: function renderQueryContent(h, data) {
454
+ var _this2 = this;
455
+ var showLength = data.showLength;
456
+ // totalSpan 统计控件占的位置,计算 offset 保证查询按钮在最后一列
457
+ var totalSpan = 0;
458
+ // totalSize 统计控件占的份数
459
+ var totalSize = 0;
460
+ //首个表单项是否占满第一行
461
+ var firstRowFull = false;
462
+ var itemLength = 0;
463
+
464
+ // 处理过,包含是否需要隐藏的 数组
465
+ var processedList = this.formItems.map(function (item, index) {
466
+ // 如果 formItem 自己配置了 hidden,默认使用它自己的
467
+ var colSize = item.colSize ? item.colSize : 1;
468
+ var colSpan = item.span || Math.min(_this2.span * (colSize || 1), 24);
469
+ // 计算总的 totalSpan 长度
470
+ totalSpan += colSpan;
471
+ // 计算总的 colSize 长度
472
+ totalSize += colSize;
473
+ if (index === 0) {
474
+ firstRowFull == colSpan === 24 && !item.hidden;
475
+ }
476
+ var hidden = item.hidden ||
477
+ // 如果收起了
478
+ _this2.collapsed && (firstRowFull ||
479
+ // 如果 超过显示长度 且 总长度超过了 24
480
+ totalSize > showLength) && !!index && totalSpan >= 24;
481
+ itemLength += 1;
482
+ return {
483
+ itemDom: item,
484
+ hidden: hidden,
485
+ colSpan: colSpan
486
+ };
487
+ });
488
+ // for split compute
489
+ var currentSpan = 0;
490
+ var doms = processedList.map(function (itemProps, index) {
491
+ var itemDom = itemProps.itemDom,
492
+ colSpan = itemProps.colSpan,
493
+ hidden = itemProps.hidden;
494
+ var isHidden = itemDom.hidden || hidden;
495
+ if (isHidden) return null;
496
+
497
+ // 每一列的key, 一般是存在的
498
+ var itemKey = itemDom.key || itemDom.prop || index;
499
+ if (24 - currentSpan % 24 < colSpan) {
500
+ // 如果当前行空余位置放不下,那么折行
501
+ totalSpan += 24 - currentSpan % 24;
502
+ currentSpan += 24 - currentSpan % 24;
503
+ }
504
+ currentSpan += colSpan;
505
+ var itemProp = {
506
+ attrs: Object.assign(_extends({}, itemDom), {
507
+ config: itemDom,
508
+ value: _this2.formModel[itemDom.prop],
509
+ actions: _this2.actionItem[itemDom.prop]
510
+ }),
511
+ on: Object.assign(_extends({}, itemDom.on))
512
+ };
513
+ return h("el-col", {
514
+ "key": itemKey,
515
+ "attrs": {
516
+ "span": colSpan
517
+ }
518
+ }, [h("form-item", babel_helper_vue_jsx_merge_props_default()([{}, itemProp]))]);
519
+ });
520
+ var hiddenNum = this.showHiddenNum && processedList.filter(function (item) {
521
+ return item.hidden;
522
+ }).length;
523
+ /** 是否需要展示 collapseRender */
524
+ var needCollapseRender = this.needCollapseRender(totalSize, showLength, totalSpan);
525
+ var offset = this.offset(currentSpan);
526
+ return h("el-row", {
527
+ "attrs": {
528
+ "gutter": this.gutter
529
+ }
530
+ }, [doms, h("el-col", {
531
+ "key": "submitter",
532
+ "attrs": {
533
+ "span": this.submitterSpan || this.span,
534
+ "offset": offset
535
+ },
536
+ "style": {
537
+ textAlign: 'end'
538
+ }
539
+ }, [this.renderSubmitter(hiddenNum, needCollapseRender) || h("div", {
540
+ "class": "query-button"
541
+ }, [h("el-button", {
542
+ "attrs": {
543
+ "icon": "el-icon-refresh-left"
544
+ },
545
+ "on": {
546
+ "click": this.resetForm
547
+ }
548
+ }, ["\u91CD\u7F6E"]), h("el-button", {
549
+ "attrs": {
550
+ "loading": this.pageData.searchLoading,
551
+ "type": "primary",
552
+ "icon": "el-icon-search"
553
+ },
554
+ "on": {
555
+ "click": this.searchSubmit
556
+ }
557
+ }, ["\u67E5\u8BE2"]), needCollapseRender ? h("el-link", {
558
+ "attrs": {
559
+ "type": "primary"
560
+ },
561
+ "on": {
562
+ "click": this.setCollapsed
563
+ }
564
+ }, [h("span", {
565
+ "class": "collapse"
566
+ }, [this.collapsed ? "\u5C55\u5F00" + (hiddenNum ? "(" + hiddenNum + ")" : '') : "收起"]), h("i", {
567
+ "class": this.collapsed ? "el-icon-arrow-down" : "el-icon-arrow-up"
568
+ })]) : null])])]);
569
+ }
570
+ },
571
+ render: function render(h) {
572
+ // 查询重置按钮也会占一个格子,需要减掉计算
573
+ var showLength = this.defaultColsNumber ? this.defaultColsNumber : null; //展示数量
574
+ if (!showLength) {
575
+ showLength = Math.max(1, 24 / this.span - 1);
576
+ }
577
+ var formProp = {
578
+ attrs: Object.assign({}, this.formProps),
579
+ on: Object.assign({}, this.$listeners)
580
+ };
581
+ return h("div", {
582
+ "class": ['form form-query', {
583
+ 'is-full': this.isFull
584
+ }]
585
+ }, [h("el-form", babel_helper_vue_jsx_merge_props_default()([{
586
+ "ref": "form"
587
+ }, formProp]), [this.renderQueryContent(h, {
588
+ showLength: showLength
589
+ })])]);
590
+ }
591
+ });
592
+ // CONCATENATED MODULE: ./src/components/form-query/src/form.vue?vue&type=script&lang=js&
593
+ /* harmony default export */ var src_formvue_type_script_lang_js_ = (formvue_type_script_lang_js_);
594
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
595
+ var componentNormalizer = __webpack_require__(1);
596
+
597
+ // CONCATENATED MODULE: ./src/components/form-query/src/form.vue
598
+ var form_render, staticRenderFns
599
+
600
+
601
+
602
+
603
+ /* normalize component */
604
+
605
+ var component = Object(componentNormalizer["a" /* default */])(
606
+ src_formvue_type_script_lang_js_,
607
+ form_render,
608
+ staticRenderFns,
609
+ false,
610
+ null,
611
+ null,
612
+ null
613
+
614
+ )
615
+
616
+ /* harmony default export */ var src_form = (component.exports);
617
+ // CONCATENATED MODULE: ./src/components/form-query/index.js
618
+
619
+ src_form.install = function (Vue) {
620
+ Vue.component(src_form.name, src_form);
621
+ };
622
+ /* harmony default export */ var form_query = __webpack_exports__["default"] = (src_form);
623
+
624
+ /***/ })
625
+
626
+ /******/ });
@@ -565,7 +565,8 @@ var external_async_validator_default = /*#__PURE__*/__webpack_require__.n(extern
565
565
  render: this.render
566
566
  }, this.inputConfig, {
567
567
  value: this.value,
568
- rowData: this.rowData
568
+ rowData: this.rowData,
569
+ row: this.row
569
570
  }),
570
571
  on: Object.assign({}, this.eventOn, this.actionEventOn, {
571
572
  focus: function focus() {
@@ -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 = 80);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 81);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -2056,7 +2056,8 @@ module.exports = require("element-ui/lib/message-box");
2056
2056
  /* 77 */,
2057
2057
  /* 78 */,
2058
2058
  /* 79 */,
2059
- /* 80 */
2059
+ /* 80 */,
2060
+ /* 81 */
2060
2061
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2061
2062
 
2062
2063
  "use strict";