eoss-ui 0.5.86 → 0.5.87

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.
@@ -7019,8 +7019,8 @@ clients_src_main.install = function (Vue) {
7019
7019
  };
7020
7020
 
7021
7021
  /* harmony default export */ var clients = (clients_src_main);
7022
- // 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=d6bac15c&
7023
- var mainvue_type_template_id_d6bac15c_render = function () {
7022
+ // 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=4f432fee&
7023
+ var mainvue_type_template_id_4f432fee_render = function () {
7024
7024
  var _vm = this
7025
7025
  var _h = _vm.$createElement
7026
7026
  var _c = _vm._self._c || _h
@@ -7028,6 +7028,12 @@ var mainvue_type_template_id_d6bac15c_render = function () {
7028
7028
  _vm.tag,
7029
7029
  {
7030
7030
  directives: [
7031
+ {
7032
+ name: "show",
7033
+ rawName: "v-show",
7034
+ value: _vm.showTable,
7035
+ expression: "showTable",
7036
+ },
7031
7037
  {
7032
7038
  name: "loading",
7033
7039
  rawName: "v-loading",
@@ -7380,11 +7386,11 @@ var mainvue_type_template_id_d6bac15c_render = function () {
7380
7386
  1
7381
7387
  )
7382
7388
  }
7383
- var mainvue_type_template_id_d6bac15c_staticRenderFns = []
7384
- mainvue_type_template_id_d6bac15c_render._withStripped = true
7389
+ var mainvue_type_template_id_4f432fee_staticRenderFns = []
7390
+ mainvue_type_template_id_4f432fee_render._withStripped = true
7385
7391
 
7386
7392
 
7387
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=d6bac15c&
7393
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=4f432fee&
7388
7394
 
7389
7395
  // 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=271bb842&
7390
7396
  var childrenvue_type_template_id_271bb842_render = function () {
@@ -9734,6 +9740,7 @@ var data_table_src_mainvue_type_script_lang_js_extends = Object.assign || functi
9734
9740
  //
9735
9741
  //
9736
9742
  //
9743
+ //
9737
9744
 
9738
9745
 
9739
9746
 
@@ -9996,6 +10003,7 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
9996
10003
  least: Boolean,
9997
10004
  //保留搜索参数
9998
10005
  retainSearh: Boolean,
10006
+ //无线滚动
9999
10007
  infiniteScroll: Boolean,
10000
10008
  isJoin: {
10001
10009
  type: Boolean,
@@ -10043,11 +10051,13 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
10043
10051
  options: {},
10044
10052
  icon: true,
10045
10053
  sysCodes: [],
10046
- infiniteDisabled: this.infiniteScroll,
10054
+ infiniteDisabled: !this.infiniteScroll,
10047
10055
  isReload: false,
10048
10056
  pageView: null,
10049
10057
  showSizer: false,
10050
- show: true
10058
+ show: true,
10059
+ isSetHeight: false,
10060
+ showTable: false
10051
10061
  };
10052
10062
  },
10053
10063
 
@@ -10333,6 +10343,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
10333
10343
  this.chekOpenTotalArea();
10334
10344
  },
10335
10345
  mounted: function mounted() {
10346
+ this.isSetHeight = utils_util["a" /* default */].getStyle(this.$el.parentNode, 'height') == '0px' ? false : true;
10347
+ this.showTable = true;
10336
10348
  if (this.data.length) {
10337
10349
  this.list = this.setData();
10338
10350
  }
@@ -11041,14 +11053,14 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
11041
11053
  var _this15 = this;
11042
11054
 
11043
11055
  this.$nextTick(function () {
11044
- if (_this15.full && !_this15.height && !_this15.maxHeight) {
11056
+ if (_this15.full && !_this15.height && !_this15.maxHeight && _this15.isSetHeight) {
11045
11057
  var height = _this15.$el.parentNode.offsetHeight;
11046
11058
  if (height) {
11047
11059
  height = parseInt(utils_util["a" /* default */].getStyle(_this15.$el.parentNode, 'height', '%'), 10);
11048
11060
  height = (height == NaN ? 0 : height) - parseInt(utils_util["a" /* default */].getStyle(_this15.$el.parentNode, 'padding-top'), 10) - parseInt(utils_util["a" /* default */].getStyle(_this15.$el.parentNode, 'padding-bottom'), 10);
11049
11061
  for (var i = 0; i < _this15.$el.parentNode.childNodes.length; i++) {
11050
11062
  var ele = _this15.$el.parentNode.childNodes[i];
11051
- if (ele.offsetHeight !== undefined) {
11063
+ if (_this15.$el && ele.offsetHeight !== undefined && ele != _this15.$el) {
11052
11064
  height = height - ele.offsetHeight - parseInt(utils_util["a" /* default */].getStyle(ele, 'margin-top'), 10) - parseInt(utils_util["a" /* default */].getStyle(ele, 'margin-bottom'), 10);
11053
11065
  }
11054
11066
  }
@@ -11164,8 +11176,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
11164
11176
 
11165
11177
  var data_table_src_main_component = normalizeComponent(
11166
11178
  packages_data_table_src_mainvue_type_script_lang_js_,
11167
- mainvue_type_template_id_d6bac15c_render,
11168
- mainvue_type_template_id_d6bac15c_staticRenderFns,
11179
+ mainvue_type_template_id_4f432fee_render,
11180
+ mainvue_type_template_id_4f432fee_staticRenderFns,
11169
11181
  false,
11170
11182
  null,
11171
11183
  null,
@@ -40758,8 +40770,8 @@ layout_src_main.install = function (Vue) {
40758
40770
  };
40759
40771
 
40760
40772
  /* harmony default export */ var layout = (layout_src_main);
40761
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=1ab7dd94&
40762
- var mainvue_type_template_id_1ab7dd94_render = function () {
40773
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=049c9299&
40774
+ var mainvue_type_template_id_049c9299_render = function () {
40763
40775
  var _vm = this
40764
40776
  var _h = _vm.$createElement
40765
40777
  var _c = _vm._self._c || _h
@@ -40982,6 +40994,14 @@ var mainvue_type_template_id_1ab7dd94_render = function () {
40982
40994
  autocomplete: "off",
40983
40995
  "show-password": "",
40984
40996
  },
40997
+ nativeOn: {
40998
+ "!paste": function ($event) {
40999
+ return _vm.handlePaste($event)
41000
+ },
41001
+ "!copy": function ($event) {
41002
+ return _vm.handlePaste($event)
41003
+ },
41004
+ },
40985
41005
  model: {
40986
41006
  value: _vm.formData.password,
40987
41007
  callback: function ($$v) {
@@ -41181,7 +41201,7 @@ var mainvue_type_template_id_1ab7dd94_render = function () {
41181
41201
  _c(
41182
41202
  "span",
41183
41203
  { on: { click: _vm.handleForget } },
41184
- [_vm._v("忘记密码?")]
41204
+ [_vm._v("修改密码")]
41185
41205
  ),
41186
41206
  ]
41187
41207
  ),
@@ -41707,11 +41727,11 @@ var mainvue_type_template_id_1ab7dd94_render = function () {
41707
41727
  )
41708
41728
  : _vm._e()
41709
41729
  }
41710
- var mainvue_type_template_id_1ab7dd94_staticRenderFns = []
41711
- mainvue_type_template_id_1ab7dd94_render._withStripped = true
41730
+ var mainvue_type_template_id_049c9299_staticRenderFns = []
41731
+ mainvue_type_template_id_049c9299_render._withStripped = true
41712
41732
 
41713
41733
 
41714
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=1ab7dd94&
41734
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=049c9299&
41715
41735
 
41716
41736
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=cab38660&
41717
41737
  var resetPasswordvue_type_template_id_cab38660_render = function () {
@@ -42653,6 +42673,8 @@ function login_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
42653
42673
  //
42654
42674
  //
42655
42675
  //
42676
+ //
42677
+ //
42656
42678
 
42657
42679
 
42658
42680
 
@@ -42853,7 +42875,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
42853
42875
  default: 1500
42854
42876
  },
42855
42877
  isScale: Boolean,
42856
- showIosTips: Boolean
42878
+ showIosTips: Boolean,
42879
+ safe: Boolean
42857
42880
  },
42858
42881
  computed: {
42859
42882
  transform: function transform() {
@@ -43045,7 +43068,25 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43045
43068
  copyrightBgColor: null,
43046
43069
  checkCode: '',
43047
43070
  showAssistance: false,
43048
- doAssistance: null
43071
+ doAssistance: null,
43072
+ safes: {
43073
+ paste: function paste(event) {
43074
+ event.preventDefault();
43075
+ return false;
43076
+ },
43077
+ contextmenu: function contextmenu(event) {
43078
+ event.preventDefault();
43079
+ return false;
43080
+ },
43081
+ copy: function copy(event) {
43082
+ event.preventDefault();
43083
+ return false;
43084
+ },
43085
+ cut: function cut(event) {
43086
+ event.preventDefault();
43087
+ return false;
43088
+ }
43089
+ }
43049
43090
  };
43050
43091
  },
43051
43092
  beforeCreate: function beforeCreate() {
@@ -43809,6 +43850,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43809
43850
  if (e.keyCode == 9) {
43810
43851
  return false;
43811
43852
  }
43853
+ },
43854
+ handlePaste: function handlePaste(event) {
43855
+ this.safe && event.preventDefault();
43812
43856
  }
43813
43857
  },
43814
43858
  beforeDestroy: function beforeDestroy() {
@@ -43829,8 +43873,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
43829
43873
 
43830
43874
  var login_src_main_component = normalizeComponent(
43831
43875
  packages_login_src_mainvue_type_script_lang_js_,
43832
- mainvue_type_template_id_1ab7dd94_render,
43833
- mainvue_type_template_id_1ab7dd94_staticRenderFns,
43876
+ mainvue_type_template_id_049c9299_render,
43877
+ mainvue_type_template_id_049c9299_staticRenderFns,
43834
43878
  false,
43835
43879
  null,
43836
43880
  null,
@@ -43923,8 +43967,8 @@ mainvue_type_template_id_a3c25372_render._withStripped = true
43923
43967
 
43924
43968
  // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=a3c25372&
43925
43969
 
43926
- // 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=7b4d5e88&scoped=true&
43927
- var simplicityvue_type_template_id_7b4d5e88_scoped_true_render = function () {
43970
+ // 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=d7dbfbf8&scoped=true&
43971
+ var simplicityvue_type_template_id_d7dbfbf8_scoped_true_render = function () {
43928
43972
  var _vm = this
43929
43973
  var _h = _vm.$createElement
43930
43974
  var _c = _vm._self._c || _h
@@ -44294,7 +44338,7 @@ var simplicityvue_type_template_id_7b4d5e88_scoped_true_render = function () {
44294
44338
  class: { "is-disabled": _vm.isDisabled.other },
44295
44339
  on: {
44296
44340
  click: function ($event) {
44297
- _vm.isDisabled.left ? "" : _vm.handleTabsEvents(2)
44341
+ _vm.isDisabled.other ? "" : _vm.handleTabsEvents(2)
44298
44342
  },
44299
44343
  },
44300
44344
  },
@@ -44495,6 +44539,7 @@ var simplicityvue_type_template_id_7b4d5e88_scoped_true_render = function () {
44495
44539
  _c(
44496
44540
  "es-dialog",
44497
44541
  {
44542
+ staticClass: "es-public-search-dialog",
44498
44543
  attrs: { visible: _vm.showSearch, size: "lg" },
44499
44544
  on: {
44500
44545
  "update:visible": function ($event) {
@@ -44549,11 +44594,11 @@ var simplicityvue_type_template_id_7b4d5e88_scoped_true_render = function () {
44549
44594
  ),
44550
44595
  ])
44551
44596
  }
44552
- var simplicityvue_type_template_id_7b4d5e88_scoped_true_staticRenderFns = []
44553
- simplicityvue_type_template_id_7b4d5e88_scoped_true_render._withStripped = true
44597
+ var simplicityvue_type_template_id_d7dbfbf8_scoped_true_staticRenderFns = []
44598
+ simplicityvue_type_template_id_d7dbfbf8_scoped_true_render._withStripped = true
44554
44599
 
44555
44600
 
44556
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=7b4d5e88&scoped=true&
44601
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=d7dbfbf8&scoped=true&
44557
44602
 
44558
44603
  // 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&
44559
44604
  var avatarvue_type_template_id_1560e8bf_scoped_true_render = function () {
@@ -48446,8 +48491,8 @@ var online_component = normalizeComponent(
48446
48491
  )
48447
48492
 
48448
48493
  /* harmony default export */ var online = (online_component.exports);
48449
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=13661892&
48450
- var searchvue_type_template_id_13661892_render = function () {
48494
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=2a1fa976&
48495
+ var searchvue_type_template_id_2a1fa976_render = function () {
48451
48496
  var _vm = this
48452
48497
  var _h = _vm.$createElement
48453
48498
  var _c = _vm._self._c || _h
@@ -48486,22 +48531,7 @@ var searchvue_type_template_id_13661892_render = function () {
48486
48531
  [
48487
48532
  _c(
48488
48533
  "el-tab-pane",
48489
- {
48490
- directives: [
48491
- {
48492
- name: "loading",
48493
- rawName: "v-loading",
48494
- value: _vm.loading,
48495
- expression: "loading",
48496
- },
48497
- ],
48498
- attrs: {
48499
- label: "综合",
48500
- name: "0",
48501
- "element-loading-background": "rgba(0, 0, 0, 0.01)",
48502
- "element-loading-text": "加载中...",
48503
- },
48504
- },
48534
+ { attrs: { label: "综合", name: "0" } },
48505
48535
  [
48506
48536
  _c(
48507
48537
  "el-scrollbar",
@@ -48670,150 +48700,179 @@ var searchvue_type_template_id_13661892_render = function () {
48670
48700
  1
48671
48701
  ),
48672
48702
  _vm._l(_vm.types, function (item, index) {
48673
- return _c(
48674
- "el-tab-pane",
48675
- {
48676
- directives: [
48677
- {
48678
- name: "loading",
48679
- rawName: "v-loading",
48680
- value: _vm.loadings[item.id || String(index)],
48681
- expression: "loadings[item.id || String(index)]",
48682
- },
48683
- {
48684
- name: "show",
48685
- rawName: "v-show",
48686
- value: _vm.hides.includes(item.name),
48687
- expression: "hides.includes(item.name)",
48688
- },
48689
- ],
48690
- key: item.id,
48691
- attrs: {
48692
- lazy: "",
48693
- label: item.name,
48694
- name: item.id || String(index + 1),
48695
- "element-loading-background": "rgba(0, 0, 0, 0.01)",
48696
- "element-loading-text": "加载中...",
48697
- },
48698
- },
48699
- [
48700
- _c(
48701
- "el-scrollbar",
48702
- {
48703
- staticClass: "es-scrollbar es-public-search-scrollbar",
48704
- attrs: {
48705
- "infinite-scroll": function () {
48706
- _vm.handleSearchd(item, index)
48703
+ return [
48704
+ !_vm.hides.includes(item.name)
48705
+ ? _c(
48706
+ "el-tab-pane",
48707
+ {
48708
+ directives: [
48709
+ {
48710
+ name: "loading",
48711
+ rawName: "v-loading",
48712
+ value: _vm.loadings[item.id || String(index)],
48713
+ expression: "loadings[item.id || String(index)]",
48714
+ },
48715
+ ],
48716
+ key: item.id,
48717
+ attrs: {
48718
+ label: item.name,
48719
+ name: item.id || String(index + 1),
48720
+ "element-loading-background": "rgba(0, 0, 0, 0.01)",
48721
+ "element-loading-text": "加载中...",
48707
48722
  },
48708
- "infinite-scroll-disabled": _vm.disabled,
48709
- "infinite-scroll-immediate": false,
48710
48723
  },
48711
- },
48712
- [
48713
- _c("div", { staticClass: "es-public-search-info" }, [
48714
- _vm._v(
48715
- "\n " + _vm._s(item.totalCount) + '条与"'
48716
- ),
48724
+ [
48717
48725
  _c(
48718
- "span",
48719
- { staticClass: "es-public-search-more-quote" },
48720
- [_vm._v(_vm._s(_vm.keyWords))]
48721
- ),
48722
- _vm._v('"相关的搜索结果\n '),
48723
- ]),
48724
- _c(
48725
- "ul",
48726
- { staticClass: "es-public-search-lists" },
48727
- _vm._l(item.records, function (ele) {
48728
- return _c(
48729
- "li",
48730
- {
48731
- key: ele.id,
48732
- staticClass: "es-public-search-list-item",
48733
- on: {
48734
- click: function ($event) {
48735
- _vm.handleClick(ele, item)
48736
- },
48726
+ "el-scrollbar",
48727
+ {
48728
+ staticClass:
48729
+ "es-scrollbar es-public-search-scrollbar",
48730
+ attrs: {
48731
+ "infinite-scroll": function () {
48732
+ _vm.handleSearchd(item, index)
48737
48733
  },
48734
+ "infinite-scroll-disabled": _vm.disabled,
48735
+ "infinite-scroll-immediate": false,
48738
48736
  },
48739
- [
48740
- _c(
48741
- "es-icon",
48742
- _vm._b(
48737
+ },
48738
+ [
48739
+ _c(
48740
+ "div",
48741
+ {
48742
+ directives: [
48743
48743
  {
48744
- staticClass: "es-public-search-item-icon",
48745
- style: _vm.setStyle(ele, index),
48744
+ name: "show",
48745
+ rawName: "v-show",
48746
+ value: _vm.keyWords,
48747
+ expression: "keyWords",
48746
48748
  },
48747
- "es-icon",
48748
- _vm.getIcon(ele, item),
48749
- false
48750
- )
48751
- ),
48752
- _c(
48753
- "div",
48754
- { staticClass: "es-public-search-item-name" },
48755
- [
48756
- _vm._v(
48757
- "\n " +
48758
- _vm._s(ele.name || ele.title || ele.text) +
48759
- "\n "
48760
- ),
48761
- ]
48762
- ),
48763
- ele.summary
48764
- ? _c(
48765
- "div",
48766
- {
48767
- staticClass: "es-public-search-item-texts",
48749
+ ],
48750
+ staticClass: "es-public-search-info",
48751
+ },
48752
+ [
48753
+ _vm._v(
48754
+ "\n " +
48755
+ _vm._s(item.totalCount) +
48756
+ '条与"'
48757
+ ),
48758
+ _c(
48759
+ "span",
48760
+ { staticClass: "es-public-search-more-quote" },
48761
+ [_vm._v(_vm._s(_vm.keyWords))]
48762
+ ),
48763
+ _vm._v('"相关的搜索结果\n '),
48764
+ ]
48765
+ ),
48766
+ _c(
48767
+ "ul",
48768
+ { staticClass: "es-public-search-lists" },
48769
+ _vm._l(item.records, function (ele) {
48770
+ return _c(
48771
+ "li",
48772
+ {
48773
+ key: ele.id,
48774
+ staticClass: "es-public-search-list-item",
48775
+ on: {
48776
+ click: function ($event) {
48777
+ _vm.handleClick(ele, item)
48778
+ },
48768
48779
  },
48769
- [
48770
- _vm._v(
48771
- "\n " +
48772
- _vm._s(ele.summary) +
48773
- "\n "
48774
- ),
48775
- ]
48776
- )
48777
- : _vm._e(),
48778
- _c(
48779
- "div",
48780
- { staticClass: "es-public-search-item-texts" },
48781
- [
48782
- Array.isArray(ele.infos || ele.footer)
48783
- ? _vm._l(
48784
- ele.infos || ele.footer,
48785
- function (text, idx) {
48786
- return _c(
48787
- "span",
48788
- {
48789
- key: idx,
48790
- staticClass:
48791
- "es-public-search-item-text",
48792
- },
48793
- [_vm._v(_vm._s(text))]
48794
- )
48795
- }
48780
+ },
48781
+ [
48782
+ _c(
48783
+ "es-icon",
48784
+ _vm._b(
48785
+ {
48786
+ staticClass:
48787
+ "es-public-search-item-icon",
48788
+ style: _vm.setStyle(ele, index),
48789
+ },
48790
+ "es-icon",
48791
+ _vm.getIcon(ele, item),
48792
+ false
48796
48793
  )
48797
- : [_vm._v(_vm._s(ele.infos || ele.footer))],
48798
- ],
48799
- 2
48800
- ),
48801
- ],
48802
- 1
48803
- )
48804
- }),
48805
- 0
48806
- ),
48807
- _vm.noMore[item.id || String(index)]
48808
- ? _c("p", { staticClass: "es-public-search-no-more" }, [
48809
- _vm._v("\n 没有更多了\n "),
48810
- ])
48811
- : _vm._e(),
48812
- ]
48813
- ),
48814
- ],
48815
- 1
48816
- )
48794
+ ),
48795
+ _c(
48796
+ "div",
48797
+ {
48798
+ staticClass: "es-public-search-item-name",
48799
+ },
48800
+ [
48801
+ _vm._v(
48802
+ "\n " +
48803
+ _vm._s(
48804
+ ele.name || ele.title || ele.text
48805
+ ) +
48806
+ "\n "
48807
+ ),
48808
+ ]
48809
+ ),
48810
+ ele.summary
48811
+ ? _c(
48812
+ "div",
48813
+ {
48814
+ staticClass:
48815
+ "es-public-search-item-texts",
48816
+ },
48817
+ [
48818
+ _vm._v(
48819
+ "\n " +
48820
+ _vm._s(ele.summary) +
48821
+ "\n "
48822
+ ),
48823
+ ]
48824
+ )
48825
+ : _vm._e(),
48826
+ _c(
48827
+ "div",
48828
+ {
48829
+ staticClass:
48830
+ "es-public-search-item-texts",
48831
+ },
48832
+ [
48833
+ Array.isArray(ele.infos || ele.footer)
48834
+ ? _vm._l(
48835
+ ele.infos || ele.footer,
48836
+ function (text, idx) {
48837
+ return _c(
48838
+ "span",
48839
+ {
48840
+ key: idx,
48841
+ staticClass:
48842
+ "es-public-search-item-text",
48843
+ },
48844
+ [_vm._v(_vm._s(text))]
48845
+ )
48846
+ }
48847
+ )
48848
+ : [
48849
+ _vm._v(
48850
+ _vm._s(ele.infos || ele.footer)
48851
+ ),
48852
+ ],
48853
+ ],
48854
+ 2
48855
+ ),
48856
+ ],
48857
+ 1
48858
+ )
48859
+ }),
48860
+ 0
48861
+ ),
48862
+ _vm.noMore[item.id || String(index)]
48863
+ ? _c(
48864
+ "p",
48865
+ { staticClass: "es-public-search-no-more" },
48866
+ [_vm._v("\n 没有更多了\n ")]
48867
+ )
48868
+ : _vm._e(),
48869
+ ]
48870
+ ),
48871
+ ],
48872
+ 1
48873
+ )
48874
+ : _vm._e(),
48875
+ ]
48817
48876
  }),
48818
48877
  ],
48819
48878
  2
@@ -48822,11 +48881,11 @@ var searchvue_type_template_id_13661892_render = function () {
48822
48881
  1
48823
48882
  )
48824
48883
  }
48825
- var searchvue_type_template_id_13661892_staticRenderFns = []
48826
- searchvue_type_template_id_13661892_render._withStripped = true
48884
+ var searchvue_type_template_id_2a1fa976_staticRenderFns = []
48885
+ searchvue_type_template_id_2a1fa976_render._withStripped = true
48827
48886
 
48828
48887
 
48829
- // CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=13661892&
48888
+ // CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=2a1fa976&
48830
48889
 
48831
48890
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=script&lang=js&
48832
48891
  var searchvue_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; };
@@ -48966,12 +49025,6 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
48966
49025
  //
48967
49026
  //
48968
49027
  //
48969
- //
48970
- //
48971
- //
48972
- //
48973
- //
48974
- //
48975
49028
 
48976
49029
 
48977
49030
 
@@ -49139,34 +49192,34 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
49139
49192
  },
49140
49193
  searchAll: function searchAll(keyWords) {
49141
49194
  for (var i = 0; i < this.types.length; i++) {
49195
+ var item = this.types[i];
49142
49196
  if (keyWords) {
49143
- var _item = this.types[i];
49144
- if (_item.name == '菜单' && this.menus.length) {
49197
+ if (item.name == '菜单' && this.menus.length) {
49145
49198
  this.isLoading = false;
49146
49199
  this.types[i].records = this.searchData(this.menus, keyWords);
49147
49200
  this.types[i].totalCount = this.types[i].records.length;
49148
49201
  this.types[i].pageCount = Math.ceil(this.types[i].records.length / this.pageSize);
49149
49202
  this.types[i].pageNum = 0;
49150
- this.$set(this.loadings, _item.id || String(i), false);
49151
- this.$set(this.noMore, _item.id || String(i), true);
49152
- } else if (_item.name == '应用' && this.apps.length) {
49203
+ this.$set(this.loadings, item.id || String(i), false);
49204
+ this.$set(this.noMore, item.id || String(i), true);
49205
+ } else if (item.name == '应用' && this.apps.length) {
49153
49206
  this.isLoading = false;
49154
49207
  this.types[i].records = this.searchData(this.apps, keyWords);
49155
49208
  this.types[i].totalCount = this.types[i].records.length;
49156
49209
  this.types[i].pageCount = Math.ceil(this.types[i].records.length / this.pageSize);
49157
49210
  this.types[i].pageNum = 0;
49158
- this.$set(this.loadings, _item.id || String(i), false);
49159
- this.$set(this.noMore, _item.id || String(i), true);
49160
- } else if (_item.dataRequestUrl) {
49211
+ this.$set(this.loadings, item.id || String(i), false);
49212
+ this.$set(this.noMore, item.id || String(i), true);
49213
+ } else if (item.dataRequestUrl) {
49161
49214
  this.isLoading = true;
49162
- this.handleSearch(_item, i);
49215
+ this.handleSearch(item, i);
49163
49216
  } else {
49164
49217
  this.types[i].records = [];
49165
49218
  this.types[i].totalCount = 0;
49166
49219
  this.types[i].pageCount = 1;
49167
49220
  this.types[i].pageNum = 0;
49168
- this.$set(this.loadings, _item.id || String(i), false);
49169
- this.$set(this.noMore, _item.id || String(i), true);
49221
+ this.$set(this.loadings, item.id || String(i), false);
49222
+ this.$set(this.noMore, item.id || String(i), true);
49170
49223
  }
49171
49224
  } else {
49172
49225
  this.isLoading = false;
@@ -49275,8 +49328,8 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
49275
49328
 
49276
49329
  var search_component = normalizeComponent(
49277
49330
  public_searchvue_type_script_lang_js_,
49278
- searchvue_type_template_id_13661892_render,
49279
- searchvue_type_template_id_13661892_staticRenderFns,
49331
+ searchvue_type_template_id_2a1fa976_render,
49332
+ searchvue_type_template_id_2a1fa976_staticRenderFns,
49280
49333
  false,
49281
49334
  null,
49282
49335
  null,
@@ -49601,6 +49654,10 @@ var simplicityvue_type_script_lang_js_extends = Object.assign || function (targe
49601
49654
  //
49602
49655
  //
49603
49656
  //
49657
+ //
49658
+ //
49659
+ //
49660
+ //
49604
49661
 
49605
49662
 
49606
49663
 
@@ -51112,11 +51169,11 @@ var events = [function (tabs, index, that) {
51112
51169
 
51113
51170
  var simplicity_component = normalizeComponent(
51114
51171
  src_simplicityvue_type_script_lang_js_,
51115
- simplicityvue_type_template_id_7b4d5e88_scoped_true_render,
51116
- simplicityvue_type_template_id_7b4d5e88_scoped_true_staticRenderFns,
51172
+ simplicityvue_type_template_id_d7dbfbf8_scoped_true_render,
51173
+ simplicityvue_type_template_id_d7dbfbf8_scoped_true_staticRenderFns,
51117
51174
  false,
51118
51175
  null,
51119
- "7b4d5e88",
51176
+ "d7dbfbf8",
51120
51177
  null
51121
51178
 
51122
51179
  )
@@ -75873,7 +75930,7 @@ if (typeof window !== 'undefined' && window.Vue) {
75873
75930
  }
75874
75931
 
75875
75932
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
75876
- version: '0.5.86',
75933
+ version: '0.5.87',
75877
75934
  install: install,
75878
75935
  Button: packages_button,
75879
75936
  ButtonGroup: button_group,