eoss-ui 0.5.81-beta11 → 0.5.81-beta13

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 (34) hide show
  1. package/lib/button-group.js +27 -8
  2. package/lib/button.js +2 -1
  3. package/lib/data-table.js +58 -33
  4. package/lib/eoss-ui.common.js +271 -215
  5. package/lib/index.js +1 -1
  6. package/lib/main.js +167 -156
  7. package/lib/pagination.js +4 -4
  8. package/lib/theme-chalk/button-group.css +1 -1
  9. package/lib/theme-chalk/data-table.css +1 -1
  10. package/lib/theme-chalk/index.css +1 -1
  11. package/lib/theme-chalk/main.css +1 -1
  12. package/lib/theme-chalk/simplicity.css +1 -1
  13. package/lib/theme-chalk/toolbar.css +1 -1
  14. package/package.json +2 -2
  15. package/packages/button/src/main.vue +2 -1
  16. package/packages/button-group/src/main.vue +8 -6
  17. package/packages/data-table/src/column.vue +2 -0
  18. package/packages/data-table/src/main.vue +30 -18
  19. package/packages/data-table/src/sizer.vue +3 -0
  20. package/packages/main/src/simplicity/handler.vue +1 -1
  21. package/packages/main/src/simplicity/index.vue +9 -4
  22. package/packages/main/src/simplicity/sub-menu.vue +5 -1
  23. package/packages/pagination/src/main.vue +2 -2
  24. package/packages/theme-chalk/lib/button-group.css +1 -1
  25. package/packages/theme-chalk/lib/data-table.css +1 -1
  26. package/packages/theme-chalk/lib/index.css +1 -1
  27. package/packages/theme-chalk/lib/main.css +1 -1
  28. package/packages/theme-chalk/lib/simplicity.css +1 -1
  29. package/packages/theme-chalk/lib/toolbar.css +1 -1
  30. package/packages/theme-chalk/src/button-group.scss +16 -2
  31. package/packages/theme-chalk/src/data-table.scss +59 -22
  32. package/packages/theme-chalk/src/simplicity.scss +10 -0
  33. package/packages/theme-chalk/src/toolbar.scss +14 -3
  34. package/src/index.js +1 -1
@@ -4110,7 +4110,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4110
4110
  }
4111
4111
  }
4112
4112
  var tag = 'el-button';
4113
- var clas = ['es-button'];
4113
+ var clas = '';
4114
4114
  var props = {};
4115
4115
  var attrs = {};
4116
4116
  var listeners = {};
@@ -4132,6 +4132,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4132
4132
  size: this.size
4133
4133
  };
4134
4134
  } else {
4135
+ clas = ['es-button'];
4135
4136
  props = _extends({}, this.$attrs, { type: this._type, size: this.size });
4136
4137
  listeners = _extends({}, this.$listeners, { click: this.handleClick });
4137
4138
  if (this.link && !this.open) {
@@ -4313,8 +4314,8 @@ main.install = function (Vue) {
4313
4314
  };
4314
4315
 
4315
4316
  /* harmony default export */ var packages_button = (main);
4316
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=1a095074&
4317
- var mainvue_type_template_id_1a095074_render = function () {
4317
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=70bfc4f2&
4318
+ var mainvue_type_template_id_70bfc4f2_render = function () {
4318
4319
  var _vm = this
4319
4320
  var _h = _vm.$createElement
4320
4321
  var _c = _vm._self._c || _h
@@ -4333,7 +4334,7 @@ var mainvue_type_template_id_1a095074_render = function () {
4333
4334
  "es-upload",
4334
4335
  _vm._g(
4335
4336
  _vm._b(
4336
- { staticClass: "el-button" },
4337
+ {},
4337
4338
  "es-upload",
4338
4339
  Object.assign(
4339
4340
  {},
@@ -4346,7 +4347,8 @@ var mainvue_type_template_id_1a095074_render = function () {
4346
4347
  method: "post",
4347
4348
  btnSize: _vm.size,
4348
4349
  showFileList: false,
4349
- selectType: item.type ? item.type : "",
4350
+ selectType:
4351
+ _vm.mode == "plus" ? "text" : item.type,
4350
4352
  }
4351
4353
  ),
4352
4354
  false
@@ -4363,7 +4365,8 @@ var mainvue_type_template_id_1a095074_render = function () {
4363
4365
  attrs: {
4364
4366
  stop: _vm.stop,
4365
4367
  size: _vm.size,
4366
- type: item.type,
4368
+ type:
4369
+ _vm.mode == "plus" ? "text" : item.type,
4367
4370
  },
4368
4371
  on: {
4369
4372
  click: function ($event) {
@@ -4420,9 +4423,16 @@ var mainvue_type_template_id_1a095074_render = function () {
4420
4423
  [
4421
4424
  _c(
4422
4425
  "el-button",
4423
- { attrs: { size: _vm.size } },
4426
+ {
4427
+ attrs: {
4428
+ size: _vm.size,
4429
+ type: _vm.mode == "plus" ? "text" : "",
4430
+ },
4431
+ },
4424
4432
  [
4425
- _vm.moreText
4433
+ _vm.mode == "plus"
4434
+ ? [_vm._v("更多")]
4435
+ : _vm.moreText
4426
4436
  ? [
4427
4437
  _vm._v(
4428
4438
  "\n " + _vm._s(_vm.moreText) + "\n "
@@ -4445,6 +4455,14 @@ var mainvue_type_template_id_1a095074_render = function () {
4445
4455
  return _c(
4446
4456
  "el-dropdown-item",
4447
4457
  {
4458
+ directives: [
4459
+ {
4460
+ name: "show",
4461
+ rawName: "v-show",
4462
+ value: !item.hide,
4463
+ expression: "!item.hide",
4464
+ },
4465
+ ],
4448
4466
  key: index,
4449
4467
  class: {
4450
4468
  "es-dropdown-padding": item.upload || item.selector,
@@ -4549,11 +4567,11 @@ var mainvue_type_template_id_1a095074_render = function () {
4549
4567
  2
4550
4568
  )
4551
4569
  }
4552
- var mainvue_type_template_id_1a095074_staticRenderFns = []
4553
- mainvue_type_template_id_1a095074_render._withStripped = true
4570
+ var mainvue_type_template_id_70bfc4f2_staticRenderFns = []
4571
+ mainvue_type_template_id_70bfc4f2_render._withStripped = true
4554
4572
 
4555
4573
 
4556
- // CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=1a095074&
4574
+ // CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=70bfc4f2&
4557
4575
 
4558
4576
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=script&lang=js&
4559
4577
  var mainvue_type_script_lang_js_extends = Object.assign || 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; };
@@ -4678,6 +4696,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4678
4696
  //
4679
4697
  //
4680
4698
  //
4699
+ //
4681
4700
 
4682
4701
 
4683
4702
  /* harmony default export */ var button_group_src_mainvue_type_script_lang_js_ = ({
@@ -4689,6 +4708,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4689
4708
  },
4690
4709
 
4691
4710
  props: {
4711
+ mode: String,
4692
4712
  value: String,
4693
4713
  data: Object,
4694
4714
  contents: { type: Array, default: [] },
@@ -4700,7 +4720,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4700
4720
  stop: Boolean,
4701
4721
  trigger: {
4702
4722
  type: String,
4703
- default: 'click'
4723
+ default: 'hover'
4704
4724
  },
4705
4725
  useCaseCodeKey: String,
4706
4726
  moreText: String,
@@ -4817,8 +4837,8 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4817
4837
 
4818
4838
  var src_main_component = normalizeComponent(
4819
4839
  packages_button_group_src_mainvue_type_script_lang_js_,
4820
- mainvue_type_template_id_1a095074_render,
4821
- mainvue_type_template_id_1a095074_staticRenderFns,
4840
+ mainvue_type_template_id_70bfc4f2_render,
4841
+ mainvue_type_template_id_70bfc4f2_staticRenderFns,
4822
4842
  false,
4823
4843
  null,
4824
4844
  null,
@@ -6881,8 +6901,8 @@ clients_src_main.install = function (Vue) {
6881
6901
  };
6882
6902
 
6883
6903
  /* harmony default export */ var clients = (clients_src_main);
6884
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=39809074&
6885
- var mainvue_type_template_id_39809074_render = function () {
6904
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=af715ef0&
6905
+ var mainvue_type_template_id_af715ef0_render = function () {
6886
6906
  var _vm = this
6887
6907
  var _h = _vm.$createElement
6888
6908
  var _c = _vm._self._c || _h
@@ -6913,7 +6933,12 @@ var mainvue_type_template_id_39809074_render = function () {
6913
6933
  "es-toolbar",
6914
6934
  _vm._g(
6915
6935
  _vm._b(
6916
- { ref: "toolbar" },
6936
+ {
6937
+ ref: "toolbar",
6938
+ class: {
6939
+ "es-table-toolbar-plus": _vm.mode == "plus",
6940
+ },
6941
+ },
6917
6942
  "es-toolbar",
6918
6943
  {
6919
6944
  contents: _vm.toolbars,
@@ -6954,7 +6979,10 @@ var mainvue_type_template_id_39809074_render = function () {
6954
6979
  {
6955
6980
  ref: "esTableContent",
6956
6981
  staticClass: "es-data-table-content",
6957
- class: _vm.border == "none" ? "es-table-border-none" : "",
6982
+ class: {
6983
+ "es-table-border-none": _vm.border == "none",
6984
+ "es-table-plus": _vm.mode == "plus",
6985
+ },
6958
6986
  staticStyle: {},
6959
6987
  },
6960
6988
  [
@@ -7057,6 +7085,7 @@ var mainvue_type_template_id_39809074_render = function () {
7057
7085
  Object.assign(
7058
7086
  {},
7059
7087
  {
7088
+ mode: _vm.mode,
7060
7089
  name: _vm.name,
7061
7090
  indexs: index,
7062
7091
  form: _vm.form,
@@ -7163,6 +7192,7 @@ var mainvue_type_template_id_39809074_render = function () {
7163
7192
  _vm._g(
7164
7193
  _vm._b(
7165
7194
  {
7195
+ ref: "pagination",
7166
7196
  staticClass: "es-table-page",
7167
7197
  style: { "text-align": _vm.page.position },
7168
7198
  attrs: { position: _vm.page.position },
@@ -7186,16 +7216,19 @@ var mainvue_type_template_id_39809074_render = function () {
7186
7216
  2
7187
7217
  )
7188
7218
  : _vm._e(),
7189
- _c("sizer", { ref: "sizer", attrs: { data: _vm.theads } }),
7219
+ _c("sizer", {
7220
+ ref: "sizer",
7221
+ attrs: { data: _vm.theads, mode: _vm.mode },
7222
+ }),
7190
7223
  ],
7191
7224
  1
7192
7225
  )
7193
7226
  }
7194
- var mainvue_type_template_id_39809074_staticRenderFns = []
7195
- mainvue_type_template_id_39809074_render._withStripped = true
7227
+ var mainvue_type_template_id_af715ef0_staticRenderFns = []
7228
+ mainvue_type_template_id_af715ef0_render._withStripped = true
7196
7229
 
7197
7230
 
7198
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=39809074&
7231
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=af715ef0&
7199
7232
 
7200
7233
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=44b7ff61&
7201
7234
  var childrenvue_type_template_id_44b7ff61_render = function () {
@@ -7246,8 +7279,8 @@ childrenvue_type_template_id_44b7ff61_render._withStripped = true
7246
7279
 
7247
7280
  // CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=44b7ff61&
7248
7281
 
7249
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=2dabb50c&
7250
- var columnvue_type_template_id_2dabb50c_render = function () {
7282
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=75ab695e&
7283
+ var columnvue_type_template_id_75ab695e_render = function () {
7251
7284
  var _vm = this
7252
7285
  var _h = _vm.$createElement
7253
7286
  var _c = _vm._self._c || _h
@@ -7924,6 +7957,7 @@ var columnvue_type_template_id_2dabb50c_render = function () {
7924
7957
  {
7925
7958
  attrs: {
7926
7959
  stop: "",
7960
+ mode: _vm.mode,
7927
7961
  contents: _vm.contents || _vm.events,
7928
7962
  data: scope,
7929
7963
  },
@@ -7965,11 +7999,11 @@ var columnvue_type_template_id_2dabb50c_render = function () {
7965
7999
  2
7966
8000
  )
7967
8001
  }
7968
- var columnvue_type_template_id_2dabb50c_staticRenderFns = []
7969
- columnvue_type_template_id_2dabb50c_render._withStripped = true
8002
+ var columnvue_type_template_id_75ab695e_staticRenderFns = []
8003
+ columnvue_type_template_id_75ab695e_render._withStripped = true
7970
8004
 
7971
8005
 
7972
- // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=2dabb50c&
8006
+ // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=75ab695e&
7973
8007
 
7974
8008
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
7975
8009
  var regenerator_ = __webpack_require__(3);
@@ -8395,6 +8429,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
8395
8429
  //
8396
8430
  //
8397
8431
  //
8432
+ //
8398
8433
 
8399
8434
 
8400
8435
 
@@ -8443,6 +8478,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
8443
8478
  }
8444
8479
  },
8445
8480
  props: {
8481
+ mode: String,
8446
8482
  service: String,
8447
8483
  form: Boolean,
8448
8484
  readonly: Boolean,
@@ -8833,8 +8869,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
8833
8869
 
8834
8870
  var column_component = normalizeComponent(
8835
8871
  src_columnvue_type_script_lang_js_,
8836
- columnvue_type_template_id_2dabb50c_render,
8837
- columnvue_type_template_id_2dabb50c_staticRenderFns,
8872
+ columnvue_type_template_id_75ab695e_render,
8873
+ columnvue_type_template_id_75ab695e_staticRenderFns,
8838
8874
  false,
8839
8875
  null,
8840
8876
  null,
@@ -8903,8 +8939,8 @@ var children_component = normalizeComponent(
8903
8939
  )
8904
8940
 
8905
8941
  /* harmony default export */ var children = (children_component.exports);
8906
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/sizer.vue?vue&type=template&id=58e4111d&
8907
- var sizervue_type_template_id_58e4111d_render = function () {
8942
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/sizer.vue?vue&type=template&id=1e94400e&
8943
+ var sizervue_type_template_id_1e94400e_render = function () {
8908
8944
  var _vm = this
8909
8945
  var _h = _vm.$createElement
8910
8946
  var _c = _vm._self._c || _h
@@ -8928,6 +8964,7 @@ var sizervue_type_template_id_58e4111d_render = function () {
8928
8964
  "row-key": "id",
8929
8965
  "default-expand-all": "",
8930
8966
  height: "500px",
8967
+ mode: _vm.mode,
8931
8968
  data: _vm.theads,
8932
8969
  thead: _vm.thead,
8933
8970
  "tree-props": { children: "childHead" },
@@ -8955,11 +8992,11 @@ var sizervue_type_template_id_58e4111d_render = function () {
8955
8992
  )
8956
8993
  : _vm._e()
8957
8994
  }
8958
- var sizervue_type_template_id_58e4111d_staticRenderFns = []
8959
- sizervue_type_template_id_58e4111d_render._withStripped = true
8995
+ var sizervue_type_template_id_1e94400e_staticRenderFns = []
8996
+ sizervue_type_template_id_1e94400e_render._withStripped = true
8960
8997
 
8961
8998
 
8962
- // CONCATENATED MODULE: ./packages/data-table/src/sizer.vue?vue&type=template&id=58e4111d&
8999
+ // CONCATENATED MODULE: ./packages/data-table/src/sizer.vue?vue&type=template&id=1e94400e&
8963
9000
 
8964
9001
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/sizer.vue?vue&type=script&lang=js&
8965
9002
  var sizervue_type_script_lang_js_extends = Object.assign || 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; };
@@ -8989,11 +9026,13 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
8989
9026
  //
8990
9027
  //
8991
9028
  //
9029
+ //
8992
9030
 
8993
9031
 
8994
9032
  /* harmony default export */ var sizervue_type_script_lang_js_ = ({
8995
9033
  name: 'Sizer',
8996
9034
  props: {
9035
+ mode: String,
8997
9036
  data: Array
8998
9037
  },
8999
9038
  computed: {
@@ -9047,6 +9086,7 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
9047
9086
  },
9048
9087
  mounted: function mounted() {
9049
9088
  this.newThead = utils_util["a" /* default */].extend(true, [], this.data);
9089
+ console.log(this.mode, 90909);
9050
9090
  },
9051
9091
 
9052
9092
  methods: {
@@ -9129,8 +9169,8 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
9129
9169
 
9130
9170
  var sizer_component = normalizeComponent(
9131
9171
  src_sizervue_type_script_lang_js_,
9132
- sizervue_type_template_id_58e4111d_render,
9133
- sizervue_type_template_id_58e4111d_staticRenderFns,
9172
+ sizervue_type_template_id_1e94400e_render,
9173
+ sizervue_type_template_id_1e94400e_staticRenderFns,
9134
9174
  false,
9135
9175
  null,
9136
9176
  null,
@@ -9322,6 +9362,9 @@ var mainvue_type_script_lang_js_components, _watch;
9322
9362
  //
9323
9363
  //
9324
9364
  //
9365
+ //
9366
+ //
9367
+ //
9325
9368
 
9326
9369
 
9327
9370
 
@@ -9330,6 +9373,7 @@ var mainvue_type_script_lang_js_components, _watch;
9330
9373
 
9331
9374
 
9332
9375
 
9376
+ var dataTableMode = utils_util["a" /* default */].win.top.dataTableMode || utils_util["a" /* default */].win.dataTableMode || 'default';
9333
9377
  /* harmony default export */ var data_table_src_mainvue_type_script_lang_js_ = ({
9334
9378
  name: 'EsDataTable',
9335
9379
  inheritAttrs: false,
@@ -9353,6 +9397,10 @@ var mainvue_type_script_lang_js_components, _watch;
9353
9397
  }
9354
9398
  },
9355
9399
  props: {
9400
+ mode: {
9401
+ type: String,
9402
+ default: dataTableMode
9403
+ },
9356
9404
  service: String,
9357
9405
  loading: {
9358
9406
  type: Boolean,
@@ -9600,7 +9648,8 @@ var mainvue_type_script_lang_js_components, _watch;
9600
9648
  config: {
9601
9649
  pageNum: 1,
9602
9650
  pageSize: 20,
9603
- totalCount: 0
9651
+ totalCount: 0,
9652
+ layout: this.mode == 'plus' ? 'total, sizes, prev, pager, next, jumper' : undefined
9604
9653
  },
9605
9654
  searchWhere: {},
9606
9655
  advanceWhere: {},
@@ -9803,7 +9852,7 @@ var mainvue_type_script_lang_js_components, _watch;
9803
9852
  }
9804
9853
  },
9805
9854
  zoom: {
9806
- handler: function handler(val) {
9855
+ handler: function handler() {
9807
9856
  if (this.tableHeight != 'auto' && this.tableHeight !== false && this.display) {
9808
9857
  this.resetHeight();
9809
9858
  this.doLayout();
@@ -9832,7 +9881,7 @@ var mainvue_type_script_lang_js_components, _watch;
9832
9881
  },
9833
9882
  param: {
9834
9883
  deep: true,
9835
- handler: function handler(val) {
9884
+ handler: function handler() {
9836
9885
  this.getTableData();
9837
9886
  }
9838
9887
  }
@@ -9842,12 +9891,6 @@ var mainvue_type_script_lang_js_components, _watch;
9842
9891
  handler: function handler(val) {
9843
9892
  if ((typeof val === 'undefined' ? 'undefined' : mainvue_type_script_lang_js_typeof(val)) === 'object') {
9844
9893
  this.config = utils_util["a" /* default */].extend({}, this.config, val);
9845
- } else {
9846
- this.config = {
9847
- pageNum: 1,
9848
- pageSize: 20,
9849
- totalCount: 0
9850
- };
9851
9894
  }
9852
9895
  }
9853
9896
  }, _watch['config.pageNum'] = function configPageNum() {
@@ -10109,6 +10152,7 @@ var mainvue_type_script_lang_js_components, _watch;
10109
10152
  _this10.theadData = results.theadData || [];
10110
10153
  _this10.list = results.data || results.records || [];
10111
10154
  _this10.config.totalCount = results.count || results.total || results.totalCount;
10155
+ _this10.config.pageCount = results.pageCount;
10112
10156
  _this10.getOptions(_this10.theadData);
10113
10157
  }
10114
10158
  } else {
@@ -10181,6 +10225,7 @@ var mainvue_type_script_lang_js_components, _watch;
10181
10225
  });
10182
10226
  }
10183
10227
  _this11.config.totalCount = results.count || results.total || results.totalCount;
10228
+ _this11.config.pageCount = results.pageCount;
10184
10229
  _this11.checked && _this11.$nextTick(function () {
10185
10230
  _this11.checkSelect(_this11.checked);
10186
10231
  });
@@ -10584,8 +10629,8 @@ var mainvue_type_script_lang_js_components, _watch;
10584
10629
  height = height - ele.offsetHeight - parseInt(utils_util["a" /* default */].getStyle(ele, 'margin-top'), 10) - parseInt(utils_util["a" /* default */].getStyle(ele, 'margin-bottom'), 10);
10585
10630
  }
10586
10631
  }
10587
- height -= _this14.showToolbar ? 45 : 0;
10588
- height -= _this14.page === false ? 0 : 46;
10632
+ height -= _this14.showToolbar ? _this14.$refs.toolbar.$el.offsetHeight : 0;
10633
+ height -= _this14.page === false ? 0 : _this14.$refs.pagination.$el.offsetHeight;
10589
10634
  height -= _this14.title ? _this14.$refs.title.offsetHeight : 0;
10590
10635
  height -= parseInt(utils_util["a" /* default */].getStyle(_this14.$refs.esTableContent, 'padding-top'), 10);
10591
10636
  height -= parseInt(utils_util["a" /* default */].getStyle(_this14.$refs.esTableContent, 'padding-bottom'), 10);
@@ -10680,8 +10725,8 @@ var mainvue_type_script_lang_js_components, _watch;
10680
10725
 
10681
10726
  var data_table_src_main_component = normalizeComponent(
10682
10727
  packages_data_table_src_mainvue_type_script_lang_js_,
10683
- mainvue_type_template_id_39809074_render,
10684
- mainvue_type_template_id_39809074_staticRenderFns,
10728
+ mainvue_type_template_id_af715ef0_render,
10729
+ mainvue_type_template_id_af715ef0_staticRenderFns,
10685
10730
  false,
10686
10731
  null,
10687
10732
  null,
@@ -51018,8 +51063,8 @@ mainvue_type_template_id_6aa3a502_render._withStripped = true
51018
51063
 
51019
51064
  // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=6aa3a502&
51020
51065
 
51021
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=4eab5e26&scoped=true&
51022
- var simplicityvue_type_template_id_4eab5e26_scoped_true_render = function () {
51066
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=1e45fa38&scoped=true&
51067
+ var simplicityvue_type_template_id_1e45fa38_scoped_true_render = function () {
51023
51068
  var _vm = this
51024
51069
  var _h = _vm.$createElement
51025
51070
  var _c = _vm._self._c || _h
@@ -51157,6 +51202,12 @@ var simplicityvue_type_template_id_4eab5e26_scoped_true_render = function () {
51157
51202
  staticClass: "es-simplicity-side-app",
51158
51203
  class: { "is-active": _vm.active == item.id },
51159
51204
  attrs: { title: item.text || item.name },
51205
+ on: {
51206
+ click: function ($event) {
51207
+ $event.stopPropagation()
51208
+ _vm.handlerClickApp(item)
51209
+ },
51210
+ },
51160
51211
  },
51161
51212
  [
51162
51213
  _c("i", {
@@ -51170,19 +51221,7 @@ var simplicityvue_type_template_id_4eab5e26_scoped_true_render = function () {
51170
51221
  }),
51171
51222
  _c(
51172
51223
  "el-badge",
51173
- _vm._b(
51174
- {
51175
- on: {
51176
- click: function ($event) {
51177
- $event.stopPropagation()
51178
- _vm.handlerClickApp(item)
51179
- },
51180
- },
51181
- },
51182
- "el-badge",
51183
- _vm.getBadge(item),
51184
- false
51185
- ),
51224
+ _vm._b({}, "el-badge", _vm.getBadge(item), false),
51186
51225
  [
51187
51226
  _c("es-icon", {
51188
51227
  staticClass: "es-simplicity-side-app-icon",
@@ -51274,6 +51313,7 @@ var simplicityvue_type_template_id_4eab5e26_scoped_true_render = function () {
51274
51313
  _vm._b(
51275
51314
  {
51276
51315
  attrs: {
51316
+ mode: _vm.mode,
51277
51317
  visible: _vm.showMenu,
51278
51318
  closed: _vm.fold,
51279
51319
  size: _vm.menuWidth,
@@ -51633,11 +51673,11 @@ var simplicityvue_type_template_id_4eab5e26_scoped_true_render = function () {
51633
51673
  ),
51634
51674
  ])
51635
51675
  }
51636
- var simplicityvue_type_template_id_4eab5e26_scoped_true_staticRenderFns = []
51637
- simplicityvue_type_template_id_4eab5e26_scoped_true_render._withStripped = true
51676
+ var simplicityvue_type_template_id_1e45fa38_scoped_true_staticRenderFns = []
51677
+ simplicityvue_type_template_id_1e45fa38_scoped_true_render._withStripped = true
51638
51678
 
51639
51679
 
51640
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=4eab5e26&scoped=true&
51680
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=1e45fa38&scoped=true&
51641
51681
 
51642
51682
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=1560e8bf&scoped=true&
51643
51683
  var avatarvue_type_template_id_1560e8bf_scoped_true_render = function () {
@@ -51786,8 +51826,8 @@ var avatar_component = normalizeComponent(
51786
51826
  )
51787
51827
 
51788
51828
  /* harmony default export */ var avatar = (avatar_component.exports);
51789
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=template&id=704e70f6&scoped=true&
51790
- var handlervue_type_template_id_704e70f6_scoped_true_render = function () {
51829
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=template&id=36a30d46&scoped=true&
51830
+ var handlervue_type_template_id_36a30d46_scoped_true_render = function () {
51791
51831
  var _vm = this
51792
51832
  var _h = _vm.$createElement
51793
51833
  var _c = _vm._self._c || _h
@@ -51867,11 +51907,11 @@ var handlervue_type_template_id_704e70f6_scoped_true_render = function () {
51867
51907
  2
51868
51908
  )
51869
51909
  }
51870
- var handlervue_type_template_id_704e70f6_scoped_true_staticRenderFns = []
51871
- handlervue_type_template_id_704e70f6_scoped_true_render._withStripped = true
51910
+ var handlervue_type_template_id_36a30d46_scoped_true_staticRenderFns = []
51911
+ handlervue_type_template_id_36a30d46_scoped_true_render._withStripped = true
51872
51912
 
51873
51913
 
51874
- // CONCATENATED MODULE: ./packages/main/src/simplicity/handler.vue?vue&type=template&id=704e70f6&scoped=true&
51914
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/handler.vue?vue&type=template&id=36a30d46&scoped=true&
51875
51915
 
51876
51916
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=script&lang=js&
51877
51917
  //
@@ -51943,7 +51983,7 @@ var doorIndex = sessionStorage.getItem('doorIndex');
51943
51983
  default: function _default() {
51944
51984
  return {
51945
51985
  type: 'index',
51946
- open: doorIndex,
51986
+ link: doorIndex,
51947
51987
  icon: 'es-icon-home',
51948
51988
  title: '门户'
51949
51989
  };
@@ -52072,18 +52112,18 @@ var doorIndex = sessionStorage.getItem('doorIndex');
52072
52112
 
52073
52113
  var handler_component = normalizeComponent(
52074
52114
  simplicity_handlervue_type_script_lang_js_,
52075
- handlervue_type_template_id_704e70f6_scoped_true_render,
52076
- handlervue_type_template_id_704e70f6_scoped_true_staticRenderFns,
52115
+ handlervue_type_template_id_36a30d46_scoped_true_render,
52116
+ handlervue_type_template_id_36a30d46_scoped_true_staticRenderFns,
52077
52117
  false,
52078
52118
  null,
52079
- "704e70f6",
52119
+ "36a30d46",
52080
52120
  null
52081
52121
 
52082
52122
  )
52083
52123
 
52084
52124
  /* harmony default export */ var simplicity_handler = (handler_component.exports);
52085
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/sub-menu.vue?vue&type=template&id=861e6a80&scoped=true&
52086
- var sub_menuvue_type_template_id_861e6a80_scoped_true_render = function () {
52125
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/sub-menu.vue?vue&type=template&id=8135ef54&scoped=true&
52126
+ var sub_menuvue_type_template_id_8135ef54_scoped_true_render = function () {
52087
52127
  var this$1 = this
52088
52128
  var _vm = this
52089
52129
  var _h = _vm.$createElement
@@ -52110,141 +52150,148 @@ var sub_menuvue_type_template_id_861e6a80_scoped_true_render = function () {
52110
52150
  },
52111
52151
  },
52112
52152
  [
52113
- _c("div", { staticClass: "es-simplicity-menus" }, [
52114
- _c(
52115
- "div",
52116
- {
52117
- staticClass: "es-simplicity-menus-box",
52118
- style: { width: _vm.width + "px" },
52119
- },
52120
- [
52121
- _c("div", { staticClass: "es-simplicity-menus-title" }, [
52122
- !_vm.fold
52123
- ? _c(
52124
- "span",
52125
- { staticClass: "es-simplicity-menus-title-text" },
52126
- [_vm._v(_vm._s(_vm.title || _vm.text))]
52127
- )
52128
- : _vm._e(),
52129
- _c("i", {
52130
- directives: [
52131
- {
52132
- name: "show",
52133
- rawName: "v-show",
52134
- value: !_vm.fold,
52135
- expression: "!fold",
52153
+ _c(
52154
+ "div",
52155
+ {
52156
+ staticClass: "es-simplicity-menus",
52157
+ class: { "es-simplicity-menus-plus": _vm.mode == "plus" },
52158
+ },
52159
+ [
52160
+ _c(
52161
+ "div",
52162
+ {
52163
+ staticClass: "es-simplicity-menus-box",
52164
+ style: { width: _vm.width + "px" },
52165
+ },
52166
+ [
52167
+ _c("div", { staticClass: "es-simplicity-menus-title" }, [
52168
+ !_vm.fold
52169
+ ? _c(
52170
+ "span",
52171
+ { staticClass: "es-simplicity-menus-title-text" },
52172
+ [_vm._v(_vm._s(_vm.title || _vm.text))]
52173
+ )
52174
+ : _vm._e(),
52175
+ _c("i", {
52176
+ directives: [
52177
+ {
52178
+ name: "show",
52179
+ rawName: "v-show",
52180
+ value: !_vm.fold,
52181
+ expression: "!fold",
52182
+ },
52183
+ ],
52184
+ staticClass:
52185
+ "es-icon-shouqicaidan es-simplicity-menus-title-icon",
52186
+ on: {
52187
+ click: function ($event) {
52188
+ _vm.handleFold(true)
52189
+ },
52136
52190
  },
52137
- ],
52138
- staticClass:
52139
- "es-icon-shouqicaidan es-simplicity-menus-title-icon",
52140
- on: {
52141
- click: function ($event) {
52142
- _vm.handleFold(true)
52191
+ }),
52192
+ _c("i", {
52193
+ directives: [
52194
+ {
52195
+ name: "show",
52196
+ rawName: "v-show",
52197
+ value: _vm.fold,
52198
+ expression: "fold",
52199
+ },
52200
+ ],
52201
+ staticClass:
52202
+ "es-icon-shouqicaidan-right es-simplicity-menus-title-icon",
52203
+ on: {
52204
+ click: function ($event) {
52205
+ _vm.handleFold(false)
52206
+ },
52143
52207
  },
52208
+ }),
52209
+ ]),
52210
+ _c("menu-list", {
52211
+ attrs: {
52212
+ active: _vm.active,
52213
+ data: _vm.menus,
52214
+ menuIcon: _vm.menuIcon,
52215
+ color: _vm.color,
52216
+ backgroundColor: _vm.backgroundColor,
52217
+ fold: _vm.fold,
52218
+ width: _vm.size,
52144
52219
  },
52145
- }),
52146
- _c("i", {
52147
- directives: [
52148
- {
52149
- name: "show",
52150
- rawName: "v-show",
52151
- value: _vm.fold,
52152
- expression: "fold",
52153
- },
52154
- ],
52155
- staticClass:
52156
- "es-icon-shouqicaidan-right es-simplicity-menus-title-icon",
52157
52220
  on: {
52158
- click: function ($event) {
52159
- _vm.handleFold(false)
52221
+ menter: function (res) {
52222
+ this$1.getData(res, 0, true)
52160
52223
  },
52224
+ mleave: function (res) {
52225
+ this$1.getData(res, 0, false)
52226
+ },
52227
+ hover: _vm.handleHover,
52228
+ command: _vm.handleCommand,
52161
52229
  },
52162
52230
  }),
52163
- ]),
52164
- _c("menu-list", {
52165
- attrs: {
52166
- active: _vm.active,
52167
- data: _vm.menus,
52168
- menuIcon: _vm.menuIcon,
52169
- color: _vm.color,
52170
- backgroundColor: _vm.backgroundColor,
52171
- fold: _vm.fold,
52172
- width: _vm.size,
52173
- },
52174
- on: {
52175
- menter: function (res) {
52176
- this$1.getData(res, 0, true)
52177
- },
52178
- mleave: function (res) {
52179
- this$1.getData(res, 0, false)
52180
- },
52181
- hover: _vm.handleHover,
52182
- command: _vm.handleCommand,
52183
- },
52184
- }),
52185
- ],
52186
- 1
52187
- ),
52188
- _c(
52189
- "div",
52190
- {
52191
- directives: [
52192
- {
52193
- name: "show",
52194
- rawName: "v-show",
52195
- value: _vm.subMenus.length,
52196
- expression: "subMenus.length",
52197
- },
52198
52231
  ],
52199
- staticClass: "es-simplicity-menus-view",
52200
- on: { mouseleave: _vm.handleLeave, mouseenter: _vm.handleEnter },
52201
- },
52202
- _vm._l(_vm.subMenus, function (item, index) {
52203
- return _c(
52204
- "div",
52205
- { key: item.id, staticClass: "es-simplicity-menus-box" },
52206
- [
52207
- _c("div", { staticClass: "es-simplicity-menus-title" }, [
52208
- _c(
52209
- "span",
52210
- { staticClass: "es-simplicity-menus-title-text" },
52211
- [_vm._v(_vm._s(item.name || item.text || item.title))]
52212
- ),
52213
- ]),
52214
- _c("menu-list", {
52215
- attrs: {
52216
- active: _vm.active,
52217
- data: item.children.concat(item.fourthTabs),
52218
- menuIcon: _vm.menuIcon,
52219
- color: _vm.color,
52220
- backgroundColor: _vm.backgroundColor,
52221
- width: _vm.size,
52222
- },
52223
- on: {
52224
- menter: function (res) {
52225
- _vm.getData(res, index + 1, true)
52232
+ 1
52233
+ ),
52234
+ _c(
52235
+ "div",
52236
+ {
52237
+ directives: [
52238
+ {
52239
+ name: "show",
52240
+ rawName: "v-show",
52241
+ value: _vm.subMenus.length,
52242
+ expression: "subMenus.length",
52243
+ },
52244
+ ],
52245
+ staticClass: "es-simplicity-menus-view",
52246
+ on: { mouseleave: _vm.handleLeave, mouseenter: _vm.handleEnter },
52247
+ },
52248
+ _vm._l(_vm.subMenus, function (item, index) {
52249
+ return _c(
52250
+ "div",
52251
+ { key: item.id, staticClass: "es-simplicity-menus-box" },
52252
+ [
52253
+ _c("div", { staticClass: "es-simplicity-menus-title" }, [
52254
+ _c(
52255
+ "span",
52256
+ { staticClass: "es-simplicity-menus-title-text" },
52257
+ [_vm._v(_vm._s(item.name || item.text || item.title))]
52258
+ ),
52259
+ ]),
52260
+ _c("menu-list", {
52261
+ attrs: {
52262
+ active: _vm.active,
52263
+ data: item.children.concat(item.fourthTabs),
52264
+ menuIcon: _vm.menuIcon,
52265
+ color: _vm.color,
52266
+ backgroundColor: _vm.backgroundColor,
52267
+ width: _vm.size,
52226
52268
  },
52227
- mleave: function (res) {
52228
- _vm.getData(res, index + 1, false)
52269
+ on: {
52270
+ menter: function (res) {
52271
+ _vm.getData(res, index + 1, true)
52272
+ },
52273
+ mleave: function (res) {
52274
+ _vm.getData(res, index + 1, false)
52275
+ },
52276
+ command: _vm.handleCommand,
52229
52277
  },
52230
- command: _vm.handleCommand,
52231
- },
52232
- }),
52233
- ],
52234
- 1
52235
- )
52236
- }),
52237
- 0
52238
- ),
52239
- ]),
52278
+ }),
52279
+ ],
52280
+ 1
52281
+ )
52282
+ }),
52283
+ 0
52284
+ ),
52285
+ ]
52286
+ ),
52240
52287
  ]
52241
52288
  )
52242
52289
  }
52243
- var sub_menuvue_type_template_id_861e6a80_scoped_true_staticRenderFns = []
52244
- sub_menuvue_type_template_id_861e6a80_scoped_true_render._withStripped = true
52290
+ var sub_menuvue_type_template_id_8135ef54_scoped_true_staticRenderFns = []
52291
+ sub_menuvue_type_template_id_8135ef54_scoped_true_render._withStripped = true
52245
52292
 
52246
52293
 
52247
- // CONCATENATED MODULE: ./packages/main/src/simplicity/sub-menu.vue?vue&type=template&id=861e6a80&scoped=true&
52294
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/sub-menu.vue?vue&type=template&id=8135ef54&scoped=true&
52248
52295
 
52249
52296
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/menu-list.vue?vue&type=template&id=2602f83d&scoped=true&
52250
52297
  var menu_listvue_type_template_id_2602f83d_scoped_true_render = function () {
@@ -52597,12 +52644,16 @@ var menu_list_component = normalizeComponent(
52597
52644
  //
52598
52645
  //
52599
52646
  //
52647
+ //
52648
+ //
52649
+ //
52600
52650
 
52601
52651
 
52602
52652
  /* harmony default export */ var sub_menuvue_type_script_lang_js_ = ({
52603
52653
  name: 'SubMenu',
52604
52654
  components: { MenuList: menu_list },
52605
52655
  props: {
52656
+ mode: String,
52606
52657
  title: String,
52607
52658
  active: String,
52608
52659
  closed: Boolean,
@@ -52738,11 +52789,11 @@ var menu_list_component = normalizeComponent(
52738
52789
 
52739
52790
  var sub_menu_component = normalizeComponent(
52740
52791
  simplicity_sub_menuvue_type_script_lang_js_,
52741
- sub_menuvue_type_template_id_861e6a80_scoped_true_render,
52742
- sub_menuvue_type_template_id_861e6a80_scoped_true_staticRenderFns,
52792
+ sub_menuvue_type_template_id_8135ef54_scoped_true_render,
52793
+ sub_menuvue_type_template_id_8135ef54_scoped_true_staticRenderFns,
52743
52794
  false,
52744
52795
  null,
52745
- "861e6a80",
52796
+ "8135ef54",
52746
52797
  null
52747
52798
 
52748
52799
  )
@@ -55805,8 +55856,8 @@ var simplicityvue_type_script_lang_js_extends = Object.assign || function (targe
55805
55856
  //
55806
55857
  //
55807
55858
  //
55808
- //
55809
55859
 
55860
+ var simplicityvue_type_script_lang_js_dataTableMode = utils_util["a" /* default */].win.dataTableMode || 'default';
55810
55861
 
55811
55862
 
55812
55863
 
@@ -55880,6 +55931,11 @@ var events = [function (tabs, index, that) {
55880
55931
  online: online
55881
55932
  },
55882
55933
  props: {
55934
+ //模式
55935
+ mode: {
55936
+ type: String,
55937
+ default: simplicityvue_type_script_lang_js_dataTableMode
55938
+ },
55883
55939
  appCode: String,
55884
55940
  //logo
55885
55941
  logo: String,
@@ -57243,11 +57299,11 @@ var events = [function (tabs, index, that) {
57243
57299
 
57244
57300
  var simplicity_component = normalizeComponent(
57245
57301
  src_simplicityvue_type_script_lang_js_,
57246
- simplicityvue_type_template_id_4eab5e26_scoped_true_render,
57247
- simplicityvue_type_template_id_4eab5e26_scoped_true_staticRenderFns,
57302
+ simplicityvue_type_template_id_1e45fa38_scoped_true_render,
57303
+ simplicityvue_type_template_id_1e45fa38_scoped_true_staticRenderFns,
57248
57304
  false,
57249
57305
  null,
57250
- "4eab5e26",
57306
+ "1e45fa38",
57251
57307
  null
57252
57308
 
57253
57309
  )
@@ -63076,8 +63132,8 @@ notify_src_main.install = function (Vue) {
63076
63132
  };
63077
63133
 
63078
63134
  /* harmony default export */ var packages_notify = (notify_src_main);
63079
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/pagination/src/main.vue?vue&type=template&id=c691c10c&
63080
- var mainvue_type_template_id_c691c10c_render = function () {
63135
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/pagination/src/main.vue?vue&type=template&id=4fb5d7d0&
63136
+ var mainvue_type_template_id_4fb5d7d0_render = function () {
63081
63137
  var _vm = this
63082
63138
  var _h = _vm.$createElement
63083
63139
  var _c = _vm._self._c || _h
@@ -63112,11 +63168,11 @@ var mainvue_type_template_id_c691c10c_render = function () {
63112
63168
  )
63113
63169
  )
63114
63170
  }
63115
- var mainvue_type_template_id_c691c10c_staticRenderFns = []
63116
- mainvue_type_template_id_c691c10c_render._withStripped = true
63171
+ var mainvue_type_template_id_4fb5d7d0_staticRenderFns = []
63172
+ mainvue_type_template_id_4fb5d7d0_render._withStripped = true
63117
63173
 
63118
63174
 
63119
- // CONCATENATED MODULE: ./packages/pagination/src/main.vue?vue&type=template&id=c691c10c&
63175
+ // CONCATENATED MODULE: ./packages/pagination/src/main.vue?vue&type=template&id=4fb5d7d0&
63120
63176
 
63121
63177
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/pagination/src/main.vue?vue&type=script&lang=js&
63122
63178
  //
@@ -63141,7 +63197,7 @@ mainvue_type_template_id_c691c10c_render._withStripped = true
63141
63197
  //
63142
63198
 
63143
63199
 
63144
- var pageLayout = utils_util["a" /* default */].win.top.tableLayout || utils_util["a" /* default */].win.tableLayout || 'prev, pager, next, sizes, total';
63200
+ var paginationLayout = utils_util["a" /* default */].win.top.tableLayout || utils_util["a" /* default */].win.tableLayout || 'prev, pager, next, sizes, total';
63145
63201
  /* harmony default export */ var pagination_src_mainvue_type_script_lang_js_ = ({
63146
63202
  name: 'EsPagination',
63147
63203
  inheritAttrs: false,
@@ -63176,7 +63232,7 @@ var pageLayout = utils_util["a" /* default */].win.top.tableLayout || utils_util
63176
63232
  // 自定义排版
63177
63233
  layout: {
63178
63234
  type: String,
63179
- default: pageLayout
63235
+ default: paginationLayout
63180
63236
  },
63181
63237
  // 只有一页时是否隐藏
63182
63238
  hideOnSinglePage: {
@@ -63216,8 +63272,8 @@ var pageLayout = utils_util["a" /* default */].win.top.tableLayout || utils_util
63216
63272
 
63217
63273
  var pagination_src_main_component = normalizeComponent(
63218
63274
  packages_pagination_src_mainvue_type_script_lang_js_,
63219
- mainvue_type_template_id_c691c10c_render,
63220
- mainvue_type_template_id_c691c10c_staticRenderFns,
63275
+ mainvue_type_template_id_4fb5d7d0_render,
63276
+ mainvue_type_template_id_4fb5d7d0_staticRenderFns,
63221
63277
  false,
63222
63278
  null,
63223
63279
  null,
@@ -81718,7 +81774,7 @@ if (typeof window !== 'undefined' && window.Vue) {
81718
81774
  }
81719
81775
 
81720
81776
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
81721
- version: '0.5.81-beta11',
81777
+ version: '0.5.81-beta13',
81722
81778
  install: install,
81723
81779
  Button: packages_button,
81724
81780
  ButtonGroup: button_group,