@mdsfe/mds-ui 0.2.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.
Files changed (153) hide show
  1. package/CHANGELOG.md +778 -0
  2. package/LICENSE +21 -0
  3. package/README.md +106 -0
  4. package/dist/_locale/index.js +18 -0
  5. package/dist/_locale/zh-CN.js +123 -0
  6. package/dist/_mixin/emitter.js +35 -0
  7. package/dist/_mixin/focus.js +13 -0
  8. package/dist/_mixin/locale.js +17 -0
  9. package/dist/_mixin/popper.js +192 -0
  10. package/dist/_mixin/tooltip.js +218 -0
  11. package/dist/_util/__test__/switchcase.test.js +43 -0
  12. package/dist/_util/autoprefixer.js +249 -0
  13. package/dist/_util/clickoutside.js +79 -0
  14. package/dist/_util/date.js +368 -0
  15. package/dist/_util/dateUtil.js +311 -0
  16. package/dist/_util/dom.js +240 -0
  17. package/dist/_util/getRequestAnimationFrame.js +50 -0
  18. package/dist/_util/getScroll.js +21 -0
  19. package/dist/_util/loaders/loaders.css.js +52 -0
  20. package/dist/_util/loaders/loading.js +53 -0
  21. package/dist/_util/merge.js +18 -0
  22. package/dist/_util/popper.js +1261 -0
  23. package/dist/_util/popup/index.js +232 -0
  24. package/dist/_util/popup/popup-manager.js +205 -0
  25. package/dist/_util/proptype.js +12 -0
  26. package/dist/_util/repeatClick.js +30 -0
  27. package/dist/_util/resize.js +61 -0
  28. package/dist/_util/resizeEvent.js +59 -0
  29. package/dist/_util/scrollIntoView.js +38 -0
  30. package/dist/_util/scrollbar-width.js +37 -0
  31. package/dist/_util/soda.js +54 -0
  32. package/dist/_util/switchcase.js +22 -0
  33. package/dist/_util/throttleByAnimationFrame.js +70 -0
  34. package/dist/_util/tree/node.js +412 -0
  35. package/dist/_util/tree/tree.js +410 -0
  36. package/dist/_util/util.js +166 -0
  37. package/dist/_util/vue-popper.js +213 -0
  38. package/dist/affix.js +509 -0
  39. package/dist/anchor.js +522 -0
  40. package/dist/avatar.js +437 -0
  41. package/dist/backtop.js +469 -0
  42. package/dist/badge.js +439 -0
  43. package/dist/bordershadow.js +310 -0
  44. package/dist/breadcrumb.js +434 -0
  45. package/dist/button.js +579 -0
  46. package/dist/card.js +514 -0
  47. package/dist/carousel.js +1326 -0
  48. package/dist/cascaderpanel.js +2320 -0
  49. package/dist/checkbox.js +681 -0
  50. package/dist/col.js +546 -0
  51. package/dist/collapse.js +671 -0
  52. package/dist/color.js +306 -0
  53. package/dist/datepicker.js +8089 -0
  54. package/dist/divider.js +346 -0
  55. package/dist/drawer.js +652 -0
  56. package/dist/dropdown.js +687 -0
  57. package/dist/empty.js +416 -0
  58. package/dist/font.js +306 -0
  59. package/dist/form.js +878 -0
  60. package/dist/icon.js +401 -0
  61. package/dist/index.js +1 -0
  62. package/dist/input.js +1251 -0
  63. package/dist/inputnumber.js +689 -0
  64. package/dist/layout.js +786 -0
  65. package/dist/list.js +789 -0
  66. package/dist/loading.js +430 -0
  67. package/dist/mds-ui.min.css +7 -0
  68. package/dist/mds-ui.min.js +64911 -0
  69. package/dist/menu.js +1131 -0
  70. package/dist/message.js +1016 -0
  71. package/dist/modal.js +895 -0
  72. package/dist/notification.js +818 -0
  73. package/dist/pagination.js +1213 -0
  74. package/dist/popconfirm.js +336 -0
  75. package/dist/popover.js +206 -0
  76. package/dist/progress.js +1023 -0
  77. package/dist/radio.js +760 -0
  78. package/dist/rate.js +765 -0
  79. package/dist/row.js +546 -0
  80. package/dist/select.js +4950 -0
  81. package/dist/slider.js +1411 -0
  82. package/dist/slottable.js +1414 -0
  83. package/dist/steps.js +546 -0
  84. package/dist/style/affix.css +5524 -0
  85. package/dist/style/anchor.css +5572 -0
  86. package/dist/style/avatar.css +5587 -0
  87. package/dist/style/backtop.css +34 -0
  88. package/dist/style/badge.css +5655 -0
  89. package/dist/style/bordershadow.css +5601 -0
  90. package/dist/style/breadcrumb.css +5551 -0
  91. package/dist/style/button.css +7679 -0
  92. package/dist/style/card.css +5670 -0
  93. package/dist/style/carousel.css +5731 -0
  94. package/dist/style/cascaderpanel.css +125 -0
  95. package/dist/style/checkbox.css +5700 -0
  96. package/dist/style/col.css +8121 -0
  97. package/dist/style/collapse.css +5593 -0
  98. package/dist/style/color.css +6136 -0
  99. package/dist/style/datepicker.css +5977 -0
  100. package/dist/style/divider.css +5558 -0
  101. package/dist/style/drawer.css +7979 -0
  102. package/dist/style/dropdown.css +7950 -0
  103. package/dist/style/empty.css +5563 -0
  104. package/dist/style/font.css +5559 -0
  105. package/dist/style/form.css +5662 -0
  106. package/dist/style/icon.css +5538 -0
  107. package/dist/style/input.css +6256 -0
  108. package/dist/style/inputnumber.css +5828 -0
  109. package/dist/style/layout.css +5572 -0
  110. package/dist/style/list.css +5655 -0
  111. package/dist/style/loading.css +5540 -0
  112. package/dist/style/menu.css +6183 -0
  113. package/dist/style/message.css +194 -0
  114. package/dist/style/modal.css +5637 -0
  115. package/dist/style/notification.css +5706 -0
  116. package/dist/style/pagination.css +6683 -0
  117. package/dist/style/popconfirm.css +7951 -0
  118. package/dist/style/popover.css +5727 -0
  119. package/dist/style/progress.css +5714 -0
  120. package/dist/style/radio.css +5769 -0
  121. package/dist/style/rate.css +5616 -0
  122. package/dist/style/row.css +8121 -0
  123. package/dist/style/select.css +5729 -0
  124. package/dist/style/slider.css +5594 -0
  125. package/dist/style/slottable.css +5831 -0
  126. package/dist/style/steps.css +6100 -0
  127. package/dist/style/switch.css +5624 -0
  128. package/dist/style/table.css +8392 -0
  129. package/dist/style/tabs.css +6047 -0
  130. package/dist/style/tag.css +5935 -0
  131. package/dist/style/text.css +5636 -0
  132. package/dist/style/timeline.css +5602 -0
  133. package/dist/style/timepicker.css +5904 -0
  134. package/dist/style/tooltip.css +5686 -0
  135. package/dist/style/transfer.css +101 -0
  136. package/dist/style/transition.css +1417 -0
  137. package/dist/style/tree.css +5598 -0
  138. package/dist/style/typography.css +5640 -0
  139. package/dist/style/upload.css +5834 -0
  140. package/dist/switch.js +448 -0
  141. package/dist/table.js +3809 -0
  142. package/dist/tabs.js +1273 -0
  143. package/dist/tag.js +478 -0
  144. package/dist/text.js +1100 -0
  145. package/dist/timeline.js +495 -0
  146. package/dist/timepicker.js +1567 -0
  147. package/dist/tooltip.js +179 -0
  148. package/dist/transfer.js +981 -0
  149. package/dist/transition.js +246 -0
  150. package/dist/tree.js +1866 -0
  151. package/dist/typography.js +469 -0
  152. package/dist/upload.js +1990 -0
  153. package/package.json +144 -0
@@ -0,0 +1,1213 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory(require("./_util/proptype"), require("./input"));
4
+ else if(typeof define === 'function' && define.amd)
5
+ define(["./_util/proptype", "./input"], factory);
6
+ else {
7
+ var a = typeof exports === 'object' ? factory(require("./_util/proptype"), require("./input")) : factory(root["./_util/proptype"], root["./input"]);
8
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
+ }
10
+ })(window, function(__WEBPACK_EXTERNAL_MODULE__3__, __WEBPACK_EXTERNAL_MODULE__10__) {
11
+ return /******/ (function(modules) { // webpackBootstrap
12
+ /******/ // The module cache
13
+ /******/ var installedModules = {};
14
+ /******/
15
+ /******/ // The require function
16
+ /******/ function __webpack_require__(moduleId) {
17
+ /******/
18
+ /******/ // Check if module is in cache
19
+ /******/ if(installedModules[moduleId]) {
20
+ /******/ return installedModules[moduleId].exports;
21
+ /******/ }
22
+ /******/ // Create a new module (and put it into the cache)
23
+ /******/ var module = installedModules[moduleId] = {
24
+ /******/ i: moduleId,
25
+ /******/ l: false,
26
+ /******/ exports: {}
27
+ /******/ };
28
+ /******/
29
+ /******/ // Execute the module function
30
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
31
+ /******/
32
+ /******/ // Flag the module as loaded
33
+ /******/ module.l = true;
34
+ /******/
35
+ /******/ // Return the exports of the module
36
+ /******/ return module.exports;
37
+ /******/ }
38
+ /******/
39
+ /******/
40
+ /******/ // expose the modules object (__webpack_modules__)
41
+ /******/ __webpack_require__.m = modules;
42
+ /******/
43
+ /******/ // expose the module cache
44
+ /******/ __webpack_require__.c = installedModules;
45
+ /******/
46
+ /******/ // define getter function for harmony exports
47
+ /******/ __webpack_require__.d = function(exports, name, getter) {
48
+ /******/ if(!__webpack_require__.o(exports, name)) {
49
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
50
+ /******/ }
51
+ /******/ };
52
+ /******/
53
+ /******/ // define __esModule on exports
54
+ /******/ __webpack_require__.r = function(exports) {
55
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
56
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
57
+ /******/ }
58
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
59
+ /******/ };
60
+ /******/
61
+ /******/ // create a fake namespace object
62
+ /******/ // mode & 1: value is a module id, require it
63
+ /******/ // mode & 2: merge all properties of value into the ns
64
+ /******/ // mode & 4: return value when already ns object
65
+ /******/ // mode & 8|1: behave like require
66
+ /******/ __webpack_require__.t = function(value, mode) {
67
+ /******/ if(mode & 1) value = __webpack_require__(value);
68
+ /******/ if(mode & 8) return value;
69
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
70
+ /******/ var ns = Object.create(null);
71
+ /******/ __webpack_require__.r(ns);
72
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
73
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
74
+ /******/ return ns;
75
+ /******/ };
76
+ /******/
77
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
78
+ /******/ __webpack_require__.n = function(module) {
79
+ /******/ var getter = module && module.__esModule ?
80
+ /******/ function getDefault() { return module['default']; } :
81
+ /******/ function getModuleExports() { return module; };
82
+ /******/ __webpack_require__.d(getter, 'a', getter);
83
+ /******/ return getter;
84
+ /******/ };
85
+ /******/
86
+ /******/ // Object.prototype.hasOwnProperty.call
87
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
88
+ /******/
89
+ /******/ // __webpack_public_path__
90
+ /******/ __webpack_require__.p = "/dist/";
91
+ /******/
92
+ /******/
93
+ /******/ // Load entry module and return exports
94
+ /******/ return __webpack_require__(__webpack_require__.s = 89);
95
+ /******/ })
96
+ /************************************************************************/
97
+ /******/ ({
98
+
99
+ /***/ 0:
100
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
101
+
102
+ "use strict";
103
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
104
+ /* globals __VUE_SSR_CONTEXT__ */
105
+
106
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
107
+ // This module is a runtime utility for cleaner component module output and will
108
+ // be included in the final webpack user bundle.
109
+
110
+ function normalizeComponent (
111
+ scriptExports,
112
+ render,
113
+ staticRenderFns,
114
+ functionalTemplate,
115
+ injectStyles,
116
+ scopeId,
117
+ moduleIdentifier, /* server only */
118
+ shadowMode /* vue-cli only */
119
+ ) {
120
+ // Vue.extend constructor export interop
121
+ var options = typeof scriptExports === 'function'
122
+ ? scriptExports.options
123
+ : scriptExports
124
+
125
+ // render functions
126
+ if (render) {
127
+ options.render = render
128
+ options.staticRenderFns = staticRenderFns
129
+ options._compiled = true
130
+ }
131
+
132
+ // functional template
133
+ if (functionalTemplate) {
134
+ options.functional = true
135
+ }
136
+
137
+ // scopedId
138
+ if (scopeId) {
139
+ options._scopeId = 'data-v-' + scopeId
140
+ }
141
+
142
+ var hook
143
+ if (moduleIdentifier) { // server build
144
+ hook = function (context) {
145
+ // 2.3 injection
146
+ context =
147
+ context || // cached call
148
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
149
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
150
+ // 2.2 with runInNewContext: true
151
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
152
+ context = __VUE_SSR_CONTEXT__
153
+ }
154
+ // inject component styles
155
+ if (injectStyles) {
156
+ injectStyles.call(this, context)
157
+ }
158
+ // register component module identifier for async chunk inferrence
159
+ if (context && context._registeredComponents) {
160
+ context._registeredComponents.add(moduleIdentifier)
161
+ }
162
+ }
163
+ // used by ssr in case component is cached and beforeCreate
164
+ // never gets called
165
+ options._ssrRegister = hook
166
+ } else if (injectStyles) {
167
+ hook = shadowMode
168
+ ? function () {
169
+ injectStyles.call(
170
+ this,
171
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
172
+ )
173
+ }
174
+ : injectStyles
175
+ }
176
+
177
+ if (hook) {
178
+ if (options.functional) {
179
+ // for template-only hot-reload because in that case the render fn doesn't
180
+ // go through the normalizer
181
+ options._injectStyles = hook
182
+ // register for functional component in vue file
183
+ var originalRender = options.render
184
+ options.render = function renderWithStyleInjection (h, context) {
185
+ hook.call(context)
186
+ return originalRender(h, context)
187
+ }
188
+ } else {
189
+ // inject component registration as beforeCreate hook
190
+ var existing = options.beforeCreate
191
+ options.beforeCreate = existing
192
+ ? [].concat(existing, hook)
193
+ : [hook]
194
+ }
195
+ }
196
+
197
+ return {
198
+ exports: scriptExports,
199
+ options: options
200
+ }
201
+ }
202
+
203
+
204
+ /***/ }),
205
+
206
+ /***/ 1:
207
+ /***/ (function(module, exports) {
208
+
209
+ module.exports = require("babel-runtime/helpers/defineProperty");
210
+
211
+ /***/ }),
212
+
213
+ /***/ 10:
214
+ /***/ (function(module, exports) {
215
+
216
+ module.exports = __WEBPACK_EXTERNAL_MODULE__10__;
217
+
218
+ /***/ }),
219
+
220
+ /***/ 131:
221
+ /***/ (function(module, exports) {
222
+
223
+ // removed by extract-text-webpack-plugin
224
+
225
+ /***/ }),
226
+
227
+ /***/ 169:
228
+ /***/ (function(module, exports) {
229
+
230
+ // removed by extract-text-webpack-plugin
231
+
232
+ /***/ }),
233
+
234
+ /***/ 189:
235
+ /***/ (function(module, exports) {
236
+
237
+ // removed by extract-text-webpack-plugin
238
+
239
+ /***/ }),
240
+
241
+ /***/ 3:
242
+ /***/ (function(module, exports) {
243
+
244
+ module.exports = __WEBPACK_EXTERNAL_MODULE__3__;
245
+
246
+ /***/ }),
247
+
248
+ /***/ 54:
249
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
250
+
251
+ "use strict";
252
+ /* harmony import */ var _style_index_less__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(131);
253
+ /* harmony import */ var _style_index_less__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_style_index_less__WEBPACK_IMPORTED_MODULE_0__);
254
+ /* harmony import */ var _index_less__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(169);
255
+ /* harmony import */ var _index_less__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_index_less__WEBPACK_IMPORTED_MODULE_1__);
256
+
257
+
258
+
259
+ /***/ }),
260
+
261
+ /***/ 89:
262
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
263
+
264
+ "use strict";
265
+ // ESM COMPAT FLAG
266
+ __webpack_require__.r(__webpack_exports__);
267
+
268
+ // EXTERNAL MODULE: ./components/style/index.less
269
+ var style = __webpack_require__(131);
270
+
271
+ // EXTERNAL MODULE: ./components/pagination/style/index.less
272
+ var pagination_style = __webpack_require__(189);
273
+
274
+ // EXTERNAL MODULE: ./components/input/style/index.js
275
+ var input_style = __webpack_require__(54);
276
+
277
+ // CONCATENATED MODULE: ./components/pagination/style/index.js
278
+
279
+
280
+
281
+ // style dependencies
282
+ // import '../../select/style'
283
+
284
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./components/pagination/pagination.vue?vue&type=template&id=0d372f84&
285
+ var render = function () {
286
+ var _vm = this
287
+ var _h = _vm.$createElement
288
+ var _c = _vm._self._c || _h
289
+ return _c(
290
+ "ul",
291
+ {
292
+ class: [
293
+ _vm.simple ? _vm.prefixCls + "-simple" : "" + _vm.prefixCls,
294
+ _vm.disabled ? _vm.prefixCls + "-disabled" : "" + _vm.prefixCls,
295
+ _vm.mini ? "mini" : "",
296
+ ],
297
+ },
298
+ [
299
+ !_vm.simple &&
300
+ (_vm.showTotalString || _vm.showTotalSize) &&
301
+ !_vm.mini &&
302
+ _vm.totalSeat === "left"
303
+ ? _c("li", { class: _vm.prefixCls + "-total" }, [
304
+ _vm._v("\n 共 "),
305
+ _c("b", [_vm._v(_vm._s(_vm.total))]),
306
+ _vm._v(" 条\n "),
307
+ ])
308
+ : _vm._e(),
309
+ !_vm.simple && _vm.showPageSize && !_vm.mini
310
+ ? _c("change-page", {
311
+ attrs: { pageSizes: _vm.pageSizes, pageSizeNum: _vm.pageSizeNum },
312
+ on: { changePageSize: _vm.changePageSize },
313
+ })
314
+ : _vm._e(),
315
+ _c(
316
+ "li",
317
+ {
318
+ class:
319
+ (_vm.hasPrev ? "" : _vm.prefixCls + "-disabled") +
320
+ " " +
321
+ _vm.prefixCls +
322
+ "-prev",
323
+ attrs: {
324
+ tabIndex: "0",
325
+ title: _vm.showTitle ? _vm.locale.prev_page : null,
326
+ "aria-disabled": !_vm.hasPrev,
327
+ },
328
+ on: { click: _vm.prev, keypress: _vm.runIfEnterPrev },
329
+ },
330
+ [
331
+ _vm._t("prev", [
332
+ _c("mds-icon", {
333
+ staticClass: "mds-pagination-item-link",
334
+ attrs: { type: "line-caret-left" },
335
+ }),
336
+ ]),
337
+ ],
338
+ 2
339
+ ),
340
+ _vm.simple
341
+ ? _c(
342
+ "li",
343
+ { class: _vm.prefixCls + "-simple-pager" },
344
+ [
345
+ _c("mds-input", {
346
+ attrs: { type: "text" },
347
+ on: { "press-enter": _vm.handleJump },
348
+ model: {
349
+ value: _vm.currentPage,
350
+ callback: function ($$v) {
351
+ _vm.currentPage = $$v
352
+ },
353
+ expression: "currentPage",
354
+ },
355
+ }),
356
+ _c("span", [_vm._v("/")]),
357
+ _c("span", { staticClass: "total" }, [
358
+ _vm._v(_vm._s(_vm.calculatePage)),
359
+ ]),
360
+ ],
361
+ 1
362
+ )
363
+ : _vm._e(),
364
+ _vm.pageRange[0] !== 1 && !_vm.simple
365
+ ? _c(
366
+ "li",
367
+ {
368
+ class: _vm.prefixCls + "-item",
369
+ attrs: { tabIndex: "0" },
370
+ on: {
371
+ click: function ($event) {
372
+ return _vm.handleChange(1)
373
+ },
374
+ },
375
+ },
376
+ [_c("a", [_vm._v("1")])]
377
+ )
378
+ : _vm._e(),
379
+ _vm.showJumpPrev && !_vm.simple
380
+ ? _c(
381
+ "li",
382
+ {
383
+ class: _vm.prefixCls + "-jump-prev",
384
+ attrs: { tabIndex: "0" },
385
+ on: { click: _vm.jumpPrev, keypress: _vm.runIfEnterJumpPrev },
386
+ },
387
+ [_c("a", { class: _vm.prefixCls + "-item-link" })]
388
+ )
389
+ : _vm._e(),
390
+ !_vm.simple
391
+ ? _vm._l(_vm.pageRange, function (i) {
392
+ return _c(
393
+ "li",
394
+ {
395
+ key: i,
396
+ ref: "page",
397
+ refInFor: true,
398
+ class: _vm.pagerClasses(i),
399
+ attrs: { tabIndex: "0" },
400
+ on: {
401
+ click: function ($event) {
402
+ return _vm.clickPage(i)
403
+ },
404
+ },
405
+ },
406
+ [_c("a", [_vm._v(_vm._s(i))])]
407
+ )
408
+ })
409
+ : _vm._e(),
410
+ _vm.showJumpNext && !_vm.simple
411
+ ? _c(
412
+ "li",
413
+ {
414
+ class: _vm.prefixCls + "-jump-next",
415
+ attrs: { tabIndex: "0" },
416
+ on: { click: _vm.jumpNext, keypress: _vm.runIfEnterJumpNext },
417
+ },
418
+ [_c("a", { class: _vm.prefixCls + "-item-link" })]
419
+ )
420
+ : _vm._e(),
421
+ _vm.pageRange.length &&
422
+ _vm.pageRange[_vm.pageRange.length - 1] !== _vm.calculatePage &&
423
+ !_vm.simple
424
+ ? _c(
425
+ "li",
426
+ {
427
+ class: _vm.prefixCls + "-item",
428
+ attrs: { tabIndex: "0" },
429
+ on: {
430
+ click: function ($event) {
431
+ return _vm.handleChange(_vm.calculatePage)
432
+ },
433
+ },
434
+ },
435
+ [_c("a", [_vm._v(_vm._s(_vm.calculatePage))])]
436
+ )
437
+ : _vm._e(),
438
+ _c(
439
+ "li",
440
+ {
441
+ class:
442
+ "" +
443
+ (_vm.hasNext ? "" : _vm.prefixCls + "-disabled ") +
444
+ _vm.prefixCls +
445
+ "-next",
446
+ attrs: { tabIndex: "0", "aria-disabled": !_vm.hasNext },
447
+ on: { click: _vm.next, keydown: _vm.runIfEnterNext },
448
+ },
449
+ [
450
+ _vm._t("next", [
451
+ _c("mds-icon", {
452
+ staticClass: "mds-pagination-item-link",
453
+ attrs: { type: "line-caret-right" },
454
+ }),
455
+ ]),
456
+ ],
457
+ 2
458
+ ),
459
+ _vm.showQuickJumper || _vm.showJumper
460
+ ? _c("mds-page-option", { on: { "jump-to": _vm.handleQuickJump } })
461
+ : _vm._e(),
462
+ !_vm.simple && _vm.showPageNumber && !_vm.mini
463
+ ? _c("li", { class: _vm.prefixCls + "-more" }, [
464
+ _vm._v("\n 共 "),
465
+ _c("b", [_vm._v(_vm._s(_vm.calculatePage))]),
466
+ _vm._v(" 页\n "),
467
+ ])
468
+ : _vm._e(),
469
+ !_vm.simple &&
470
+ (_vm.showTotalString || _vm.showTotalSize) &&
471
+ !_vm.mini &&
472
+ _vm.totalSeat === "right"
473
+ ? _c(
474
+ "li",
475
+ {
476
+ staticClass: "total-seat-right",
477
+ class: _vm.prefixCls + "-total",
478
+ },
479
+ [
480
+ _vm._v("\n 共 "),
481
+ _c("b", [_vm._v(_vm._s(_vm.total))]),
482
+ _vm._v(" 条\n "),
483
+ ]
484
+ )
485
+ : _vm._e(),
486
+ ],
487
+ 2
488
+ )
489
+ }
490
+ var staticRenderFns = []
491
+ render._withStripped = true
492
+
493
+
494
+ // CONCATENATED MODULE: ./components/pagination/pagination.vue?vue&type=template&id=0d372f84&
495
+
496
+ // EXTERNAL MODULE: external "babel-runtime/helpers/defineProperty"
497
+ var defineProperty_ = __webpack_require__(1);
498
+ var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty_);
499
+
500
+ // CONCATENATED MODULE: ./components/pagination/locale/zh_CN.js
501
+ /* harmony default export */ var zh_CN = ({
502
+ // Options.jsx
503
+ items_per_page: '条/页',
504
+ jump_to: '跳至',
505
+ jump_to_confirm: '确定',
506
+ page: '页',
507
+
508
+ // Pagination.jsx
509
+ prev_page: '上一页',
510
+ next_page: '下一页',
511
+ prev_5: '向前 5 页',
512
+ next_5: '向后 5 页',
513
+ prev_3: '向前 3 页',
514
+ next_3: '向后 3 页'
515
+ });
516
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./components/pagination/option.vue?vue&type=template&id=1ad093df&
517
+ var optionvue_type_template_id_1ad093df_render = function () {
518
+ var _vm = this
519
+ var _h = _vm.$createElement
520
+ var _c = _vm._self._c || _h
521
+ return _c("li", { class: "" + _vm.prefixCls }, [
522
+ _c(
523
+ "div",
524
+ { class: _vm.prefixCls + "-quick-jumper" },
525
+ [
526
+ _vm._v("\n " + _vm._s(_vm.locale.jump_to) + "\n "),
527
+ _c("mds-input", {
528
+ attrs: { type: "text" },
529
+ on: { "press-enter": _vm.handleJump, blur: _vm.blueJump },
530
+ model: {
531
+ value: _vm.pageText,
532
+ callback: function ($$v) {
533
+ _vm.pageText = $$v
534
+ },
535
+ expression: "pageText",
536
+ },
537
+ }),
538
+ _vm._v("\n " + _vm._s(_vm.locale.page) + "\n "),
539
+ ],
540
+ 1
541
+ ),
542
+ ])
543
+ }
544
+ var optionvue_type_template_id_1ad093df_staticRenderFns = []
545
+ optionvue_type_template_id_1ad093df_render._withStripped = true
546
+
547
+
548
+ // CONCATENATED MODULE: ./components/pagination/option.vue?vue&type=template&id=1ad093df&
549
+
550
+ // EXTERNAL MODULE: external "./input"
551
+ var external_input_ = __webpack_require__(10);
552
+ var external_input_default = /*#__PURE__*/__webpack_require__.n(external_input_);
553
+
554
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/pagination/option.vue?vue&type=script&lang=js&
555
+ //
556
+ //
557
+ //
558
+ //
559
+ //
560
+ //
561
+ //
562
+ //
563
+ //
564
+ //
565
+
566
+
567
+
568
+
569
+ /* harmony default export */ var optionvue_type_script_lang_js_ = ({
570
+ name: 'MdsPaginationOption',
571
+ props: {
572
+ prefixCls: {
573
+ type: String,
574
+ default: 'mds-pagination-options'
575
+ }
576
+ },
577
+ data: function data() {
578
+ return {
579
+ locale: zh_CN,
580
+ pageText: ''
581
+ };
582
+ },
583
+
584
+ methods: {
585
+ handleJump: function handleJump(event) {
586
+ if (this.disabled) {
587
+ return;
588
+ }
589
+ (event.key === 'Enter' || event.charCode === 13) && this.$emit('jump-to', this.pageText);
590
+ this.pageText = '';
591
+ },
592
+ blueJump: function blueJump() {
593
+ if (this.disabled || !this.pageText) {
594
+ return false;
595
+ } else {
596
+ this.$emit('jump-to', this.pageText);
597
+ this.pageText = '';
598
+ }
599
+ }
600
+ },
601
+ components: {
602
+ MdsInput: external_input_default.a
603
+ }
604
+ });
605
+ // CONCATENATED MODULE: ./components/pagination/option.vue?vue&type=script&lang=js&
606
+ /* harmony default export */ var pagination_optionvue_type_script_lang_js_ = (optionvue_type_script_lang_js_);
607
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
608
+ var componentNormalizer = __webpack_require__(0);
609
+
610
+ // CONCATENATED MODULE: ./components/pagination/option.vue
611
+
612
+
613
+
614
+
615
+
616
+ /* normalize component */
617
+
618
+ var component = Object(componentNormalizer["a" /* default */])(
619
+ pagination_optionvue_type_script_lang_js_,
620
+ optionvue_type_template_id_1ad093df_render,
621
+ optionvue_type_template_id_1ad093df_staticRenderFns,
622
+ false,
623
+ null,
624
+ null,
625
+ null
626
+
627
+ )
628
+
629
+ /* hot reload */
630
+ if (false) { var api; }
631
+ component.options.__file = "components/pagination/option.vue"
632
+ /* harmony default export */ var pagination_option = (component.exports);
633
+ // EXTERNAL MODULE: external "./_util/proptype"
634
+ var proptype_ = __webpack_require__(3);
635
+
636
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./components/pagination/changePage.vue?vue&type=template&id=26e49fc9&
637
+ var changePagevue_type_template_id_26e49fc9_render = function () {
638
+ var _vm = this
639
+ var _h = _vm.$createElement
640
+ var _c = _vm._self._c || _h
641
+ return _c(
642
+ "li",
643
+ { class: "" + _vm.prefixCls },
644
+ [
645
+ _c(
646
+ "mds-select",
647
+ {
648
+ staticStyle: { width: "120px" },
649
+ attrs: { placeholder: "请选择", size: "medium" },
650
+ on: { change: _vm.handleChange },
651
+ model: {
652
+ value: _vm.sizeValue,
653
+ callback: function ($$v) {
654
+ _vm.sizeValue = $$v
655
+ },
656
+ expression: "sizeValue",
657
+ },
658
+ },
659
+ _vm._l(_vm.pageSizes, function (item) {
660
+ return _c(
661
+ "mds-option",
662
+ { key: item, attrs: { value: item + "条/页" } },
663
+ [_vm._v(_vm._s(item) + "条/页")]
664
+ )
665
+ }),
666
+ 1
667
+ ),
668
+ ],
669
+ 1
670
+ )
671
+ }
672
+ var changePagevue_type_template_id_26e49fc9_staticRenderFns = []
673
+ changePagevue_type_template_id_26e49fc9_render._withStripped = true
674
+
675
+
676
+ // CONCATENATED MODULE: ./components/pagination/changePage.vue?vue&type=template&id=26e49fc9&
677
+
678
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/pagination/changePage.vue?vue&type=script&lang=js&
679
+ //
680
+ //
681
+ //
682
+ //
683
+ //
684
+ //
685
+ //
686
+ //
687
+ //
688
+ //
689
+ //
690
+ //
691
+ //
692
+ //
693
+
694
+
695
+
696
+ /* harmony default export */ var changePagevue_type_script_lang_js_ = ({
697
+ name: 'MdsPaginationOption',
698
+ props: {
699
+ prefixCls: {
700
+ type: String,
701
+ default: 'mds-pagination-pagesize-changer'
702
+ },
703
+ pageSizes: {
704
+ type: Array,
705
+ default: function _default() {
706
+ return [10, 20, 30, 50];
707
+ }
708
+ },
709
+ pageSizeNum: {
710
+ type: Number,
711
+ default: 10
712
+ }
713
+ },
714
+ data: function data() {
715
+ return {
716
+ locale: zh_CN,
717
+ sizeValue: this.newSizeValue || this.pageSizes[0] + '条/页'
718
+ };
719
+ },
720
+
721
+ // created() {
722
+ // this.handleChange(this.pageSizes[0])
723
+ // },
724
+ computed: {
725
+ newSizeValue: function newSizeValue() {
726
+ if (this.pageSizes.includes(this.pageSizeNum)) {
727
+ return this.pageSizeNum + '条/页';
728
+ } else {
729
+ return this.pageSizes[0] + '条/页';
730
+ }
731
+ }
732
+ },
733
+ methods: {
734
+ handleChange: function handleChange(value) {
735
+ var newVal = parseFloat(value);
736
+ this.$emit('changePageSize', newVal);
737
+ }
738
+ }
739
+ });
740
+ // CONCATENATED MODULE: ./components/pagination/changePage.vue?vue&type=script&lang=js&
741
+ /* harmony default export */ var pagination_changePagevue_type_script_lang_js_ = (changePagevue_type_script_lang_js_);
742
+ // CONCATENATED MODULE: ./components/pagination/changePage.vue
743
+
744
+
745
+
746
+
747
+
748
+ /* normalize component */
749
+
750
+ var changePage_component = Object(componentNormalizer["a" /* default */])(
751
+ pagination_changePagevue_type_script_lang_js_,
752
+ changePagevue_type_template_id_26e49fc9_render,
753
+ changePagevue_type_template_id_26e49fc9_staticRenderFns,
754
+ false,
755
+ null,
756
+ null,
757
+ null
758
+
759
+ )
760
+
761
+ /* hot reload */
762
+ if (false) { var changePage_api; }
763
+ changePage_component.options.__file = "components/pagination/changePage.vue"
764
+ /* harmony default export */ var changePage = (changePage_component.exports);
765
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./components/pagination/pagination.vue?vue&type=script&lang=js&
766
+
767
+ //
768
+ //
769
+ //
770
+ //
771
+ //
772
+ //
773
+ //
774
+ //
775
+ //
776
+ //
777
+ //
778
+ //
779
+ //
780
+ //
781
+ //
782
+ //
783
+ //
784
+ //
785
+ //
786
+ //
787
+ //
788
+ //
789
+ //
790
+ //
791
+ //
792
+ //
793
+ //
794
+ //
795
+ //
796
+ //
797
+ //
798
+ //
799
+ //
800
+ //
801
+ //
802
+ //
803
+ //
804
+ //
805
+ //
806
+ //
807
+ //
808
+ //
809
+ //
810
+ //
811
+ //
812
+ //
813
+ //
814
+ //
815
+ //
816
+ //
817
+ //
818
+ //
819
+ //
820
+ //
821
+ //
822
+ //
823
+ //
824
+ //
825
+ //
826
+ //
827
+ //
828
+ //
829
+ //
830
+ //
831
+ //
832
+ //
833
+ //
834
+ //
835
+ //
836
+ //
837
+ //
838
+ //
839
+ //
840
+ //
841
+ //
842
+ //
843
+ //
844
+ //
845
+ //
846
+ //
847
+ //
848
+ //
849
+ //
850
+ //
851
+ //
852
+ //
853
+ //
854
+ //
855
+ //
856
+ //
857
+ //
858
+ //
859
+ //
860
+ //
861
+ //
862
+ //
863
+ //
864
+ //
865
+ //
866
+ //
867
+ //
868
+ //
869
+ //
870
+ //
871
+ //
872
+ //
873
+ //
874
+ //
875
+ //
876
+ //
877
+ //
878
+ //
879
+ //
880
+ //
881
+ //
882
+ //
883
+ //
884
+ //
885
+ //
886
+ //
887
+ //
888
+ //
889
+ //
890
+ //
891
+ //
892
+ //
893
+ //
894
+ //
895
+ //
896
+ //
897
+ //
898
+ //
899
+ //
900
+ //
901
+ //
902
+ //
903
+ //
904
+ //
905
+ //
906
+
907
+
908
+
909
+
910
+
911
+
912
+
913
+ /* harmony default export */ var paginationvue_type_script_lang_js_ = ({
914
+ name: 'MdsPagination',
915
+ props: {
916
+ controlled: {
917
+ type: Boolean,
918
+ default: false
919
+ },
920
+ current: {
921
+ type: Number,
922
+ default: 1
923
+ },
924
+ pageSize: {
925
+ type: Number,
926
+ default: 10
927
+ },
928
+ prefixCls: {
929
+ type: String,
930
+ default: 'mds-pagination'
931
+ },
932
+ showQuickJumper: {
933
+ type: Boolean,
934
+ default: false
935
+ },
936
+ showSizeChanger: {
937
+ type: Boolean,
938
+ default: false
939
+ },
940
+ showTitle: Boolean,
941
+ showTotal: {
942
+ type: Boolean,
943
+ default: false
944
+ },
945
+ mini: {
946
+ type: Boolean,
947
+ default: false
948
+ },
949
+ simple: {
950
+ type: Boolean,
951
+ default: false
952
+ },
953
+ size: {
954
+ type: String,
955
+ validator: function validator(value) {
956
+ return Object(proptype_["oneOf"])(value, [value, '']);
957
+ },
958
+
959
+ default: ''
960
+ },
961
+ total: {
962
+ type: Number,
963
+ default: 0
964
+ },
965
+ disabled: {
966
+ type: Boolean,
967
+ default: false
968
+ },
969
+ custom: {
970
+ type: String,
971
+ default: ''
972
+ },
973
+ pageSizes: {
974
+ type: Array,
975
+ default: function _default() {
976
+ return [10, 20, 30, 50];
977
+ }
978
+ },
979
+ totalSeat: {
980
+ type: String,
981
+ default: 'right'
982
+ }
983
+ },
984
+ data: function data() {
985
+ return {
986
+ locale: zh_CN,
987
+ currentPage: this.current,
988
+ changeByPager: false,
989
+ pageSizeChange: 0
990
+ // showTotal: false,
991
+ // showPageSize: false,
992
+ // showPageNumber: false,
993
+ // pageSizeNum: 10,
994
+ // showJumper: false
995
+ };
996
+ },
997
+ created: function created() {
998
+ // this.pageSizeNum = this.pageSize
999
+ // this.showTotal = this.custom.indexOf('total') !== -1
1000
+ // this.showPageSize = this.custom.indexOf('pageSize') !== -1
1001
+ // this.showPageNumber = this.custom.indexOf('pageNumber') !== -1
1002
+ // this.showJumper = this.custom.indexOf('jumper') !== -1
1003
+ },
1004
+
1005
+ computed: {
1006
+ pageSizeNum: function pageSizeNum() {
1007
+ return this.pageSizeChange || this.pageSize;
1008
+ },
1009
+ domailList: function domailList() {
1010
+ if (this.custom.indexOf(',') !== -1) {
1011
+ return this.custom.split(',');
1012
+ } else {
1013
+ return this.custom ? [this.custom] : [];
1014
+ }
1015
+ },
1016
+ showTotalString: function showTotalString() {
1017
+ return this.custom.includes('total') || this.showTotal;
1018
+ },
1019
+ showPageSize: function showPageSize() {
1020
+ return this.custom.includes('pageSize');
1021
+ },
1022
+ showPageNumber: function showPageNumber() {
1023
+ return this.custom.includes('pageNumber');
1024
+ },
1025
+ showJumper: function showJumper() {
1026
+ return this.custom.includes('jumper');
1027
+ },
1028
+ calculatePage: function calculatePage() {
1029
+ return Math.floor((this.total - 1) / this.pageSizeNum) + 1;
1030
+ },
1031
+ hasPrev: function hasPrev() {
1032
+ return this.currentPage > 1;
1033
+ },
1034
+ hasNext: function hasNext() {
1035
+ return this.currentPage < this.calculatePage;
1036
+ },
1037
+ pageRange: function pageRange() {
1038
+ var rs = [];
1039
+ if (this.calculatePage > 5) {
1040
+ if (this.currentPage > 2 && this.currentPage < this.calculatePage - 2) {
1041
+ rs = this.range(this.currentPage - 2, this.currentPage + 2);
1042
+ } else if (this.currentPage <= 2) {
1043
+ rs = this.range(1, 5);
1044
+ } else {
1045
+ rs = this.range(this.calculatePage - 4, this.calculatePage);
1046
+ }
1047
+ } else {
1048
+ rs = this.range(1, this.calculatePage);
1049
+ }
1050
+ return rs;
1051
+ },
1052
+ showJumpNext: function showJumpNext() {
1053
+ return this.calculatePage - this.currentPage > 3 && this.calculatePage > 5;
1054
+ },
1055
+ showJumpPrev: function showJumpPrev() {
1056
+ return this.currentPage > 4 && this.calculatePage > 5;
1057
+ }
1058
+ },
1059
+ watch: {
1060
+ current: function current() {
1061
+ this.currentPage = this.current;
1062
+ },
1063
+ currentPage: function currentPage(val) {
1064
+ this.$emit('change-page', val, this.pageSizeNum);
1065
+ this.$emit('update:current', val);
1066
+ },
1067
+ pageRange: function pageRange() {
1068
+ if (this.pageRange[0] !== 1 && this.pageRange[this.pageRange.length - 1] !== this.calculatePage && this.changeByPager) {
1069
+ this.changeByPager = false;
1070
+ this.$refs.page[2].focus();
1071
+ }
1072
+ }
1073
+ },
1074
+ methods: {
1075
+ clickPage: function clickPage(i) {
1076
+ if (this.disabled) {
1077
+ return;
1078
+ }
1079
+ this.changeByPager = true;
1080
+ this.handleChange(i);
1081
+ },
1082
+ handleChange: function handleChange(i) {
1083
+ if (this.disabled) {
1084
+ return;
1085
+ }
1086
+ if (!this.controlled) {
1087
+ this.currentPage = i;
1088
+ }
1089
+ },
1090
+ handleJump: function handleJump(event) {
1091
+ ;(event.key === 'Enter' || event.charCode === 13) && this.handleQuickJump(this.currentPage);
1092
+ },
1093
+ handleQuickJump: function handleQuickJump(newPageText) {
1094
+ if (this.disabled) {
1095
+ return;
1096
+ }
1097
+ var newPage = parseInt(newPageText, 10);
1098
+ this.currentPage = newPage;
1099
+ if (isNaN(newPage)) return false;
1100
+ if (newPage < 1) {
1101
+ this.handleChange(1);
1102
+ } else if (newPage > this.calculatePage) {
1103
+ this.handleChange(this.calculatePage);
1104
+ } else {
1105
+ this.handleChange(newPage);
1106
+ }
1107
+ },
1108
+ jumpNext: function jumpNext() {
1109
+ if (this.disabled) {
1110
+ return;
1111
+ }
1112
+ this.calculatePage - this.currentPage > 5 ? this.handleChange(this.currentPage + 5) : this.handleChange(this.calculatePage);
1113
+ },
1114
+ jumpPrev: function jumpPrev() {
1115
+ if (this.disabled) {
1116
+ return;
1117
+ }
1118
+ this.currentPage > 5 ? this.handleChange(this.currentPage - 5) : this.handleChange(1);
1119
+ },
1120
+ next: function next() {
1121
+ if (this.hasNext) {
1122
+ this.handleChange(this.currentPage + 1);
1123
+ }
1124
+ },
1125
+ pagerClasses: function pagerClasses(i) {
1126
+ var _ref;
1127
+
1128
+ // if(this.disabled){
1129
+ // this.prefixCls = `${prefixCls}-disabled`
1130
+ // }
1131
+ return [this.prefixCls + '-item', (_ref = {}, defineProperty_default()(_ref, this.prefixCls + '-item-active', this.currentPage === i), defineProperty_default()(_ref, this.prefixCls + '-item-after-jump-prev', i === this.pageRange[0] && this.showJumpPrev), defineProperty_default()(_ref, this.prefixCls + '-item-before-jump-next', i === this.pageRange[this.pageRange.length - 1] && this.showJumpNext), _ref)];
1132
+ },
1133
+ prev: function prev() {
1134
+ if (this.hasPrev) {
1135
+ this.handleChange(this.currentPage - 1);
1136
+ }
1137
+ },
1138
+ range: function range(start, end) {
1139
+ var arr = [];
1140
+ for (var i = start; i <= end; i++) {
1141
+ arr.push(i);
1142
+ }
1143
+ return arr;
1144
+ },
1145
+ runIfEnterJumpNext: function runIfEnterJumpNext(event) {
1146
+ ;(event.key === 'Enter' || event.charCode === 13) && this.jumpNext();
1147
+ },
1148
+ runIfEnterJumpPrev: function runIfEnterJumpPrev(event) {
1149
+ ;(event.key === 'Enter' || event.charCode === 13) && this.jumpPrev();
1150
+ },
1151
+ runIfEnterNext: function runIfEnterNext(event) {
1152
+ ;(event.key === 'Enter' || event.charCode === 13) && this.next();
1153
+ },
1154
+ runIfEnterPrev: function runIfEnterPrev(event) {
1155
+ ;(event.key === 'Enter' || event.charCode === 13) && this.prev();
1156
+ },
1157
+ changePageSize: function changePageSize(val) {
1158
+ this.$emit('change-page-size', val);
1159
+ this.pageSizeChange = val;
1160
+ }
1161
+ },
1162
+ components: {
1163
+ MdsPageOption: pagination_option,
1164
+ MdsInput: external_input_default.a,
1165
+ ChangePage: changePage
1166
+ }
1167
+ });
1168
+ // CONCATENATED MODULE: ./components/pagination/pagination.vue?vue&type=script&lang=js&
1169
+ /* harmony default export */ var pagination_paginationvue_type_script_lang_js_ = (paginationvue_type_script_lang_js_);
1170
+ // CONCATENATED MODULE: ./components/pagination/pagination.vue
1171
+
1172
+
1173
+
1174
+
1175
+
1176
+ /* normalize component */
1177
+
1178
+ var pagination_component = Object(componentNormalizer["a" /* default */])(
1179
+ pagination_paginationvue_type_script_lang_js_,
1180
+ render,
1181
+ staticRenderFns,
1182
+ false,
1183
+ null,
1184
+ null,
1185
+ null
1186
+
1187
+ )
1188
+
1189
+ /* hot reload */
1190
+ if (false) { var pagination_api; }
1191
+ pagination_component.options.__file = "components/pagination/pagination.vue"
1192
+ /* harmony default export */ var pagination = (pagination_component.exports);
1193
+ // CONCATENATED MODULE: ./components/pagination/index.js
1194
+ /*
1195
+ * @Descripttion: 2222
1196
+ * @version: 2222
1197
+ * @Author: sueRimn
1198
+ * @Date: 2020-07-14 14:50:06
1199
+ * @LastEditors: sueRimn
1200
+ * @LastEditTime: 2020-07-24 14:15:04
1201
+ */
1202
+
1203
+
1204
+ /* istanbul ignore next */
1205
+ pagination.install = function (Vue) {
1206
+ Vue.component(pagination.name, pagination);
1207
+ };
1208
+ /* harmony default export */ var components_pagination = __webpack_exports__["default"] = (pagination);
1209
+
1210
+ /***/ })
1211
+
1212
+ /******/ });
1213
+ });