@weitutech/by-components 1.1.8 → 1.1.10

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.
@@ -60604,8 +60604,8 @@ var component = normalizeComponent(
60604
60604
  )
60605
60605
 
60606
60606
  /* harmony default export */ var pager = (component.exports);
60607
- ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=4116d162&scoped=true
60608
- var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60607
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=48543288
60608
+ var tablevue_type_template_id_48543288_render = function render() {
60609
60609
  var _vm = this,
60610
60610
  _c = _vm._self._c;
60611
60611
  return _c('div', [_c('vxe-grid', _vm._g(_vm._b({
@@ -60626,7 +60626,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60626
60626
  fn: function () {
60627
60627
  return [_c('div', {
60628
60628
  staticClass: "pager-container"
60629
- }, [_c('el-button', {
60629
+ }, [_vm.showResetCache ? _c('el-button', {
60630
60630
  attrs: {
60631
60631
  "disabled": !_vm.hasCache,
60632
60632
  "size": "small"
@@ -60634,7 +60634,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60634
60634
  on: {
60635
60635
  "click": _vm.resetCachedTableColumns
60636
60636
  }
60637
- }, [_vm._v("重置列宽")]), _c('by-pager', {
60637
+ }, [_vm._v(" 重置列宽 ")]) : _vm._e(), _c('by-pager', {
60638
60638
  attrs: {
60639
60639
  "page": _vm.options.pagerConfig.currentPage,
60640
60640
  "limit": _vm.options.pagerConfig.pageSize,
@@ -60652,7 +60652,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60652
60652
  fn: function () {
60653
60653
  return [_c('div', {
60654
60654
  staticClass: "reset-button"
60655
- }, [_c('el-button', {
60655
+ }, [_vm.showResetCache ? _c('el-button', {
60656
60656
  attrs: {
60657
60657
  "disabled": !_vm.hasCache,
60658
60658
  "size": "small"
@@ -60660,7 +60660,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60660
60660
  on: {
60661
60661
  "click": _vm.resetCachedTableColumns
60662
60662
  }
60663
- }, [_vm._v("重置列宽")])], 1)];
60663
+ }, [_vm._v(" 重置列宽 ")]) : _vm._e()], 1)];
60664
60664
  },
60665
60665
  proxy: true
60666
60666
  }], null, true)
@@ -60678,7 +60678,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60678
60678
  }
60679
60679
  }) : _vm._e()], 1);
60680
60680
  };
60681
- var tablevue_type_template_id_4116d162_scoped_true_staticRenderFns = [];
60681
+ var tablevue_type_template_id_48543288_staticRenderFns = [];
60682
60682
 
60683
60683
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
60684
60684
  var es_array_push = __webpack_require__(4114);
@@ -61224,6 +61224,7 @@ var custom_column_component = normalizeComponent(
61224
61224
 
61225
61225
 
61226
61226
 
61227
+
61227
61228
  /**
61228
61229
  * 判断是否缓存了表格列宽
61229
61230
  * @param {*} name 表格名称
@@ -61267,7 +61268,8 @@ const saveCachedColumns = (name, context) => {
61267
61268
  children: updatedChildren
61268
61269
  });
61269
61270
  }
61270
- } else if (col.field === targetField) {
61271
+ } else if (targetField && targetField !== '' && col.field === targetField) {
61272
+ //如果没设置field不缓存
61271
61273
  result.push({
61272
61274
  field: col.field,
61273
61275
  width: newWidth
@@ -61348,7 +61350,8 @@ const replaceColumnWidthToColumns = (name, columns) => {
61348
61350
  children: processColumnWidth(column.children, (cacheColumn === null || cacheColumn === void 0 ? void 0 : cacheColumn.children) || [])
61349
61351
  };
61350
61352
  }
61351
- const cacheColumn = cacheColumns.find(col => col.field === column.field);
61353
+ const cacheColumn = cacheColumns.filter(col => col.field && col.field !== '') //有设置field才替换width给列
61354
+ .find(col => col.field === column.field);
61352
61355
  return {
61353
61356
  ...column,
61354
61357
  ...((cacheColumn === null || cacheColumn === void 0 ? void 0 : cacheColumn.width) && {
@@ -61403,12 +61406,17 @@ const replaceColumnWidthToColumns = (name, columns) => {
61403
61406
  events: ['keydown', 'current-change', 'radio-change', 'checkbox-change', 'checkbox-all', 'checkbox-range-start', 'checkbox-range-change', 'checkbox-range-end', 'cell-dblclick', 'cell-menu', 'cell-mouseenter', 'cell-mouseleave', 'cell-delete-value', 'header-cell-click', 'header-cell-dblclick', 'header-cell-menu', 'footer-cell-click', 'footer-cell-dblclick', 'footer-cell-menu', 'clear-merge', 'sort-change', 'clear-sort', 'filter-visible', 'filter-change', 'clear-filter', 'toggle-row-expand', 'toggle-tree-expand', 'menu-click', 'cell-selected', 'edit-closed', 'edit-activated', 'edit-disabled', 'valid-error', 'scroll', 'custom', 'page-change', 'form-submit', 'form-submit-invalid', 'form-reset', 'form-collapse', 'proxy-query', 'proxy-delete', 'proxy-save', 'toolbar-button-click', 'toolbar-tool-click', 'zoom'],
61404
61407
  // 自定义对话框显示和隐藏控制
61405
61408
  customTableVisible: false,
61409
+ //是否显示重置列宽(有设置name才显示)
61410
+ showResetCache: false,
61406
61411
  //是否存在缓存
61407
61412
  hasCache: false,
61408
61413
  // 原始列配置
61409
- originalColumns: []
61414
+ originColumns: []
61410
61415
  };
61411
61416
  },
61417
+ mounted() {
61418
+ this.showResetCache = !!this.name;
61419
+ },
61412
61420
  computed: {
61413
61421
  options() {
61414
61422
  const {
@@ -61418,7 +61426,7 @@ const replaceColumnWidthToColumns = (name, columns) => {
61418
61426
  } = this.gridOptions;
61419
61427
 
61420
61428
  //保存原始配置 (确保重置后,恢复到外部传入的配置)
61421
- this.originalColumns = deepClone(columns);
61429
+ this.originColumns = deepClone(columns);
61422
61430
 
61423
61431
  // 使用列宽缓存值(若有)
61424
61432
  const newColumns = replaceColumnWidthToColumns(this.name, columns);
@@ -61500,7 +61508,7 @@ const replaceColumnWidthToColumns = (name, columns) => {
61500
61508
  this.setHasCache();
61501
61509
  if (this.$refs.xGrid) {
61502
61510
  // 直接重新设置列配置
61503
- this.$refs.xGrid.reloadColumn(this.originalColumns);
61511
+ this.$refs.xGrid.reloadColumn(this.originColumns);
61504
61512
  }
61505
61513
  },
61506
61514
  pageChange(values) {
@@ -61526,6 +61534,8 @@ const replaceColumnWidthToColumns = (name, columns) => {
61526
61534
  },
61527
61535
  // 改变表头字段
61528
61536
  changeTableFields(cols) {
61537
+ //保存原始配置 (这里重新更新初始配置列,自定义列时需改动)
61538
+ this.originColumns = deepClone(cols);
61529
61539
  const columns = [];
61530
61540
  cols.forEach(item => {
61531
61541
  if (!columns.some(col => col.field === item.key) && item.type) {
@@ -61595,27 +61605,21 @@ const replaceColumnWidthToColumns = (name, columns) => {
61595
61605
  });
61596
61606
  ;// ./src/components/table/index.vue?vue&type=script&lang=js
61597
61607
  /* harmony default export */ var components_tablevue_type_script_lang_js = (tablevue_type_script_lang_js);
61598
- ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=style&index=0&id=4116d162&prod&lang=scss&scoped=true
61599
- // extracted by mini-css-extract-plugin
61600
-
61601
- ;// ./src/components/table/index.vue?vue&type=style&index=0&id=4116d162&prod&lang=scss&scoped=true
61602
-
61603
61608
  ;// ./src/components/table/index.vue
61604
61609
 
61605
61610
 
61606
61611
 
61607
- ;
61608
61612
 
61609
61613
 
61610
61614
  /* normalize component */
61611
-
61615
+ ;
61612
61616
  var table_component = normalizeComponent(
61613
61617
  components_tablevue_type_script_lang_js,
61614
- tablevue_type_template_id_4116d162_scoped_true_render,
61615
- tablevue_type_template_id_4116d162_scoped_true_staticRenderFns,
61618
+ tablevue_type_template_id_48543288_render,
61619
+ tablevue_type_template_id_48543288_staticRenderFns,
61616
61620
  false,
61617
61621
  null,
61618
- "4116d162",
61622
+ null,
61619
61623
  null
61620
61624
 
61621
61625
  )
@@ -60614,8 +60614,8 @@ var component = normalizeComponent(
60614
60614
  )
60615
60615
 
60616
60616
  /* harmony default export */ var pager = (component.exports);
60617
- ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=4116d162&scoped=true
60618
- var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60617
+ ;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=48543288
60618
+ var tablevue_type_template_id_48543288_render = function render() {
60619
60619
  var _vm = this,
60620
60620
  _c = _vm._self._c;
60621
60621
  return _c('div', [_c('vxe-grid', _vm._g(_vm._b({
@@ -60636,7 +60636,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60636
60636
  fn: function () {
60637
60637
  return [_c('div', {
60638
60638
  staticClass: "pager-container"
60639
- }, [_c('el-button', {
60639
+ }, [_vm.showResetCache ? _c('el-button', {
60640
60640
  attrs: {
60641
60641
  "disabled": !_vm.hasCache,
60642
60642
  "size": "small"
@@ -60644,7 +60644,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60644
60644
  on: {
60645
60645
  "click": _vm.resetCachedTableColumns
60646
60646
  }
60647
- }, [_vm._v("重置列宽")]), _c('by-pager', {
60647
+ }, [_vm._v(" 重置列宽 ")]) : _vm._e(), _c('by-pager', {
60648
60648
  attrs: {
60649
60649
  "page": _vm.options.pagerConfig.currentPage,
60650
60650
  "limit": _vm.options.pagerConfig.pageSize,
@@ -60662,7 +60662,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60662
60662
  fn: function () {
60663
60663
  return [_c('div', {
60664
60664
  staticClass: "reset-button"
60665
- }, [_c('el-button', {
60665
+ }, [_vm.showResetCache ? _c('el-button', {
60666
60666
  attrs: {
60667
60667
  "disabled": !_vm.hasCache,
60668
60668
  "size": "small"
@@ -60670,7 +60670,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60670
60670
  on: {
60671
60671
  "click": _vm.resetCachedTableColumns
60672
60672
  }
60673
- }, [_vm._v("重置列宽")])], 1)];
60673
+ }, [_vm._v(" 重置列宽 ")]) : _vm._e()], 1)];
60674
60674
  },
60675
60675
  proxy: true
60676
60676
  }], null, true)
@@ -60688,7 +60688,7 @@ var tablevue_type_template_id_4116d162_scoped_true_render = function render() {
60688
60688
  }
60689
60689
  }) : _vm._e()], 1);
60690
60690
  };
60691
- var tablevue_type_template_id_4116d162_scoped_true_staticRenderFns = [];
60691
+ var tablevue_type_template_id_48543288_staticRenderFns = [];
60692
60692
 
60693
60693
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
60694
60694
  var es_array_push = __webpack_require__(4114);
@@ -61234,6 +61234,7 @@ var custom_column_component = normalizeComponent(
61234
61234
 
61235
61235
 
61236
61236
 
61237
+
61237
61238
  /**
61238
61239
  * 判断是否缓存了表格列宽
61239
61240
  * @param {*} name 表格名称
@@ -61277,7 +61278,8 @@ const saveCachedColumns = (name, context) => {
61277
61278
  children: updatedChildren
61278
61279
  });
61279
61280
  }
61280
- } else if (col.field === targetField) {
61281
+ } else if (targetField && targetField !== '' && col.field === targetField) {
61282
+ //如果没设置field不缓存
61281
61283
  result.push({
61282
61284
  field: col.field,
61283
61285
  width: newWidth
@@ -61358,7 +61360,8 @@ const replaceColumnWidthToColumns = (name, columns) => {
61358
61360
  children: processColumnWidth(column.children, (cacheColumn === null || cacheColumn === void 0 ? void 0 : cacheColumn.children) || [])
61359
61361
  };
61360
61362
  }
61361
- const cacheColumn = cacheColumns.find(col => col.field === column.field);
61363
+ const cacheColumn = cacheColumns.filter(col => col.field && col.field !== '') //有设置field才替换width给列
61364
+ .find(col => col.field === column.field);
61362
61365
  return {
61363
61366
  ...column,
61364
61367
  ...((cacheColumn === null || cacheColumn === void 0 ? void 0 : cacheColumn.width) && {
@@ -61413,12 +61416,17 @@ const replaceColumnWidthToColumns = (name, columns) => {
61413
61416
  events: ['keydown', 'current-change', 'radio-change', 'checkbox-change', 'checkbox-all', 'checkbox-range-start', 'checkbox-range-change', 'checkbox-range-end', 'cell-dblclick', 'cell-menu', 'cell-mouseenter', 'cell-mouseleave', 'cell-delete-value', 'header-cell-click', 'header-cell-dblclick', 'header-cell-menu', 'footer-cell-click', 'footer-cell-dblclick', 'footer-cell-menu', 'clear-merge', 'sort-change', 'clear-sort', 'filter-visible', 'filter-change', 'clear-filter', 'toggle-row-expand', 'toggle-tree-expand', 'menu-click', 'cell-selected', 'edit-closed', 'edit-activated', 'edit-disabled', 'valid-error', 'scroll', 'custom', 'page-change', 'form-submit', 'form-submit-invalid', 'form-reset', 'form-collapse', 'proxy-query', 'proxy-delete', 'proxy-save', 'toolbar-button-click', 'toolbar-tool-click', 'zoom'],
61414
61417
  // 自定义对话框显示和隐藏控制
61415
61418
  customTableVisible: false,
61419
+ //是否显示重置列宽(有设置name才显示)
61420
+ showResetCache: false,
61416
61421
  //是否存在缓存
61417
61422
  hasCache: false,
61418
61423
  // 原始列配置
61419
- originalColumns: []
61424
+ originColumns: []
61420
61425
  };
61421
61426
  },
61427
+ mounted() {
61428
+ this.showResetCache = !!this.name;
61429
+ },
61422
61430
  computed: {
61423
61431
  options() {
61424
61432
  const {
@@ -61428,7 +61436,7 @@ const replaceColumnWidthToColumns = (name, columns) => {
61428
61436
  } = this.gridOptions;
61429
61437
 
61430
61438
  //保存原始配置 (确保重置后,恢复到外部传入的配置)
61431
- this.originalColumns = deepClone(columns);
61439
+ this.originColumns = deepClone(columns);
61432
61440
 
61433
61441
  // 使用列宽缓存值(若有)
61434
61442
  const newColumns = replaceColumnWidthToColumns(this.name, columns);
@@ -61510,7 +61518,7 @@ const replaceColumnWidthToColumns = (name, columns) => {
61510
61518
  this.setHasCache();
61511
61519
  if (this.$refs.xGrid) {
61512
61520
  // 直接重新设置列配置
61513
- this.$refs.xGrid.reloadColumn(this.originalColumns);
61521
+ this.$refs.xGrid.reloadColumn(this.originColumns);
61514
61522
  }
61515
61523
  },
61516
61524
  pageChange(values) {
@@ -61536,6 +61544,8 @@ const replaceColumnWidthToColumns = (name, columns) => {
61536
61544
  },
61537
61545
  // 改变表头字段
61538
61546
  changeTableFields(cols) {
61547
+ //保存原始配置 (这里重新更新初始配置列,自定义列时需改动)
61548
+ this.originColumns = deepClone(cols);
61539
61549
  const columns = [];
61540
61550
  cols.forEach(item => {
61541
61551
  if (!columns.some(col => col.field === item.key) && item.type) {
@@ -61605,27 +61615,21 @@ const replaceColumnWidthToColumns = (name, columns) => {
61605
61615
  });
61606
61616
  ;// ./src/components/table/index.vue?vue&type=script&lang=js
61607
61617
  /* harmony default export */ var components_tablevue_type_script_lang_js = (tablevue_type_script_lang_js);
61608
- ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=style&index=0&id=4116d162&prod&lang=scss&scoped=true
61609
- // extracted by mini-css-extract-plugin
61610
-
61611
- ;// ./src/components/table/index.vue?vue&type=style&index=0&id=4116d162&prod&lang=scss&scoped=true
61612
-
61613
61618
  ;// ./src/components/table/index.vue
61614
61619
 
61615
61620
 
61616
61621
 
61617
- ;
61618
61622
 
61619
61623
 
61620
61624
  /* normalize component */
61621
-
61625
+ ;
61622
61626
  var table_component = normalizeComponent(
61623
61627
  components_tablevue_type_script_lang_js,
61624
- tablevue_type_template_id_4116d162_scoped_true_render,
61625
- tablevue_type_template_id_4116d162_scoped_true_staticRenderFns,
61628
+ tablevue_type_template_id_48543288_render,
61629
+ tablevue_type_template_id_48543288_staticRenderFns,
61626
61630
  false,
61627
61631
  null,
61628
- "4116d162",
61632
+ null,
61629
61633
  null
61630
61634
 
61631
61635
  )
@@ -328,4 +328,4 @@ var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},n=function(e
328
328
  //! moment.js locale configuration
329
329
  var t=e.defineLocale("ca",{months:{standalone:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}});return t}))},9786:function(e,t,n){var i=n(6903),r=n(6791),a=n(3971),s=n(4632),o=n(3066),l="prototype",u=function(e,t,n){var c,d,h,f=e&u.F,p=e&u.G,m=e&u.S,_=e&u.P,v=e&u.B,g=e&u.W,y=p?r:r[t]||(r[t]={}),b=y[l],w=p?i:m?i[t]:(i[t]||{})[l];for(c in p&&(n=t),n)d=!f&&w&&void 0!==w[c],d&&o(y,c)||(h=d?w[c]:n[c],y[c]=p&&"function"!=typeof w[c]?n[c]:v&&d?a(h,i):g&&w[c]==h?function(e){var t=function(t,n,i){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,i)}return e.apply(this,arguments)};return t[l]=e[l],t}(h):_&&"function"==typeof h?a(Function.call,h):h,_&&((y.virtual||(y.virtual={}))[c]=h,e&u.R&&b&&!b[c]&&s(b,c,h)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,e.exports=u},9813:function(e,t,n){"use strict";n(4114),n(8111),n(7588),t.__esModule=!0;var i=n(9274),r=s(i),a=n(2172);function s(e){return e&&e.__esModule?e:{default:e}}var o=!1,l=!1,u=void 0,c=function(){if(!r.default.prototype.$isServer){var e=h.modalDom;return e?o=!0:(o=!1,e=document.createElement("div"),h.modalDom=e,e.addEventListener("touchmove",(function(e){e.preventDefault(),e.stopPropagation()})),e.addEventListener("click",(function(){h.doOnModalClick&&h.doOnModalClick()}))),e}},d={},h={modalFade:!0,getInstance:function(e){return d[e]},register:function(e,t){e&&t&&(d[e]=t)},deregister:function(e){e&&(d[e]=null,delete d[e])},nextZIndex:function(){return h.zIndex++},modalStack:[],doOnModalClick:function(){var e=h.modalStack[h.modalStack.length-1];if(e){var t=h.getInstance(e.id);t&&t.closeOnClickModal&&t.close()}},openModal:function(e,t,n,i,s){if(!r.default.prototype.$isServer&&e&&void 0!==t){this.modalFade=s;for(var l=this.modalStack,u=0,d=l.length;u<d;u++){var h=l[u];if(h.id===e)return}var f=c();if((0,a.addClass)(f,"v-modal"),this.modalFade&&!o&&(0,a.addClass)(f,"v-modal-enter"),i){var p=i.trim().split(/\s+/);p.forEach((function(e){return(0,a.addClass)(f,e)}))}setTimeout((function(){(0,a.removeClass)(f,"v-modal-enter")}),200),n&&n.parentNode&&11!==n.parentNode.nodeType?n.parentNode.appendChild(f):document.body.appendChild(f),t&&(f.style.zIndex=t),f.tabIndex=0,f.style.display="",this.modalStack.push({id:e,zIndex:t,modalClass:i})}},closeModal:function(e){var t=this.modalStack,n=c();if(t.length>0){var i=t[t.length-1];if(i.id===e){if(i.modalClass){var r=i.modalClass.trim().split(/\s+/);r.forEach((function(e){return(0,a.removeClass)(n,e)}))}t.pop(),t.length>0&&(n.style.zIndex=t[t.length-1].zIndex)}else for(var s=t.length-1;s>=0;s--)if(t[s].id===e){t.splice(s,1);break}}0===t.length&&(this.modalFade&&(0,a.addClass)(n,"v-modal-leave"),setTimeout((function(){0===t.length&&(n.parentNode&&n.parentNode.removeChild(n),n.style.display="none",h.modalDom=void 0),(0,a.removeClass)(n,"v-modal-leave")}),200))}};Object.defineProperty(h,"zIndex",{configurable:!0,get:function(){return l||(u=u||(r.default.prototype.$ELEMENT||{}).zIndex||2e3,l=!0),u},set:function(e){u=e}});var f=function(){if(!r.default.prototype.$isServer&&h.modalStack.length>0){var e=h.modalStack[h.modalStack.length-1];if(!e)return;var t=h.getInstance(e.id);return t}};r.default.prototype.$isServer||window.addEventListener("keydown",(function(e){if(27===e.keyCode){var t=f();t&&t.closeOnPressEscape&&(t.handleClose?t.handleClose():t.handleAction?t.handleAction("cancel"):t.close())}})),t["default"]=h},9821:function(e,t,n){(function(e,t){t(n(6879))})(0,(function(e){"use strict";
330
330
  //! moment.js locale configuration
331
- function t(e,t){var n=e.split("_");return t%10===1&&t%100!==11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,i){var r={ss:n?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:n?"хвіліна_хвіліны_хвілін":"хвіліну_хвіліны_хвілін",hh:n?"гадзіна_гадзіны_гадзін":"гадзіну_гадзіны_гадзін",dd:"дзень_дні_дзён",MM:"месяц_месяцы_месяцаў",yy:"год_гады_гадоў"};return"m"===i?n?"хвіліна":"хвіліну":"h"===i?n?"гадзіна":"гадзіну":e+" "+t(r[i],+e)}var i=e.defineLocale("be",{months:{format:"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),standalone:"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань".split("_")},monthsShort:"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),weekdays:{format:"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),standalone:"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота".split("_"),isFormat:/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/},weekdaysShort:"нд_пн_ат_ср_чц_пт_сб".split("_"),weekdaysMin:"нд_пн_ат_ср_чц_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сёння ў] LT",nextDay:"[Заўтра ў] LT",lastDay:"[Учора ў] LT",nextWeek:function(){return"[У] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мінулую] dddd [ў] LT";case 1:case 2:case 4:return"[У мінулы] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"праз %s",past:"%s таму",s:"некалькі секунд",m:n,mm:n,h:n,hh:n,d:"дзень",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(e){return/^(дня|вечара)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночы":e<12?"раніцы":e<17?"дня":"вечара"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|га)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!==2&&e%10!==3||e%100===12||e%100===13?e+"-ы":e+"-і";case"D":return e+"-га";default:return e}},week:{dow:1,doy:7}});return i}))},9979:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=78)}({0:function(e,t,n){"use strict";function i(e,t,n,i,r,a,s,o){var l,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),a&&(u._scopeId="data-v-"+a),s?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},u._ssrRegister=l):r&&(l=o?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var d=u.beforeCreate;u.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:u}}n.d(t,"a",(function(){return i}))},2:function(e,t){e.exports=n(2172)},3:function(e,t){e.exports=n(5294)},5:function(e,t){e.exports=n(9731)},7:function(e,t){e.exports=n(9274)},78:function(e,t,n){"use strict";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",[n("transition",{attrs:{name:e.transition},on:{"after-enter":e.handleAfterEnter,"after-leave":e.handleAfterLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:!e.disabled&&e.showPopper,expression:"!disabled && showPopper"}],ref:"popper",staticClass:"el-popover el-popper",class:[e.popperClass,e.content&&"el-popover--plain"],style:{width:e.width+"px"},attrs:{role:"tooltip",id:e.tooltipId,"aria-hidden":e.disabled||!e.showPopper?"true":"false"}},[e.title?n("div",{staticClass:"el-popover__title",domProps:{textContent:e._s(e.title)}}):e._e(),e._t("default",[e._v(e._s(e.content))])],2)]),n("span",{ref:"wrapper",staticClass:"el-popover__reference-wrapper"},[e._t("reference")],2)],1)},r=[];i._withStripped=!0;var a=n(5),s=n.n(a),o=n(2),l=n(3),u={name:"ElPopover",mixins:[s.a],props:{trigger:{type:String,default:"click",validator:function(e){return["click","focus","hover","manual"].indexOf(e)>-1}},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:200},title:String,disabled:Boolean,content:String,reference:{},popperClass:String,width:{},visibleArrow:{default:!0},arrowOffset:{type:Number,default:0},transition:{type:String,default:"fade-in-linear"},tabindex:{type:Number,default:0}},computed:{tooltipId:function(){return"el-popover-"+Object(l["generateId"])()}},watch:{showPopper:function(e){this.disabled||(e?this.$emit("show"):this.$emit("hide"))}},mounted:function(){var e=this,t=this.referenceElm=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),t&&(Object(o["addClass"])(t,"el-popover__reference"),t.setAttribute("aria-describedby",this.tooltipId),t.setAttribute("tabindex",this.tabindex),n.setAttribute("tabindex",0),"click"!==this.trigger&&(Object(o["on"])(t,"focusin",(function(){e.handleFocus();var n=t.__vue__;n&&"function"===typeof n.focus&&n.focus()})),Object(o["on"])(n,"focusin",this.handleFocus),Object(o["on"])(t,"focusout",this.handleBlur),Object(o["on"])(n,"focusout",this.handleBlur)),Object(o["on"])(t,"keydown",this.handleKeydown),Object(o["on"])(t,"click",this.handleClick)),"click"===this.trigger?(Object(o["on"])(t,"click",this.doToggle),Object(o["on"])(document,"click",this.handleDocumentClick)):"hover"===this.trigger?(Object(o["on"])(t,"mouseenter",this.handleMouseEnter),Object(o["on"])(n,"mouseenter",this.handleMouseEnter),Object(o["on"])(t,"mouseleave",this.handleMouseLeave),Object(o["on"])(n,"mouseleave",this.handleMouseLeave)):"focus"===this.trigger&&(this.tabindex<0&&console.warn("[Element Warn][Popover]a negative taindex means that the element cannot be focused by tab key"),t.querySelector("input, textarea")?(Object(o["on"])(t,"focusin",this.doShow),Object(o["on"])(t,"focusout",this.doClose)):(Object(o["on"])(t,"mousedown",this.doShow),Object(o["on"])(t,"mouseup",this.doClose)))},beforeDestroy:function(){this.cleanup()},deactivated:function(){this.cleanup()},methods:{doToggle:function(){this.showPopper=!this.showPopper},doShow:function(){this.showPopper=!0},doClose:function(){this.showPopper=!1},handleFocus:function(){Object(o["addClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!0)},handleClick:function(){Object(o["removeClass"])(this.referenceElm,"focusing")},handleBlur:function(){Object(o["removeClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!1)},handleMouseEnter:function(){var e=this;clearTimeout(this._timer),this.openDelay?this._timer=setTimeout((function(){e.showPopper=!0}),this.openDelay):this.showPopper=!0},handleKeydown:function(e){27===e.keyCode&&"manual"!==this.trigger&&this.doClose()},handleMouseLeave:function(){var e=this;clearTimeout(this._timer),this.closeDelay?this._timer=setTimeout((function(){e.showPopper=!1}),this.closeDelay):this.showPopper=!1},handleDocumentClick:function(e){var t=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),this.$el&&t&&!this.$el.contains(e.target)&&!t.contains(e.target)&&n&&!n.contains(e.target)&&(this.showPopper=!1)},handleAfterEnter:function(){this.$emit("after-enter")},handleAfterLeave:function(){this.$emit("after-leave"),this.doDestroy()},cleanup:function(){(this.openDelay||this.closeDelay)&&clearTimeout(this._timer)}},destroyed:function(){var e=this.reference;Object(o["off"])(e,"click",this.doToggle),Object(o["off"])(e,"mouseup",this.doClose),Object(o["off"])(e,"mousedown",this.doShow),Object(o["off"])(e,"focusin",this.doShow),Object(o["off"])(e,"focusout",this.doClose),Object(o["off"])(e,"mousedown",this.doShow),Object(o["off"])(e,"mouseup",this.doClose),Object(o["off"])(e,"mouseleave",this.handleMouseLeave),Object(o["off"])(e,"mouseenter",this.handleMouseEnter),Object(o["off"])(document,"click",this.handleDocumentClick)}},c=u,d=n(0),h=Object(d["a"])(c,i,r,!1,null,null,null);h.options.__file="packages/popover/src/main.vue";var f=h.exports,p=function(e,t,n){var i=t.expression?t.value:t.arg,r=n.context.$refs[i];r&&(Array.isArray(r)?r[0].$refs.reference=e:r.$refs.reference=e)},m={bind:function(e,t,n){p(e,t,n)},inserted:function(e,t,n){p(e,t,n)}},_=n(7),v=n.n(_);v.a.directive("popover",m),f.install=function(e){e.directive("popover",m),e.component(f.name,f)},f.directive=m;t["default"]=f}})}},n={};function i(e){var r=n[e];if(void 0!==r)return r.exports;var a=n[e]={id:e,loaded:!1,exports:{}};return t[e].call(a.exports,a,a.exports,i),a.loaded=!0,a.exports}!function(){i.amdO={}}(),function(){i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,{a:t}),t}}(),function(){i.d=function(e,t){for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}}(),function(){i.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}()}(),function(){i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}}(),function(){i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}}(),function(){i.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e}}(),function(){i.p=""}();var r={};return function(){"use strict";if(i.r(r),i.d(r,{default:function(){return Xe}}),"undefined"!==typeof window){var e=window.document.currentScript,t=e&&e.src.match(/(.+\/)[^/]+\.js(\?.*)?$/);t&&(i.p=t[1])}i(8111),i(7588);var n=function(){var e=this,t=e._self._c;return t("div",{staticClass:"pager fixed bottom-0 right-0 w-full flex justify-center items-center z-50",attrs:{id:"pager"}},[t("el-pagination",{attrs:{"current-page":e.pager["page"],"page-size":e.pager["limit"],"page-sizes":e.pageSizes,background:"",layout:"total, prev, pager, next,sizes, jumper",total:e.totalCount},on:{"size-change":t=>e.handleValueChange(t,"limit"),"current-change":t=>e.handleValueChange(t,"page")}})],1)},a=[],s={name:"BYPager",props:{limit:{type:Number,default:15},page:{type:Number,default:1},totalCount:{type:Number,required:!0,default:25},pageSizes:{type:Array,default:()=>[10,15,20,25,30,50,100]}},data(){return{pager:{page:this.page,limit:this.limit}}},watch:{page:{handler:function(e,t){this.pager.page=e},immediate:!0},limit:{handler:function(e,t){this.pager.limit=e},immediate:!0}},mounted(){document.getElementsByClassName("el-pagination__jump")[0].childNodes[0].nodeValue="跳至",document.getElementsByClassName("el-pagination__jump")[0].childNodes[2].nodeValue=""},methods:{handleValueChange(e,t){if(!e)return;const n={...this.pager,[t]:e,page:"limit"===t?1:e};this.$emit("onChange",n)}}},o=s;function l(e,t,n,i,r,a,s,o){var l,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),a&&(u._scopeId="data-v-"+a),s?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},u._ssrRegister=l):r&&(l=o?function(){r.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var d=u.beforeCreate;u.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:u}}var u=l(o,n,a,!1,null,null,null),c=u.exports,d=function(){var e=this,t=e._self._c;return t("div",[t("vxe-grid",e._g(e._b({ref:"xGrid",on:{"cell-click":e.handleCellClick,"resizable-change":e.handleResizableChange},scopedSlots:e._u([e._l(e.slotMap,(function(t){return{key:t,fn:function(n){return[e._t(t,null,null,n)]}}})),e.options.pagerConfig?{key:"pager",fn:function(){return[t("div",{staticClass:"pager-container"},[t("el-button",{attrs:{disabled:!e.hasCache,size:"small"},on:{click:e.resetCachedTableColumns}},[e._v("重置列宽")]),t("by-pager",{attrs:{page:e.options.pagerConfig.currentPage,limit:e.options.pagerConfig.pageSize,"total-count":e.options.pagerConfig.total,"page-sizes":e.options.pagerConfig.pageSizes},on:{onChange:e.pageChange}})],1)]},proxy:!0}:{key:"pager",fn:function(){return[t("div",{staticClass:"reset-button"},[t("el-button",{attrs:{disabled:!e.hasCache,size:"small"},on:{click:e.resetCachedTableColumns}},[e._v("重置列宽")])],1)]},proxy:!0}],null,!0)},"vxe-grid",e.options,!1),e.eventListeners)),e.gridOptions.customColumnConfig&&e.gridOptions.customColumnConfig.showCustomColumn?t("CustomColumn",{ref:"CustomColumnRef",attrs:{"info-method":e.gridOptions.customColumnConfig.infoMethod,"submit-method":e.gridOptions.customColumnConfig.submitMethod,"dialog-visible":e.customTableVisible},on:{closeDialog:e.closeCustomColumnDialog,changeTable:e.changeTableFields,changeTableGroup:e.changeTableGroupFields}}):e._e()],1)},h=[],f=(i(4114),i(7642),i(8004),i(3853),i(5876),i(2475),i(5024),i(1698),function(){var e=this,t=e._self._c;return t("div",{attrs:{id:"custom_column"}},[t("el-dialog",{attrs:{"close-on-click-modal":!1,visible:e.dialogVisible,width:"920px","append-to-body":!0,"show-close":!1,"custom-class":"custom_dialog_class"},on:{close:e.closeDialog},scopedSlots:e._u([{key:"footer",fn:function(){return[t("el-row",{staticStyle:{"margin-top":"7px"}},[t("el-button",{staticStyle:{width:"96px"},attrs:{size:"small"},on:{click:e.closeDialog}},[e._v("取消")]),t("el-button",{staticStyle:{width:"96px"},attrs:{size:"small",type:"primary"},on:{click:e.submit}},[e._v("确定")])],1)]},proxy:!0}])},[t("div",{staticClass:"el-dialog-box"},[t("div",{staticClass:"left_box"},[t("div",{staticClass:"box_title"},[e._v("数据指标")]),t("div",{staticClass:"row",staticStyle:{"padding-right":"20px"}},[t("div",{staticClass:"cell"},[t("el-input",{staticStyle:{width:"228px","margin-bottom":"10px"},attrs:{placeholder:"搜索指标",size:"medium","prefix-icon":"el-icon-search"},model:{value:e.search,callback:function(t){e.search=t},expression:"search"}})],1),t("el-button",{attrs:{type:"text"},on:{click:e.selectNone}},[e._v("全不选")])],1),t("div",{staticClass:"left_box_body"},[t("div",{staticClass:"left_nav"},[t("ul",e._l(e.checkBoxMenuBySearch,(function(n,i){return t("li",{key:i,class:{active:e.activeId===i},on:{click:function(t){return e.setHighlight(i)}}},[e._v(" "+e._s(n.label)+" ")])})),0)]),t("div",{staticClass:"left_menu"},e._l(e.checkBoxMenuBySearch,(function(n,i){return t("div",{key:i,ref:"tagItem",refInFor:!0},[t("div",{staticClass:"checkbox_title"},[e._v(" "+e._s(n.label)+" ")]),t("el-row",e._l(n.data,(function(n,i){return t("el-col",{key:i,staticStyle:{"margin-bottom":"3px"},attrs:{span:12}},[t("el-checkbox",{on:{change:function(t){return e.changeCheckbox(n.key,n.type)}},model:{value:n.type,callback:function(t){e.$set(n,"type",t)},expression:"each.type"}},[e._v(" "+e._s(n.label)+" ")])],1)})),1)],1)})),0)])]),t("div",{staticClass:"right_box"},[t("div",{staticClass:"drag_box"},[t("el-row",[t("div",{staticClass:"drag_text_box"},[t("span",{staticClass:"drag_title"},[e._v(e._s(`已选指标(${e.number})`))]),t("span",{staticClass:"recover",on:{click:e.recoverDefault}},[e._v("恢复默认")])])]),t("div",{staticClass:"drag_ul"},[t("draggable",{attrs:{"chosen-class":"chosen","force-fallback":"true",animation:"500"},on:{end:e.onEnd},model:{value:e.draggableMenu,callback:function(t){e.draggableMenu=t},expression:"draggableMenu"}},[t("transition-group",e._l(e.draggableMenu,(function(n){return t("div",{directives:[{name:"show",rawName:"v-show",value:n.type,expression:"col.type"}],key:n.key,class:"sort-cut-off"===n.key?"fixedClass":"drag_li_box"},["sort-cut-off"!==n.key?t("div",[t("i",{staticClass:"el-icon-rank icon-box"}),t("span",{staticClass:"drag_li_text"},[e._v(e._s(n.label))])]):e._e(),"sort-cut-off"!==n.key?t("i",{staticClass:"el-icon-close remove",on:{click:function(t){return e.changeCheckbox(n.key,!1)}}}):e._e()])})),0)],1)],1)],1)])])])],1)}),p=[],m=(i(2489),i(116),i(1701),i(3579),i(6906)),_=i.n(m);const v=e=>{let t;if("object"===typeof e)if(Array.isArray(e)){t=[];for(const n in e)t.push(v(e[n]))}else if(null===e)t=null;else if(e.constructor===RegExp)t=e;else{t={};for(const n in e)t[n]=v(e[n])}else t=e;return t};var g={name:"CustomColumn",components:{draggable:_()},props:{dialogVisible:{type:Boolean,default:!1},infoMethod:{type:Function,required:!0,default:()=>{}},submitMethod:{type:Function,required:!0,default:()=>{}}},data(){return{draggableMenu:[],checkBoxMenu:[],activeId:0,id:void 0,page:"",search:""}},computed:{number(){return this.draggableMenu.filter((e=>e.type&&"sort-cut-off"!==e.key)).length},checkBoxMenuBySearch(){return this.search?this.checkBoxMenu.map((e=>{const t=e.data.filter((e=>e.label.includes(this.search)));return{label:e.label,data:t}})).filter((e=>e.data.length>0)):this.checkBoxMenu}},methods:{deepClone:v,async getCustomTableList(e,t){if(!e)throw new Error("缺少表格列接口路径");{this.columnList=this.deepClone(t),this.page=e||"";const n=[],i=await this.infoMethod({page:e});"[]"!==JSON.stringify(i.data)&&(this.id=i.data.id||void 0,i.data.column.forEach((e=>n.push(...e.data)))),this.initTableList(this.deepClone(t),n)}},initTableList(e,t=[]){const n=e=>{const t=[];if(e.forEach((e=>t.push(...e.data))),t.sort(((e,t)=>e.sort-t.sort)),t.some((e=>e.fixed))){let e=0;for(let n=0;n<=t.length;n++){const i=t[n],r=t[n+1];if("left"===i.fixed&&(!r||!r.fixed)){e=n+1;break}}t.splice(e,0,{type:!0,label:"",key:"sort-cut-off",parent:""})}return t};if(t&&t.length>0)e.forEach((e=>{e.data.forEach((n=>{const i=t.find((e=>e.key===n.key))||{};n.type="true"===i.type||!0===i.type,n.sort=i.sort,n.fixed=i.fixed?i.fixed:n.fixed,n.parent={label:e.label}}))})),this.checkBoxMenu=this.deepClone(e),this.draggableMenu=n(this.checkBoxMenu);else{let t=0;e.forEach((e=>{e.data.forEach((n=>{t++,n.type=!0,n.width=n.width?+n.width:0,n.sort=t,n.parent={label:e.label}}))})),this.checkBoxMenu=this.deepClone(e),this.draggableMenu=n(this.checkBoxMenu)}this.$emit("changeTable",this.draggableMenu.filter((e=>"sort-cut-off"!==e.key)).sort(((e,t)=>e.sort-t.sort))),this.$emit("changeTableGroup",this.checkBoxMenu)},selectNone(){this.checkBoxMenu.forEach((e=>e.data.forEach((e=>e.type=!1)))),this.draggableMenu.forEach((e=>{"sort-cut-off"===e.key?e.type=!0:e.type=!1}))},setHighlight(e){this.activeId=e,this.$refs.tagItem&&this.$refs.tagItem[e].scrollIntoView({behavior:"smooth"})},changeCheckbox(e,t){this.draggableMenu.forEach((n=>{n.key===e&&(n.type=t)})),this.checkBoxMenu.forEach((n=>{n.data.forEach((n=>{n.key===e&&(n.type=t)}))}))},recoverDefault(){this.initTableList(this.deepClone(this.columnList))},onEnd(){let e=!0;this.draggableMenu.forEach(((t,n)=>{"sort-cut-off"===t.key&&(e=!1),e?(t.sort=n+1,t.fixed="left"):(t.sort=n,delete t.fixed)}))},async submit(){const e={column:[],id:this.id,page:this.page};this.draggableMenu.forEach((t=>{if("sort-cut-off"!==t.key){const{parent:n,...i}=t,r=e.column.some((e=>e.label===n.label));r?e.column.forEach((e=>{e.label===n.label&&e.data.push(i)})):e.column.push({label:n.label,data:[i]})}})),await this.submitMethod(e);const t=[];e.column.forEach((e=>{t.push(...e.data)})),this.$emit("changeTable",t.sort(((e,t)=>e.sort-t.sort))),this.$emit("changeTableGroup",e.column),this.closeDialog()},closeDialog(){this.search="",this.activeId=0,this.$emit("closeDialog")}}},y=g,b=l(y,f,p,!1,null,null,null),w=b.exports;const k=e=>!!e&&!!localStorage.getItem(e),M=e=>{localStorage.removeItem(e)},x=(e,t)=>{if(!e)return;const n=t.$table.collectColumn,i=D(e),r=(e,t,n)=>{const i=[];for(const a of e)if(a.children){const e=r(a.children,t,n);e.length>0&&i.push({field:a.field,width:n,children:e})}else a.field===t&&i.push({field:a.field,width:n});return i},a=t.column,s=r(n,a.field,a.renderWidth),o=(e,t)=>{const n=[...t];for(const i of e){const e=n.findIndex((e=>e.field===i.field));-1!==e?i.children&&n[e].children?n[e].children=o(i.children,n[e].children):n[e].width=i.width:n.push(i)}return n},l=o(s,i);localStorage.setItem(e,JSON.stringify(l))},D=e=>JSON.parse(localStorage.getItem(e)||"[]"),L=(e,t)=>{if(!e)return t;const n=D(e);if(!n)return t;const i=(e,t)=>e.map((e=>{if(e.children){const n=t.find((t=>t.field===e.field));return{...e,...(null===n||void 0===n?void 0:n.width)&&{width:n.width},children:i(e.children,(null===n||void 0===n?void 0:n.children)||[])}}const n=t.find((t=>t.field===e.field));return{...e,...(null===n||void 0===n?void 0:n.width)&&{width:n.width}}}));return i(t,n)};var S={name:"BYTable",components:{CustomColumn:w},props:{gridOptions:{type:Object,default:()=>{}},name:{type:String,default:""},autoHeight:{type:Boolean,default:!1}},data(){return{events:["keydown","current-change","radio-change","checkbox-change","checkbox-all","checkbox-range-start","checkbox-range-change","checkbox-range-end","cell-dblclick","cell-menu","cell-mouseenter","cell-mouseleave","cell-delete-value","header-cell-click","header-cell-dblclick","header-cell-menu","footer-cell-click","footer-cell-dblclick","footer-cell-menu","clear-merge","sort-change","clear-sort","filter-visible","filter-change","clear-filter","toggle-row-expand","toggle-tree-expand","menu-click","cell-selected","edit-closed","edit-activated","edit-disabled","valid-error","scroll","custom","page-change","form-submit","form-submit-invalid","form-reset","form-collapse","proxy-query","proxy-delete","proxy-save","toolbar-button-click","toolbar-tool-click","zoom"],customTableVisible:!1,hasCache:!1,originalColumns:[]}},computed:{options(){const{customColumnConfig:e,columns:t,...n}=this.gridOptions;this.originalColumns=v(t);const i=L(this.name,t);return this.setHasCache(),{border:!0,resizable:!0,showOverflow:!this.autoHeight,height:550,align:"left",copyFields:[],pagerConfig:!1,emptyText:"暂无数据",loadingConfig:{text:"加载中..."},columns:i,...n,resizableConfig:{minWidth:50,...this.gridOptions.resizableConfig},rowConfig:{height:41,isHover:!0,...this.gridOptions.rowConfig},sortConfig:{remote:!0,trigger:"cell",...this.gridOptions.sortConfig}}},slotMap(){var e,t,n;const i=new Set([]),r=null!==(e=null===(t=this.gridOptions)||void 0===t||null===(n=t.customColumnConfig)||void 0===n?void 0:n.slots)&&void 0!==e?e:[];return this.options.columns.forEach((e=>{if(e.slots){const t=Object.values(e.slots);t.forEach((e=>i.add(e)))}})),[...Array.from(i),...r]},eventListeners(){const e={};return this.events.forEach((t=>{e[t]=e=>this.$emit(t,e)})),e}},methods:{handleCellClick(e){if(this.options.copyFields.includes(e.column.field)){const t=e.cell.outerText;this.copy(t)}this.$emit("cell-click",e)},handleResizableChange(e){this.$emit("resizable-change",e),x(this.name,e),this.setHasCache()},setHasCache(){this.hasCache=k(this.name)},resetCachedTableColumns(){M(this.name),this.setHasCache(),this.$refs.xGrid&&this.$refs.xGrid.reloadColumn(this.originalColumns)},pageChange(e){this.$emit("page-change",e)},copy(e){const t=document.createElement("input");t.value=e,document.body.appendChild(t),t.select(),document.execCommand("Copy"),this.$message({message:"复制成功",type:"success"}),t.remove()},getCustomColumnRef(){return this.$refs.CustomColumnRef},handleOpenCustomColumn(){this.customTableVisible=!0},changeTableFields(e){const t=[];e.forEach((e=>{!t.some((t=>t.field===e.key))&&e.type&&t.push({field:e.key,title:e.label,minWidth:e.minWidth||e.width,maxWidth:e.maxWidth,sortable:"undefined"===typeof e.sortable||JSON.parse(e.sortable),fixed:e.fixed,slots:this.gridOptions.customColumnConfig.slots.includes(e.key)?{default:e.key}:void 0})}));const n=L(this.name,t);this.setHasCache(),this.$emit("setColumn",n)},changeTableGroupFields(e){const t=e=>{const n=[];return e.forEach(((i,r)=>{i.data&&i.data.length>0?(n.push({title:i.label,align:"center",children:t(i.data)}),r<e.length-1&&n.push({title:"",width:5,headerClassName:"group-split",className:"group-split"})):!n.some((e=>e.field===i.key))&&i.type&&n.push({field:i.key,title:i.label,minWidth:i.minWidth||i.width,maxWidth:i.maxWidth,sortable:"undefined"===typeof i.sortable||JSON.parse(i.sortable),fixed:i.fixed,slots:this.gridOptions.customColumnConfig.slots.includes(i.key)?{default:i.key}:void 0})})),n};this.$emit("setGroupColumn",t(e))},closeCustomColumnDialog(){this.customTableVisible=!1}}},C=S,T=l(C,d,h,!1,null,"4116d162",null),Y=T.exports,O=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-form"},[t("div",{staticClass:"header"},[e._t("header")],2),t("el-form",{ref:"formRef",staticClass:"myForm",attrs:{"label-position":e.labelPosition,rules:e.rules,"label-width":e.labelWidth,inline:e.inline,model:e.value,"label-suffix":":"},nativeOn:{submit:function(t){return t.preventDefault(),e.submit.apply(null,arguments)},reset:function(t){return t.preventDefault(),e.reset.apply(null,arguments)}}},[t("el-row",[e._l(e.formItems,(function(n){var i,r,a;return[n.isHidden?e._e():t("el-col",e._b({directives:[{name:"show",rawName:"v-show",value:e.showFold(n),expression:"showFold(item)"}],key:n.label},"el-col",n.colLayout||e.colLayout,!1),[t("el-form-item",{style:n.itemStyle||e.itemStyle,attrs:{label:n.label||"",rules:n.rules,prop:n.field,"label-width":n.labelWidth||e.labelWidth}},["input"===n.type||"password"===n.type?[t("el-input",e._b({staticStyle:{width:"100%"},attrs:{placeholder:n.placeholder,clearable:"","show-password":"password"===n.type,value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-input",n.otherOptions,!1),[n.otherOptions&&n.otherOptions.isPrefix?e._t("prefix",(function(){return["select"===n.otherOptions.prefixType?t("el-select",{style:{width:"100px"},attrs:{slot:"prepend",value:e.value[`${n.otherOptions.prefixField}`],placeholder:"请选择"},on:{input:function(t){return e.handleValueChange(t,n.otherOptions)}},slot:"prepend"},e._l(n.otherOptions.prefixOption,(function(e){return t("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1):e._e()]})):e._e(),e._t("suffix"),e._t("prepend"),e._t("append")],2)]:"select"===n.type?[t("by-select",e._b({staticStyle:{width:"100%"},attrs:{value:e.value[`${n.field}`],config:n,clearable:"",filterable:"",size:e.elSize,options:n.options},on:{input:function(t){return e.handleValueChange(t,n)}}},"by-select",n.otherOptions,!1)),e._t(n.field)]:"datepicker"===n.type?[t("el-date-picker",e._b({staticStyle:{width:"100%"},attrs:{placeholder:n.placeholder,value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-date-picker",n.otherOptions,!1))]:"cascader"===n.type?[t("el-cascader",e._b({staticStyle:{width:"100%"},attrs:{placeholder:n.placeholder,options:n.options,clearable:"",filterable:"",value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-cascader",n.otherOptions,!1))]:"switch"===n.type?[t("el-switch",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-switch",n.otherOptions,!1))]:"radioGroup"===n.type?["button"===n.cGOptions.type?t("el-radio-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-radio-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-radio-button",{key:n.value,attrs:{label:n.value,disabled:!!n.disabled}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e(),"checkbox"===n.cGOptions.type?t("el-radio-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-radio-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-radio",{key:n.value,attrs:{label:n.value,disabled:!!n.disabled}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e()]:"checkboxGroup"===n.type?["button"===n.cGOptions.type?t("el-checkbox-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-checkbox-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-checkbox-button",{key:n.value,attrs:{label:n.value}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e(),"checkbox"===n.cGOptions.type?t("el-checkbox-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-checkbox-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-checkbox",{key:n.value,attrs:{label:n.value}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e()]:"text"===n.type?[e._t(n.slotName,(function(){return[t("div",[e._v(e._s(`${n.defaultValue}`))])]}))]:"pairNumberInput"===n.type?[t("PairNumberInput",{attrs:{value:e.value[`${n.field}`],"earliest-placeholder":n.earliestPlaceholder,"latest-placeholder":n.latestPlaceholder},on:{input:function(t){return e.handleValueChange(t,n)}}})]:"customDatePicker"===n.type?[t("CustomDatePicker",e._b({attrs:{value:e.value[`${n.field}`]},on:{input:function(t){return e.handleValueChange(t,n)},"range-change":function(t){return e.handleRangeChange(t,n)}}},"CustomDatePicker",n,!1))]:"custom"===n.type?[e._t(n.field,null,{row:n})]:"search"===n.type?[t("el-button",e._b({attrs:{size:e.elSize||"mini",type:"primary",icon:"el-icon-search"},on:{click:e.handleQueryClick}},"el-button",null!==(i=n.otherOptions)&&void 0!==i?i:{},!1),[e._v(" "+e._s((n.otherOptions||{}).text||"搜索")+" ")])]:"formButtons"===n.type?[n.otherOptions&&!1===n.otherOptions.reset?e._e():t("el-button",e._b({attrs:{"native-type":"reset",size:e.elSize||"mini"}},"el-button",null!==(r=n.otherOptions)&&void 0!==r?r:{},!1),[e._v(" "+e._s((n.otherOptions||{}).resetText||"重置")+" ")]),n.otherOptions&&!1===n.otherOptions.submit?e._e():t("el-button",e._b({attrs:{"native-type":"submit",size:e.elSize||"mini",type:"primary",icon:n.otherOptions&&!1===n.otherOptions.showSubmitIcon?"":"el-icon-search"}},"el-button",null!==(a=n.otherOptions)&&void 0!==a?a:{},!1),[e._v(" "+e._s((n.otherOptions||{}).submitText||"搜索")+" ")])]:e._e()],2)],1)]})),e._t("btn",null,{formData:e.formData})],2)],1),t("div",{staticClass:"footer"},[e._t("footer")],2)],1)},E=[],j=function(){var e=this,t=e._self._c;return t("div",{staticClass:"w-full flex"},[t("el-input",{staticClass:"w-1/2",attrs:{value:e.value[0],placeholder:e.earliestPlaceholder},on:{input:t=>e.handleInput(t,"min"),blur:t=>e.handleBlur(+t.target.value,"min")}}),t("span",[e._v("~")]),t("el-input",{staticClass:"w-1/2",attrs:{value:e.value[1],placeholder:e.latestPlaceholder},on:{input:t=>e.handleInput(t,"max"),blur:t=>e.handleBlur(+t.target.value,"max")}})],1)},P=[],$={props:{value:{type:Array,required:!0,default:()=>["",0]},earliestPlaceholder:{type:String,default:""},latestPlaceholder:{type:String,default:""}},methods:{handleInput(e,t){if("min"===t){const t=[e.replace(/\D+/,""),this.value[1]];this.$emit("input",t)}else if("max"===t){const t=[this.value[0],e.replace(/\D+/,"")];this.$emit("input",t)}},handleBlur(e,t){if("min"===t){if(e>this.value[1]){const e=[this.value[1],this.value[1]];this.$emit("input",e)}}else if("max"===t&&e<this.value[0]){const e=[this.value[0],this.value[0]];this.$emit("input",e)}}}},N=$,I=l(N,j,P,!1,null,null,null),H=I.exports,A=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-picker wrapper"},[t("el-date-picker",e._b({staticStyle:{width:"70%"},attrs:{value:e.value},on:{input:e.handleChange}},"el-date-picker",e.dateOptions,!1)),t("div",{staticClass:"btn"},e._l(e.shortcuts,(function(n){return t("span",{key:n.key,staticClass:"item",class:{item_active:n.key===e.active},on:{click:function(t){return e.handleClick(n)}}},[e._v(" "+e._s(n.label)+" ")])})),0)],1)},F=[],z=i(6879),V=i.n(z),W={props:{value:{type:[Array,String],required:!0,default:()=>[]},otherOption:{type:Object,default:()=>({startPlaceholder:"开始时间",endPlaceholder:"结束时间",type:"daterange",rangeSeparator:"-",size:"mini",active:""})},startTimeField:{type:String,default:""},endTimeField:{type:String,default:""}},data(){return{shortcuts:[{label:"上月",start_time:V()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:V()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:V()().subtract(1,"days").format("YYYY-MM-DD"),end_time:V()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:V()().startOf("day").format("YYYY-MM-DD"),end_time:V()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:V()().startOf("week").format("YYYY-MM-DD"),end_time:V()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:V()().startOf("month").format("YYYY-MM-DD"),end_time:V()().endOf("month").format("YYYY-MM-DD"),key:"month"}],active:""}},computed:{dateOptions(){return{startPlaceholder:"开始时间",endPlaceholder:"结束时间",type:"daterange",rangeSeparator:"至",size:"mini",active:"",...this.otherOption}}},watch:{value:{handler(e,t){if(e&&e.length)this.active="",this.shortcuts.forEach((t=>{t.start_time===e[0]&&t.end_time===e[1]&&(this.active=t.key)}));else{this.active=this.dateOptions.active;const e=this.shortcuts.find((e=>e.key===this.dateOptions.active))||{};e.start_time&&e.end_time&&this.handleClick(e)}},immediate:!0}},methods:{handleChange(e){if(e){const t=e.map((e=>V()(e).format("YYYY-MM-DD")));this.$emit("input",t),this.startTimeField&&this.endTimeField&&this.$emit("range-change",{startTime:t[0],endTime:t[1]})}else this.$emit("input",[]),this.startTimeField&&this.endTimeField&&this.$emit("range-change",{startTime:"",endTime:""});this.active=""},handleClick(e){this.active=e.key,this.$emit("input",[e.start_time,e.end_time]),this.startTimeField&&this.endTimeField&&this.$emit("range-change",{startTime:e.start_time,endTime:e.end_time})}}},R=W,B=l(R,A,F,!1,null,null,null),q=B.exports,U={name:"ByForm",components:{PairNumberInput:H,CustomDatePicker:q},props:{value:{type:Object,required:!0},labelPosition:{type:String,default:"right"},formItems:{type:Array,default:()=>[]},flexible:{type:Object,default:()=>({foldField:"none",unfold:!1})},labelWidth:{type:String,default:"100px"},itemStyle:{type:Object,default:()=>({padding:"10px 40px"})},colLayout:{type:Object,default:()=>({xl:4,lg:6,md:6,sm:8,xs:12})},isFlexible:{type:Boolean,default:!0},inline:{type:Boolean,default:!1},rules:{type:Object,default:()=>{}},elSize:{type:String,default:"mini"}},data(){return{formData:this.value,replacementData:void 0,initialValues:{...this.value}}},computed:{showFold(){return e=>!!this.isFlexible||(!this.flexible||!this.flexible.foldField.length||!this.flexible.foldField.includes(e.id)&&!this.flexible.foldField.includes(e.field))}},watch:{value:{handler(e,t){this.formData=e,this.replacementData={...this.replacementData?this.replacementData:{},...e}},deep:!0,immediate:!0}},methods:{validate(e=()=>{}){this.$refs.formRef.validate(((t,n)=>{e(t,n)}))},clearValidate(){this.$refs.formRef.clearValidate()},handleValueChange(e,t){this.replacementData?this.replacementData[t.field]=e:this.replacementData={...this.value,[t.field]:e},this.$emit("change",{...t,value:e}),this.$emit("input",this.replacementData)},handleRangeChange({startTime:e,endTime:t},n){n.startTimeField&&n.endTimeField&&(this.replacementData?(this.replacementData[n.startTimeField]=e,this.replacementData[n.endTimeField]=t):this.replacementData={...this.value,[n.startTimeField]:e,[n.endTimeField]:t},this.$emit("input",this.replacementData))},handleQueryClick(){this.$emit("queryBtnClick")},submit(){this.$refs.formRef.validate((e=>{if(!e)return!1;this.$emit("submit",this.formData)}))},reset(){this.$refs.formRef.resetFields(),this.$emit("input",{...this.initialValues}),this.$emit("reset")}}},G=U,K=l(G,O,E,!1,null,null,null),J=K.exports,X=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-page-search"},[t("by-form",e._b({attrs:{value:e.formData,"is-flexible":e.unfold},on:{input:e.handleInput,change:e.handleChange,queryBtnClick:e.handleQueryClick,submit:e.submit,reset:e.reset},scopedSlots:e._u([{key:"header",fn:function(){return[e._t("header")]},proxy:!0},{key:"footer",fn:function(){return[e.isShowUnfoldBtn?t("div",{staticClass:"fold"},[t("by-fold-search",{on:{change:e.handleFlexible}})],1):e._e()]},proxy:!0},e._l(e.getCustomItem,(function(t){return{key:t,fn:function(){return[e._t(t)]},proxy:!0}}))],null,!0)},"by-form",e.searchFormConfig,!1))],1)},Z=[],Q={props:{searchFormConfig:{type:Object,required:!0,default:()=>{}},value:{type:Object,default:()=>{}}},data(){var e,t;return{formItems:null!==(e=null===(t=this.searchFormConfig)||void 0===t?void 0:t.formItems)&&void 0!==e?e:[],formOriginData:{},formData:{},unfold:!1}},computed:{isShowUnfoldBtn(){var e,t,n,i;const r=null!==(e=null===(t=this.searchFormConfig)||void 0===t?void 0:t.formItems)&&void 0!==e?e:[],a=null!==(n=null===(i=this.searchFormConfig)||void 0===i?void 0:i.flexible)&&void 0!==n?n:void 0;return!!a&&r.length>a.foldField.length},getCustomItem(){return this.formItems.filter((e=>"custom"===e.type)).map((e=>e.field))}},watch:{value:{handler(e,t){this.formData=e},deep:!0,immediate:!0}},mounted(){var e,t;this.formOriginData=this.value,this.unfold=null!==(e=null===(t=this.searchFormConfig.flexible)||void 0===t?void 0:t.unfold)&&void 0!==e&&e},methods:{handleResetClick(){this.formData={...this.formOriginData},this.$emit("input",{...this.formOriginData}),this.$emit("resetBtnClick")},handleQueryClick(){this.$emit("queryBtnClick")},handleFlexible(){this.unfold=!this.unfold},handleInput(e){this.formData=e,this.$emit("input",{...this.formData})},handleChange(e){this.$emit("change",e)},submit(){this.$emit("submit",this.formData)},reset(){this.$emit("reset")}}},ee=Q,te=l(ee,X,Z,!1,null,null,null),ne=te.exports,ie=function(){var e=this,t=e._self._c;return t("div",{staticClass:"drawer_query_btn b-fold-search"},[t("div",{on:{click:e.drawer}},[1==e.show?[t("span",{staticStyle:{color:"#3aa1ff","vertical-align":"middle"}},[e._v("收起")]),e._v("    "),t("img",{staticStyle:{"vertical-align":"middle"},attrs:{src:"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyBjbGFzcz0iaWNvbiIgd2lkdGg9IjIwMHB4IiBoZWlnaHQ9IjIwMC4wMHB4IiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzVjYWRmZiIgZD0iTTg3Ny41IDU2NS45bC0zNjcuNi0zNDAtMzY3LjYgMzQwYy0yMi41IDE0LjUtNTIuNSAxNC41LTY3LjUgMC0xNS0yMS43LTE1LTUwLjcgMC02NS4xTDQ5NSAxMTcuNWMwLTcuMiA3LjUtNy4yIDE1LTcuMnM3LjUgMCAxNSA3LjJsNDIwLjIgMzgzLjNjMjIuNSAyMS43IDE1IDUwLjYgMCA2NS4xLTIyLjcgMTQuNS01Mi43IDE0LjUtNjcuNyAwek00OTQuOCA0NTAuMWMwLTcuMiA3LjUtNy4yIDE1LTcuMnMxNSAwIDE1IDcuMkw5NDUgODMzLjRjMjIuNSAyMS43IDE1IDUwLjYgMCA2NS4xLTIyLjUgMTQuNC01Mi41IDE0LjQtNjcuNSAwTDUwOS44IDU1OC42IDE0Mi4yIDkwNS44Yy0yMi41IDE0LjUtNTIuNSAxNC41LTY3LjUgMC0xNS0yMS43LTE1LTUwLjcgMC02NS4xbDQyMC4xLTM5MC42eiBtMCAwIiAvPjwvc3ZnPg==",alt:"收起"}})]:[t("span",{staticStyle:{color:"#3aa1ff","vertical-align":"middle"}},[e._v("展开更多")]),e._v("    "),t("img",{staticStyle:{"vertical-align":"middle"},attrs:{src:"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyBjbGFzcz0iaWNvbiIgd2lkdGg9IjIwMHB4IiBoZWlnaHQ9IjIwMC4wMHB4IiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzVjYWRmZiIgZD0iTTE0NS40IDQ2MS4xbDM2Ny42IDM0MCAzNjcuNi0zNDBjMjIuNS0xNC41IDUyLjUtMTQuNSA2Ny41IDAgMTUgMjEuNyAxNSA1MC43IDAgNjUuMUw1MjcuOSA5MDkuNWMwIDcuMi03LjUgNy4yLTE1IDcuMnMtNy41IDAtMTUtNy4yTDc3LjcgNTI2LjJjLTIyLjUtMjEuNy0xNS01MC42IDAtNjUuMSAyMi42LTE0LjUgNTIuNi0xNC41IDY3LjcgMHpNNTI4IDU3Ni45YzAgNy4yLTcuNSA3LjItMTUgNy4ycy0xNSAwLTE1LTcuMkw3Ny44IDE5My42Yy0yMi41LTIxLjctMTUtNTAuNiAwLTY1LjEgMjIuNS0xNC40IDUyLjUtMTQuNCA2Ny41IDBMNTEzIDQ2OC40bDM2Ny42LTM0Ny4yYzIyLjUtMTQuNSA1Mi41LTE0LjUgNjcuNSAwIDE1IDIxLjcgMTUgNTAuNyAwIDY1LjFMNTI4IDU3Ni45eiBtMCAwIiAvPjwvc3ZnPg==",alt:"展开更多"}})]],2)])},re=[],ae={data(){return{show:!1}},methods:{drawer(e){this.show=!this.show,this.$emit("change",this.show)}}},se=ae,oe=l(se,ie,re,!1,null,null,null),le=oe.exports,ue=function(){var e=this,t=e._self._c;return t("el-select",e._b({ref:"selection",attrs:{value:e.value,placeholder:e.config.placeholder||"请选择"},on:{change:e.change,"visible-change":e.visibleChange,"remove-tag":e.removeTag,clear:e.clear,blur:e.blur,focus:e.focus}},"el-select",e.$props,!1),["group"===e.config.mode?e._l(e.item.options,(function(n){return t("el-option-group",{key:n[e.config.optionValue||"value"],attrs:{label:n[e.config.optionLabel||"label"]}},e._l(n.options,(function(n){return t("el-option",{key:n[e.config.optionValue||"value"],attrs:{label:n[e.config.optionLabel||"label"],value:n[e.config.optionValue||"value"]}})})),1)})):e._l(e.filterData,(function(n){return t("el-option",{key:n[e.config.optionValue||"value"]+"-"+n[e.config.optionLabel||"label"],attrs:{label:n[e.config.optionLabel||"label"],value:n[e.config.optionValue||"value"]}})}))],2)},ce=[],de=i(7822),he={name:"BYSelect",props:{...de.Select.props,value:{type:[String,Number,Array]},placeholder:{type:String,default:"请选择"},options:{type:Array,default:()=>[]},config:{type:Object,default:null}},data(){return{searchVal:"",filterData:[]}},watch:{options:{handler(){this.filterData=this.options},deep:!0,immediate:!0}},methods:{change(e){this.$emit("change",1===arguments.length?e:arguments),this.$emit("input",e)},input(e){this.$emit("change",1===arguments.length?e:arguments),this.$emit("input",e)},visibleChange(e){this.$emit("visible-change",1===arguments.length?e:arguments)},removeTag(e){this.$emit("remove-tag",1===arguments.length?e:arguments)},clear(e){this.$emit("clear",1===arguments.length?e:arguments)},blur(e){this.$emit("blur",1===arguments.length?e:arguments)},focus(e){this.multiple&&this.searchNoReset(),this.$emit("blur",1===arguments.length?e:arguments)},searchNoReset(){this.$refs.selection.$refs.input.blur=()=>{this.filterData=this.options},this.$refs.selection.$refs.input.onkeyup=()=>{this.filterData=this.options,this.searchVal=this.$refs.selection.$refs.input.value,this.filterData=this.options.filter((e=>-1!==e[this.config.optionLabel].indexOf(this.searchVal)))}}}},fe=he,pe=l(fe,ue,ce,!1,null,null,null),me=pe.exports,_e=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-picker wrapper"},[t("el-date-picker",{staticStyle:{width:"70%"},attrs:{"start-placeholder":e.config.startPlaceholder||"开始时间","end-placeholder":e.config.endPlaceholder||"结束时间","range-separator":e.config.rangeSeparator||"-",size:e.config.size||"mini",type:"daterange"},on:{input:e.handleChange},model:{value:e.value[e.config.field],callback:function(t){e.$set(e.value,e.config.field,t)},expression:"value[config.field]"}}),t("div",{staticClass:"btn"},e._l(e.shortcuts,(function(n){return t("span",{key:n.key,staticClass:"item",class:{item_active:n.key===e.active},on:{click:function(t){return e.handleClick(n)}}},[e._v(" "+e._s(n.label)+" ")])})),0)],1)},ve=[],ge={name:"ByDatePickerRange",props:{value:{type:Object,default:null},config:{type:Object,default:null}},data(){return{shortcuts:[{label:"上月",start_time:V()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:V()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:V()().subtract(1,"days").format("YYYY-MM-DD"),end_time:V()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:V()().startOf("day").format("YYYY-MM-DD"),end_time:V()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:V()().startOf("week").format("YYYY-MM-DD"),end_time:V()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:V()().startOf("month").format("YYYY-MM-DD"),end_time:V()().endOf("month").format("YYYY-MM-DD"),key:"month"}],active:""}},mounted(){this.active=this.config.active||"today";const e=this.shortcuts.find((e=>e.key===this.active))||{};e.start_time&&e.end_time&&this.handleClick(e)},methods:{handleChange(e){e?this.$emit("input",e.map((e=>V()(e).format("YYYY-MM-DD")))):this.$emit("input",[]),this.active=""},handleClick(e){this.active=e.key,this.value[this.config.field]=[e.start_time,e.end_time],this.$emit("input",[e.start_time,e.end_time])}}},ye=ge,be=l(ye,_e,ve,!1,null,null,null),we=be.exports,ke=null,Me=null,xe=null,De="z-index-manage",Le=null,Se="z-index-style",Ce="m",Te="s",Ye={m:1e3,s:1e3};function Oe(){return ke||"undefined"!==typeof document&&(ke=document),ke}function Ee(){return ke&&!Me&&(Me=ke.body||ke.getElementsByTagName("body")[0]),Me}function je(){var e=0,t=Oe();if(t){var n=Ee();if(n)for(var i=n.getElementsByTagName("*"),r=0;r<i.length;r++){var a=i[r];if(a&&a.style&&1===a.nodeType){var s=a.style.zIndex;s&&/^\d+$/.test(s)&&(e=Math.max(e,Number(s)))}}}return e}function Pe(){if(!Le){var e=Oe();e&&(Le=e.getElementById(Se),Le||(Le=e.createElement("style"),Le.id=Se,e.getElementsByTagName("head")[0].appendChild(Le)))}return Le}function $e(){var e=Pe();if(e){var t="--dom-",n="-z-index";e.innerHTML=":root{"+t+"main"+n+":"+Fe()+";"+t+"sub"+n+":"+Re()+"}"}}function Ne(){if(!xe){var e=Oe();if(e&&(xe=e.getElementById(De),!xe)){var t=Ee();t&&(xe=e.createElement("div"),xe.id=De,xe.style.display="none",t.appendChild(xe),He(Ye.m),Ve(Ye.s))}}return xe}function Ie(e){return function(t){if(t){t=Number(t),Ye[e]=t;var n=Ne();n&&(n.dataset?n.dataset[e]=t+"":n.setAttribute("data-"+e,t+""))}return $e(),Ye[e]}}var He=Ie(Ce);function Ae(e,t){return function(n){var i,r=Ne();if(r){var a=r.dataset?r.dataset[e]:r.getAttribute("data-"+e);a&&(i=Number(a))}return i||(i=Ye[e]),n?Number(n)<i?t():n:i}}var Fe=Ae(Ce,ze);function ze(){return He(Fe()+1)}var Ve=Ie(Te),We=Ae(Te,Be);function Re(){return Fe()+We()}function Be(){return Ve(We()+1),Re()}var qe={setCurrent:He,getCurrent:Fe,getNext:ze,setSubCurrent:Ve,getSubCurrent:Re,getSubNext:Be,getMax:je};$e();var Ue=qe;const Ge={ByPager:c,ByTable:Y,ByForm:J,ByPageSearch:ne,ByFoldSearch:le,BySelect:me,ByDatePickerRange:we};Ue.setCurrent(99999);const Ke=e=>{Object.keys(Ge).forEach((t=>{e.component(t,Ge[t])}))};"undefined"!==typeof window&&window.Vue&&Ke(window.Vue);var Je={install:Ke},Xe=Je}(),r}()}));
331
+ function t(e,t){var n=e.split("_");return t%10===1&&t%100!==11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,i){var r={ss:n?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:n?"хвіліна_хвіліны_хвілін":"хвіліну_хвіліны_хвілін",hh:n?"гадзіна_гадзіны_гадзін":"гадзіну_гадзіны_гадзін",dd:"дзень_дні_дзён",MM:"месяц_месяцы_месяцаў",yy:"год_гады_гадоў"};return"m"===i?n?"хвіліна":"хвіліну":"h"===i?n?"гадзіна":"гадзіну":e+" "+t(r[i],+e)}var i=e.defineLocale("be",{months:{format:"студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня".split("_"),standalone:"студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань".split("_")},monthsShort:"студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж".split("_"),weekdays:{format:"нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу".split("_"),standalone:"нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота".split("_"),isFormat:/\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/},weekdaysShort:"нд_пн_ат_ср_чц_пт_сб".split("_"),weekdaysMin:"нд_пн_ат_ср_чц_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., HH:mm",LLLL:"dddd, D MMMM YYYY г., HH:mm"},calendar:{sameDay:"[Сёння ў] LT",nextDay:"[Заўтра ў] LT",lastDay:"[Учора ў] LT",nextWeek:function(){return"[У] dddd [ў] LT"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[У мінулую] dddd [ў] LT";case 1:case 2:case 4:return"[У мінулы] dddd [ў] LT"}},sameElse:"L"},relativeTime:{future:"праз %s",past:"%s таму",s:"некалькі секунд",m:n,mm:n,h:n,hh:n,d:"дзень",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночы|раніцы|дня|вечара/,isPM:function(e){return/^(дня|вечара)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночы":e<12?"раніцы":e<17?"дня":"вечара"},dayOfMonthOrdinalParse:/\d{1,2}-(і|ы|га)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e%10!==2&&e%10!==3||e%100===12||e%100===13?e+"-ы":e+"-і";case"D":return e+"-га";default:return e}},week:{dow:1,doy:7}});return i}))},9979:function(e,t,n){e.exports=function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(i,r,function(t){return e[t]}.bind(null,r));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/dist/",n(n.s=78)}({0:function(e,t,n){"use strict";function i(e,t,n,i,r,a,s,o){var l,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),a&&(u._scopeId="data-v-"+a),s?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},u._ssrRegister=l):r&&(l=o?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var d=u.beforeCreate;u.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:u}}n.d(t,"a",(function(){return i}))},2:function(e,t){e.exports=n(2172)},3:function(e,t){e.exports=n(5294)},5:function(e,t){e.exports=n(9731)},7:function(e,t){e.exports=n(9274)},78:function(e,t,n){"use strict";n.r(t);var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",[n("transition",{attrs:{name:e.transition},on:{"after-enter":e.handleAfterEnter,"after-leave":e.handleAfterLeave}},[n("div",{directives:[{name:"show",rawName:"v-show",value:!e.disabled&&e.showPopper,expression:"!disabled && showPopper"}],ref:"popper",staticClass:"el-popover el-popper",class:[e.popperClass,e.content&&"el-popover--plain"],style:{width:e.width+"px"},attrs:{role:"tooltip",id:e.tooltipId,"aria-hidden":e.disabled||!e.showPopper?"true":"false"}},[e.title?n("div",{staticClass:"el-popover__title",domProps:{textContent:e._s(e.title)}}):e._e(),e._t("default",[e._v(e._s(e.content))])],2)]),n("span",{ref:"wrapper",staticClass:"el-popover__reference-wrapper"},[e._t("reference")],2)],1)},r=[];i._withStripped=!0;var a=n(5),s=n.n(a),o=n(2),l=n(3),u={name:"ElPopover",mixins:[s.a],props:{trigger:{type:String,default:"click",validator:function(e){return["click","focus","hover","manual"].indexOf(e)>-1}},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:200},title:String,disabled:Boolean,content:String,reference:{},popperClass:String,width:{},visibleArrow:{default:!0},arrowOffset:{type:Number,default:0},transition:{type:String,default:"fade-in-linear"},tabindex:{type:Number,default:0}},computed:{tooltipId:function(){return"el-popover-"+Object(l["generateId"])()}},watch:{showPopper:function(e){this.disabled||(e?this.$emit("show"):this.$emit("hide"))}},mounted:function(){var e=this,t=this.referenceElm=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),t&&(Object(o["addClass"])(t,"el-popover__reference"),t.setAttribute("aria-describedby",this.tooltipId),t.setAttribute("tabindex",this.tabindex),n.setAttribute("tabindex",0),"click"!==this.trigger&&(Object(o["on"])(t,"focusin",(function(){e.handleFocus();var n=t.__vue__;n&&"function"===typeof n.focus&&n.focus()})),Object(o["on"])(n,"focusin",this.handleFocus),Object(o["on"])(t,"focusout",this.handleBlur),Object(o["on"])(n,"focusout",this.handleBlur)),Object(o["on"])(t,"keydown",this.handleKeydown),Object(o["on"])(t,"click",this.handleClick)),"click"===this.trigger?(Object(o["on"])(t,"click",this.doToggle),Object(o["on"])(document,"click",this.handleDocumentClick)):"hover"===this.trigger?(Object(o["on"])(t,"mouseenter",this.handleMouseEnter),Object(o["on"])(n,"mouseenter",this.handleMouseEnter),Object(o["on"])(t,"mouseleave",this.handleMouseLeave),Object(o["on"])(n,"mouseleave",this.handleMouseLeave)):"focus"===this.trigger&&(this.tabindex<0&&console.warn("[Element Warn][Popover]a negative taindex means that the element cannot be focused by tab key"),t.querySelector("input, textarea")?(Object(o["on"])(t,"focusin",this.doShow),Object(o["on"])(t,"focusout",this.doClose)):(Object(o["on"])(t,"mousedown",this.doShow),Object(o["on"])(t,"mouseup",this.doClose)))},beforeDestroy:function(){this.cleanup()},deactivated:function(){this.cleanup()},methods:{doToggle:function(){this.showPopper=!this.showPopper},doShow:function(){this.showPopper=!0},doClose:function(){this.showPopper=!1},handleFocus:function(){Object(o["addClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!0)},handleClick:function(){Object(o["removeClass"])(this.referenceElm,"focusing")},handleBlur:function(){Object(o["removeClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!1)},handleMouseEnter:function(){var e=this;clearTimeout(this._timer),this.openDelay?this._timer=setTimeout((function(){e.showPopper=!0}),this.openDelay):this.showPopper=!0},handleKeydown:function(e){27===e.keyCode&&"manual"!==this.trigger&&this.doClose()},handleMouseLeave:function(){var e=this;clearTimeout(this._timer),this.closeDelay?this._timer=setTimeout((function(){e.showPopper=!1}),this.closeDelay):this.showPopper=!1},handleDocumentClick:function(e){var t=this.reference||this.$refs.reference,n=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),this.$el&&t&&!this.$el.contains(e.target)&&!t.contains(e.target)&&n&&!n.contains(e.target)&&(this.showPopper=!1)},handleAfterEnter:function(){this.$emit("after-enter")},handleAfterLeave:function(){this.$emit("after-leave"),this.doDestroy()},cleanup:function(){(this.openDelay||this.closeDelay)&&clearTimeout(this._timer)}},destroyed:function(){var e=this.reference;Object(o["off"])(e,"click",this.doToggle),Object(o["off"])(e,"mouseup",this.doClose),Object(o["off"])(e,"mousedown",this.doShow),Object(o["off"])(e,"focusin",this.doShow),Object(o["off"])(e,"focusout",this.doClose),Object(o["off"])(e,"mousedown",this.doShow),Object(o["off"])(e,"mouseup",this.doClose),Object(o["off"])(e,"mouseleave",this.handleMouseLeave),Object(o["off"])(e,"mouseenter",this.handleMouseEnter),Object(o["off"])(document,"click",this.handleDocumentClick)}},c=u,d=n(0),h=Object(d["a"])(c,i,r,!1,null,null,null);h.options.__file="packages/popover/src/main.vue";var f=h.exports,p=function(e,t,n){var i=t.expression?t.value:t.arg,r=n.context.$refs[i];r&&(Array.isArray(r)?r[0].$refs.reference=e:r.$refs.reference=e)},m={bind:function(e,t,n){p(e,t,n)},inserted:function(e,t,n){p(e,t,n)}},_=n(7),v=n.n(_);v.a.directive("popover",m),f.install=function(e){e.directive("popover",m),e.component(f.name,f)},f.directive=m;t["default"]=f}})}},n={};function i(e){var r=n[e];if(void 0!==r)return r.exports;var a=n[e]={id:e,loaded:!1,exports:{}};return t[e].call(a.exports,a,a.exports,i),a.loaded=!0,a.exports}!function(){i.amdO={}}(),function(){i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,{a:t}),t}}(),function(){i.d=function(e,t){for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}}(),function(){i.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}()}(),function(){i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}}(),function(){i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}}(),function(){i.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e}}(),function(){i.p=""}();var r={};return function(){"use strict";if(i.r(r),i.d(r,{default:function(){return Xe}}),"undefined"!==typeof window){var e=window.document.currentScript,t=e&&e.src.match(/(.+\/)[^/]+\.js(\?.*)?$/);t&&(i.p=t[1])}i(8111),i(7588);var n=function(){var e=this,t=e._self._c;return t("div",{staticClass:"pager fixed bottom-0 right-0 w-full flex justify-center items-center z-50",attrs:{id:"pager"}},[t("el-pagination",{attrs:{"current-page":e.pager["page"],"page-size":e.pager["limit"],"page-sizes":e.pageSizes,background:"",layout:"total, prev, pager, next,sizes, jumper",total:e.totalCount},on:{"size-change":t=>e.handleValueChange(t,"limit"),"current-change":t=>e.handleValueChange(t,"page")}})],1)},a=[],s={name:"BYPager",props:{limit:{type:Number,default:15},page:{type:Number,default:1},totalCount:{type:Number,required:!0,default:25},pageSizes:{type:Array,default:()=>[10,15,20,25,30,50,100]}},data(){return{pager:{page:this.page,limit:this.limit}}},watch:{page:{handler:function(e,t){this.pager.page=e},immediate:!0},limit:{handler:function(e,t){this.pager.limit=e},immediate:!0}},mounted(){document.getElementsByClassName("el-pagination__jump")[0].childNodes[0].nodeValue="跳至",document.getElementsByClassName("el-pagination__jump")[0].childNodes[2].nodeValue=""},methods:{handleValueChange(e,t){if(!e)return;const n={...this.pager,[t]:e,page:"limit"===t?1:e};this.$emit("onChange",n)}}},o=s;function l(e,t,n,i,r,a,s,o){var l,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),a&&(u._scopeId="data-v-"+a),s?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(s)},u._ssrRegister=l):r&&(l=o?function(){r.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var d=u.beforeCreate;u.beforeCreate=d?[].concat(d,l):[l]}return{exports:e,options:u}}var u=l(o,n,a,!1,null,null,null),c=u.exports,d=function(){var e=this,t=e._self._c;return t("div",[t("vxe-grid",e._g(e._b({ref:"xGrid",on:{"cell-click":e.handleCellClick,"resizable-change":e.handleResizableChange},scopedSlots:e._u([e._l(e.slotMap,(function(t){return{key:t,fn:function(n){return[e._t(t,null,null,n)]}}})),e.options.pagerConfig?{key:"pager",fn:function(){return[t("div",{staticClass:"pager-container"},[e.showResetCache?t("el-button",{attrs:{disabled:!e.hasCache,size:"small"},on:{click:e.resetCachedTableColumns}},[e._v(" 重置列宽 ")]):e._e(),t("by-pager",{attrs:{page:e.options.pagerConfig.currentPage,limit:e.options.pagerConfig.pageSize,"total-count":e.options.pagerConfig.total,"page-sizes":e.options.pagerConfig.pageSizes},on:{onChange:e.pageChange}})],1)]},proxy:!0}:{key:"pager",fn:function(){return[t("div",{staticClass:"reset-button"},[e.showResetCache?t("el-button",{attrs:{disabled:!e.hasCache,size:"small"},on:{click:e.resetCachedTableColumns}},[e._v(" 重置列宽 ")]):e._e()],1)]},proxy:!0}],null,!0)},"vxe-grid",e.options,!1),e.eventListeners)),e.gridOptions.customColumnConfig&&e.gridOptions.customColumnConfig.showCustomColumn?t("CustomColumn",{ref:"CustomColumnRef",attrs:{"info-method":e.gridOptions.customColumnConfig.infoMethod,"submit-method":e.gridOptions.customColumnConfig.submitMethod,"dialog-visible":e.customTableVisible},on:{closeDialog:e.closeCustomColumnDialog,changeTable:e.changeTableFields,changeTableGroup:e.changeTableGroupFields}}):e._e()],1)},h=[],f=(i(4114),i(7642),i(8004),i(3853),i(5876),i(2475),i(5024),i(1698),function(){var e=this,t=e._self._c;return t("div",{attrs:{id:"custom_column"}},[t("el-dialog",{attrs:{"close-on-click-modal":!1,visible:e.dialogVisible,width:"920px","append-to-body":!0,"show-close":!1,"custom-class":"custom_dialog_class"},on:{close:e.closeDialog},scopedSlots:e._u([{key:"footer",fn:function(){return[t("el-row",{staticStyle:{"margin-top":"7px"}},[t("el-button",{staticStyle:{width:"96px"},attrs:{size:"small"},on:{click:e.closeDialog}},[e._v("取消")]),t("el-button",{staticStyle:{width:"96px"},attrs:{size:"small",type:"primary"},on:{click:e.submit}},[e._v("确定")])],1)]},proxy:!0}])},[t("div",{staticClass:"el-dialog-box"},[t("div",{staticClass:"left_box"},[t("div",{staticClass:"box_title"},[e._v("数据指标")]),t("div",{staticClass:"row",staticStyle:{"padding-right":"20px"}},[t("div",{staticClass:"cell"},[t("el-input",{staticStyle:{width:"228px","margin-bottom":"10px"},attrs:{placeholder:"搜索指标",size:"medium","prefix-icon":"el-icon-search"},model:{value:e.search,callback:function(t){e.search=t},expression:"search"}})],1),t("el-button",{attrs:{type:"text"},on:{click:e.selectNone}},[e._v("全不选")])],1),t("div",{staticClass:"left_box_body"},[t("div",{staticClass:"left_nav"},[t("ul",e._l(e.checkBoxMenuBySearch,(function(n,i){return t("li",{key:i,class:{active:e.activeId===i},on:{click:function(t){return e.setHighlight(i)}}},[e._v(" "+e._s(n.label)+" ")])})),0)]),t("div",{staticClass:"left_menu"},e._l(e.checkBoxMenuBySearch,(function(n,i){return t("div",{key:i,ref:"tagItem",refInFor:!0},[t("div",{staticClass:"checkbox_title"},[e._v(" "+e._s(n.label)+" ")]),t("el-row",e._l(n.data,(function(n,i){return t("el-col",{key:i,staticStyle:{"margin-bottom":"3px"},attrs:{span:12}},[t("el-checkbox",{on:{change:function(t){return e.changeCheckbox(n.key,n.type)}},model:{value:n.type,callback:function(t){e.$set(n,"type",t)},expression:"each.type"}},[e._v(" "+e._s(n.label)+" ")])],1)})),1)],1)})),0)])]),t("div",{staticClass:"right_box"},[t("div",{staticClass:"drag_box"},[t("el-row",[t("div",{staticClass:"drag_text_box"},[t("span",{staticClass:"drag_title"},[e._v(e._s(`已选指标(${e.number})`))]),t("span",{staticClass:"recover",on:{click:e.recoverDefault}},[e._v("恢复默认")])])]),t("div",{staticClass:"drag_ul"},[t("draggable",{attrs:{"chosen-class":"chosen","force-fallback":"true",animation:"500"},on:{end:e.onEnd},model:{value:e.draggableMenu,callback:function(t){e.draggableMenu=t},expression:"draggableMenu"}},[t("transition-group",e._l(e.draggableMenu,(function(n){return t("div",{directives:[{name:"show",rawName:"v-show",value:n.type,expression:"col.type"}],key:n.key,class:"sort-cut-off"===n.key?"fixedClass":"drag_li_box"},["sort-cut-off"!==n.key?t("div",[t("i",{staticClass:"el-icon-rank icon-box"}),t("span",{staticClass:"drag_li_text"},[e._v(e._s(n.label))])]):e._e(),"sort-cut-off"!==n.key?t("i",{staticClass:"el-icon-close remove",on:{click:function(t){return e.changeCheckbox(n.key,!1)}}}):e._e()])})),0)],1)],1)],1)])])])],1)}),p=[],m=(i(2489),i(116),i(1701),i(3579),i(6906)),_=i.n(m);const v=e=>{let t;if("object"===typeof e)if(Array.isArray(e)){t=[];for(const n in e)t.push(v(e[n]))}else if(null===e)t=null;else if(e.constructor===RegExp)t=e;else{t={};for(const n in e)t[n]=v(e[n])}else t=e;return t};var g={name:"CustomColumn",components:{draggable:_()},props:{dialogVisible:{type:Boolean,default:!1},infoMethod:{type:Function,required:!0,default:()=>{}},submitMethod:{type:Function,required:!0,default:()=>{}}},data(){return{draggableMenu:[],checkBoxMenu:[],activeId:0,id:void 0,page:"",search:""}},computed:{number(){return this.draggableMenu.filter((e=>e.type&&"sort-cut-off"!==e.key)).length},checkBoxMenuBySearch(){return this.search?this.checkBoxMenu.map((e=>{const t=e.data.filter((e=>e.label.includes(this.search)));return{label:e.label,data:t}})).filter((e=>e.data.length>0)):this.checkBoxMenu}},methods:{deepClone:v,async getCustomTableList(e,t){if(!e)throw new Error("缺少表格列接口路径");{this.columnList=this.deepClone(t),this.page=e||"";const n=[],i=await this.infoMethod({page:e});"[]"!==JSON.stringify(i.data)&&(this.id=i.data.id||void 0,i.data.column.forEach((e=>n.push(...e.data)))),this.initTableList(this.deepClone(t),n)}},initTableList(e,t=[]){const n=e=>{const t=[];if(e.forEach((e=>t.push(...e.data))),t.sort(((e,t)=>e.sort-t.sort)),t.some((e=>e.fixed))){let e=0;for(let n=0;n<=t.length;n++){const i=t[n],r=t[n+1];if("left"===i.fixed&&(!r||!r.fixed)){e=n+1;break}}t.splice(e,0,{type:!0,label:"",key:"sort-cut-off",parent:""})}return t};if(t&&t.length>0)e.forEach((e=>{e.data.forEach((n=>{const i=t.find((e=>e.key===n.key))||{};n.type="true"===i.type||!0===i.type,n.sort=i.sort,n.fixed=i.fixed?i.fixed:n.fixed,n.parent={label:e.label}}))})),this.checkBoxMenu=this.deepClone(e),this.draggableMenu=n(this.checkBoxMenu);else{let t=0;e.forEach((e=>{e.data.forEach((n=>{t++,n.type=!0,n.width=n.width?+n.width:0,n.sort=t,n.parent={label:e.label}}))})),this.checkBoxMenu=this.deepClone(e),this.draggableMenu=n(this.checkBoxMenu)}this.$emit("changeTable",this.draggableMenu.filter((e=>"sort-cut-off"!==e.key)).sort(((e,t)=>e.sort-t.sort))),this.$emit("changeTableGroup",this.checkBoxMenu)},selectNone(){this.checkBoxMenu.forEach((e=>e.data.forEach((e=>e.type=!1)))),this.draggableMenu.forEach((e=>{"sort-cut-off"===e.key?e.type=!0:e.type=!1}))},setHighlight(e){this.activeId=e,this.$refs.tagItem&&this.$refs.tagItem[e].scrollIntoView({behavior:"smooth"})},changeCheckbox(e,t){this.draggableMenu.forEach((n=>{n.key===e&&(n.type=t)})),this.checkBoxMenu.forEach((n=>{n.data.forEach((n=>{n.key===e&&(n.type=t)}))}))},recoverDefault(){this.initTableList(this.deepClone(this.columnList))},onEnd(){let e=!0;this.draggableMenu.forEach(((t,n)=>{"sort-cut-off"===t.key&&(e=!1),e?(t.sort=n+1,t.fixed="left"):(t.sort=n,delete t.fixed)}))},async submit(){const e={column:[],id:this.id,page:this.page};this.draggableMenu.forEach((t=>{if("sort-cut-off"!==t.key){const{parent:n,...i}=t,r=e.column.some((e=>e.label===n.label));r?e.column.forEach((e=>{e.label===n.label&&e.data.push(i)})):e.column.push({label:n.label,data:[i]})}})),await this.submitMethod(e);const t=[];e.column.forEach((e=>{t.push(...e.data)})),this.$emit("changeTable",t.sort(((e,t)=>e.sort-t.sort))),this.$emit("changeTableGroup",e.column),this.closeDialog()},closeDialog(){this.search="",this.activeId=0,this.$emit("closeDialog")}}},y=g,b=l(y,f,p,!1,null,null,null),w=b.exports;const k=e=>!!e&&!!localStorage.getItem(e),M=e=>{localStorage.removeItem(e)},x=(e,t)=>{if(!e)return;const n=t.$table.collectColumn,i=D(e),r=(e,t,n)=>{const i=[];for(const a of e)if(a.children){const e=r(a.children,t,n);e.length>0&&i.push({field:a.field,width:n,children:e})}else t&&""!==t&&a.field===t&&i.push({field:a.field,width:n});return i},a=t.column,s=r(n,a.field,a.renderWidth),o=(e,t)=>{const n=[...t];for(const i of e){const e=n.findIndex((e=>e.field===i.field));-1!==e?i.children&&n[e].children?n[e].children=o(i.children,n[e].children):n[e].width=i.width:n.push(i)}return n},l=o(s,i);localStorage.setItem(e,JSON.stringify(l))},D=e=>JSON.parse(localStorage.getItem(e)||"[]"),L=(e,t)=>{if(!e)return t;const n=D(e);if(!n)return t;const i=(e,t)=>e.map((e=>{if(e.children){const n=t.find((t=>t.field===e.field));return{...e,...(null===n||void 0===n?void 0:n.width)&&{width:n.width},children:i(e.children,(null===n||void 0===n?void 0:n.children)||[])}}const n=t.filter((e=>e.field&&""!==e.field)).find((t=>t.field===e.field));return{...e,...(null===n||void 0===n?void 0:n.width)&&{width:n.width}}}));return i(t,n)};var S={name:"BYTable",components:{CustomColumn:w},props:{gridOptions:{type:Object,default:()=>{}},name:{type:String,default:""},autoHeight:{type:Boolean,default:!1}},data(){return{events:["keydown","current-change","radio-change","checkbox-change","checkbox-all","checkbox-range-start","checkbox-range-change","checkbox-range-end","cell-dblclick","cell-menu","cell-mouseenter","cell-mouseleave","cell-delete-value","header-cell-click","header-cell-dblclick","header-cell-menu","footer-cell-click","footer-cell-dblclick","footer-cell-menu","clear-merge","sort-change","clear-sort","filter-visible","filter-change","clear-filter","toggle-row-expand","toggle-tree-expand","menu-click","cell-selected","edit-closed","edit-activated","edit-disabled","valid-error","scroll","custom","page-change","form-submit","form-submit-invalid","form-reset","form-collapse","proxy-query","proxy-delete","proxy-save","toolbar-button-click","toolbar-tool-click","zoom"],customTableVisible:!1,showResetCache:!1,hasCache:!1,originColumns:[]}},mounted(){this.showResetCache=!!this.name},computed:{options(){const{customColumnConfig:e,columns:t,...n}=this.gridOptions;this.originColumns=v(t);const i=L(this.name,t);return this.setHasCache(),{border:!0,resizable:!0,showOverflow:!this.autoHeight,height:550,align:"left",copyFields:[],pagerConfig:!1,emptyText:"暂无数据",loadingConfig:{text:"加载中..."},columns:i,...n,resizableConfig:{minWidth:50,...this.gridOptions.resizableConfig},rowConfig:{height:41,isHover:!0,...this.gridOptions.rowConfig},sortConfig:{remote:!0,trigger:"cell",...this.gridOptions.sortConfig}}},slotMap(){var e,t,n;const i=new Set([]),r=null!==(e=null===(t=this.gridOptions)||void 0===t||null===(n=t.customColumnConfig)||void 0===n?void 0:n.slots)&&void 0!==e?e:[];return this.options.columns.forEach((e=>{if(e.slots){const t=Object.values(e.slots);t.forEach((e=>i.add(e)))}})),[...Array.from(i),...r]},eventListeners(){const e={};return this.events.forEach((t=>{e[t]=e=>this.$emit(t,e)})),e}},methods:{handleCellClick(e){if(this.options.copyFields.includes(e.column.field)){const t=e.cell.outerText;this.copy(t)}this.$emit("cell-click",e)},handleResizableChange(e){this.$emit("resizable-change",e),x(this.name,e),this.setHasCache()},setHasCache(){this.hasCache=k(this.name)},resetCachedTableColumns(){M(this.name),this.setHasCache(),this.$refs.xGrid&&this.$refs.xGrid.reloadColumn(this.originColumns)},pageChange(e){this.$emit("page-change",e)},copy(e){const t=document.createElement("input");t.value=e,document.body.appendChild(t),t.select(),document.execCommand("Copy"),this.$message({message:"复制成功",type:"success"}),t.remove()},getCustomColumnRef(){return this.$refs.CustomColumnRef},handleOpenCustomColumn(){this.customTableVisible=!0},changeTableFields(e){this.originColumns=v(e);const t=[];e.forEach((e=>{!t.some((t=>t.field===e.key))&&e.type&&t.push({field:e.key,title:e.label,minWidth:e.minWidth||e.width,maxWidth:e.maxWidth,sortable:"undefined"===typeof e.sortable||JSON.parse(e.sortable),fixed:e.fixed,slots:this.gridOptions.customColumnConfig.slots.includes(e.key)?{default:e.key}:void 0})}));const n=L(this.name,t);this.setHasCache(),this.$emit("setColumn",n)},changeTableGroupFields(e){const t=e=>{const n=[];return e.forEach(((i,r)=>{i.data&&i.data.length>0?(n.push({title:i.label,align:"center",children:t(i.data)}),r<e.length-1&&n.push({title:"",width:5,headerClassName:"group-split",className:"group-split"})):!n.some((e=>e.field===i.key))&&i.type&&n.push({field:i.key,title:i.label,minWidth:i.minWidth||i.width,maxWidth:i.maxWidth,sortable:"undefined"===typeof i.sortable||JSON.parse(i.sortable),fixed:i.fixed,slots:this.gridOptions.customColumnConfig.slots.includes(i.key)?{default:i.key}:void 0})})),n};this.$emit("setGroupColumn",t(e))},closeCustomColumnDialog(){this.customTableVisible=!1}}},C=S,T=l(C,d,h,!1,null,null,null),Y=T.exports,O=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-form"},[t("div",{staticClass:"header"},[e._t("header")],2),t("el-form",{ref:"formRef",staticClass:"myForm",attrs:{"label-position":e.labelPosition,rules:e.rules,"label-width":e.labelWidth,inline:e.inline,model:e.value,"label-suffix":":"},nativeOn:{submit:function(t){return t.preventDefault(),e.submit.apply(null,arguments)},reset:function(t){return t.preventDefault(),e.reset.apply(null,arguments)}}},[t("el-row",[e._l(e.formItems,(function(n){var i,r,a;return[n.isHidden?e._e():t("el-col",e._b({directives:[{name:"show",rawName:"v-show",value:e.showFold(n),expression:"showFold(item)"}],key:n.label},"el-col",n.colLayout||e.colLayout,!1),[t("el-form-item",{style:n.itemStyle||e.itemStyle,attrs:{label:n.label||"",rules:n.rules,prop:n.field,"label-width":n.labelWidth||e.labelWidth}},["input"===n.type||"password"===n.type?[t("el-input",e._b({staticStyle:{width:"100%"},attrs:{placeholder:n.placeholder,clearable:"","show-password":"password"===n.type,value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-input",n.otherOptions,!1),[n.otherOptions&&n.otherOptions.isPrefix?e._t("prefix",(function(){return["select"===n.otherOptions.prefixType?t("el-select",{style:{width:"100px"},attrs:{slot:"prepend",value:e.value[`${n.otherOptions.prefixField}`],placeholder:"请选择"},on:{input:function(t){return e.handleValueChange(t,n.otherOptions)}},slot:"prepend"},e._l(n.otherOptions.prefixOption,(function(e){return t("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1):e._e()]})):e._e(),e._t("suffix"),e._t("prepend"),e._t("append")],2)]:"select"===n.type?[t("by-select",e._b({staticStyle:{width:"100%"},attrs:{value:e.value[`${n.field}`],config:n,clearable:"",filterable:"",size:e.elSize,options:n.options},on:{input:function(t){return e.handleValueChange(t,n)}}},"by-select",n.otherOptions,!1)),e._t(n.field)]:"datepicker"===n.type?[t("el-date-picker",e._b({staticStyle:{width:"100%"},attrs:{placeholder:n.placeholder,value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-date-picker",n.otherOptions,!1))]:"cascader"===n.type?[t("el-cascader",e._b({staticStyle:{width:"100%"},attrs:{placeholder:n.placeholder,options:n.options,clearable:"",filterable:"",value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-cascader",n.otherOptions,!1))]:"switch"===n.type?[t("el-switch",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-switch",n.otherOptions,!1))]:"radioGroup"===n.type?["button"===n.cGOptions.type?t("el-radio-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-radio-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-radio-button",{key:n.value,attrs:{label:n.value,disabled:!!n.disabled}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e(),"checkbox"===n.cGOptions.type?t("el-radio-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-radio-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-radio",{key:n.value,attrs:{label:n.value,disabled:!!n.disabled}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e()]:"checkboxGroup"===n.type?["button"===n.cGOptions.type?t("el-checkbox-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-checkbox-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-checkbox-button",{key:n.value,attrs:{label:n.value}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e(),"checkbox"===n.cGOptions.type?t("el-checkbox-group",e._b({attrs:{value:e.value[`${n.field}`],size:e.elSize},on:{input:function(t){return e.handleValueChange(t,n)}}},"el-checkbox-group",n.otherOptions,!1),e._l(n.cGOptions.options,(function(n){return t("el-checkbox",{key:n.value,attrs:{label:n.value}},[e._v(" "+e._s(n.label)+" ")])})),1):e._e()]:"text"===n.type?[e._t(n.slotName,(function(){return[t("div",[e._v(e._s(`${n.defaultValue}`))])]}))]:"pairNumberInput"===n.type?[t("PairNumberInput",{attrs:{value:e.value[`${n.field}`],"earliest-placeholder":n.earliestPlaceholder,"latest-placeholder":n.latestPlaceholder},on:{input:function(t){return e.handleValueChange(t,n)}}})]:"customDatePicker"===n.type?[t("CustomDatePicker",e._b({attrs:{value:e.value[`${n.field}`]},on:{input:function(t){return e.handleValueChange(t,n)},"range-change":function(t){return e.handleRangeChange(t,n)}}},"CustomDatePicker",n,!1))]:"custom"===n.type?[e._t(n.field,null,{row:n})]:"search"===n.type?[t("el-button",e._b({attrs:{size:e.elSize||"mini",type:"primary",icon:"el-icon-search"},on:{click:e.handleQueryClick}},"el-button",null!==(i=n.otherOptions)&&void 0!==i?i:{},!1),[e._v(" "+e._s((n.otherOptions||{}).text||"搜索")+" ")])]:"formButtons"===n.type?[n.otherOptions&&!1===n.otherOptions.reset?e._e():t("el-button",e._b({attrs:{"native-type":"reset",size:e.elSize||"mini"}},"el-button",null!==(r=n.otherOptions)&&void 0!==r?r:{},!1),[e._v(" "+e._s((n.otherOptions||{}).resetText||"重置")+" ")]),n.otherOptions&&!1===n.otherOptions.submit?e._e():t("el-button",e._b({attrs:{"native-type":"submit",size:e.elSize||"mini",type:"primary",icon:n.otherOptions&&!1===n.otherOptions.showSubmitIcon?"":"el-icon-search"}},"el-button",null!==(a=n.otherOptions)&&void 0!==a?a:{},!1),[e._v(" "+e._s((n.otherOptions||{}).submitText||"搜索")+" ")])]:e._e()],2)],1)]})),e._t("btn",null,{formData:e.formData})],2)],1),t("div",{staticClass:"footer"},[e._t("footer")],2)],1)},E=[],j=function(){var e=this,t=e._self._c;return t("div",{staticClass:"w-full flex"},[t("el-input",{staticClass:"w-1/2",attrs:{value:e.value[0],placeholder:e.earliestPlaceholder},on:{input:t=>e.handleInput(t,"min"),blur:t=>e.handleBlur(+t.target.value,"min")}}),t("span",[e._v("~")]),t("el-input",{staticClass:"w-1/2",attrs:{value:e.value[1],placeholder:e.latestPlaceholder},on:{input:t=>e.handleInput(t,"max"),blur:t=>e.handleBlur(+t.target.value,"max")}})],1)},P=[],$={props:{value:{type:Array,required:!0,default:()=>["",0]},earliestPlaceholder:{type:String,default:""},latestPlaceholder:{type:String,default:""}},methods:{handleInput(e,t){if("min"===t){const t=[e.replace(/\D+/,""),this.value[1]];this.$emit("input",t)}else if("max"===t){const t=[this.value[0],e.replace(/\D+/,"")];this.$emit("input",t)}},handleBlur(e,t){if("min"===t){if(e>this.value[1]){const e=[this.value[1],this.value[1]];this.$emit("input",e)}}else if("max"===t&&e<this.value[0]){const e=[this.value[0],this.value[0]];this.$emit("input",e)}}}},N=$,I=l(N,j,P,!1,null,null,null),H=I.exports,A=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-picker wrapper"},[t("el-date-picker",e._b({staticStyle:{width:"70%"},attrs:{value:e.value},on:{input:e.handleChange}},"el-date-picker",e.dateOptions,!1)),t("div",{staticClass:"btn"},e._l(e.shortcuts,(function(n){return t("span",{key:n.key,staticClass:"item",class:{item_active:n.key===e.active},on:{click:function(t){return e.handleClick(n)}}},[e._v(" "+e._s(n.label)+" ")])})),0)],1)},F=[],z=i(6879),V=i.n(z),W={props:{value:{type:[Array,String],required:!0,default:()=>[]},otherOption:{type:Object,default:()=>({startPlaceholder:"开始时间",endPlaceholder:"结束时间",type:"daterange",rangeSeparator:"-",size:"mini",active:""})},startTimeField:{type:String,default:""},endTimeField:{type:String,default:""}},data(){return{shortcuts:[{label:"上月",start_time:V()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:V()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:V()().subtract(1,"days").format("YYYY-MM-DD"),end_time:V()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:V()().startOf("day").format("YYYY-MM-DD"),end_time:V()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:V()().startOf("week").format("YYYY-MM-DD"),end_time:V()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:V()().startOf("month").format("YYYY-MM-DD"),end_time:V()().endOf("month").format("YYYY-MM-DD"),key:"month"}],active:""}},computed:{dateOptions(){return{startPlaceholder:"开始时间",endPlaceholder:"结束时间",type:"daterange",rangeSeparator:"至",size:"mini",active:"",...this.otherOption}}},watch:{value:{handler(e,t){if(e&&e.length)this.active="",this.shortcuts.forEach((t=>{t.start_time===e[0]&&t.end_time===e[1]&&(this.active=t.key)}));else{this.active=this.dateOptions.active;const e=this.shortcuts.find((e=>e.key===this.dateOptions.active))||{};e.start_time&&e.end_time&&this.handleClick(e)}},immediate:!0}},methods:{handleChange(e){if(e){const t=e.map((e=>V()(e).format("YYYY-MM-DD")));this.$emit("input",t),this.startTimeField&&this.endTimeField&&this.$emit("range-change",{startTime:t[0],endTime:t[1]})}else this.$emit("input",[]),this.startTimeField&&this.endTimeField&&this.$emit("range-change",{startTime:"",endTime:""});this.active=""},handleClick(e){this.active=e.key,this.$emit("input",[e.start_time,e.end_time]),this.startTimeField&&this.endTimeField&&this.$emit("range-change",{startTime:e.start_time,endTime:e.end_time})}}},R=W,B=l(R,A,F,!1,null,null,null),q=B.exports,U={name:"ByForm",components:{PairNumberInput:H,CustomDatePicker:q},props:{value:{type:Object,required:!0},labelPosition:{type:String,default:"right"},formItems:{type:Array,default:()=>[]},flexible:{type:Object,default:()=>({foldField:"none",unfold:!1})},labelWidth:{type:String,default:"100px"},itemStyle:{type:Object,default:()=>({padding:"10px 40px"})},colLayout:{type:Object,default:()=>({xl:4,lg:6,md:6,sm:8,xs:12})},isFlexible:{type:Boolean,default:!0},inline:{type:Boolean,default:!1},rules:{type:Object,default:()=>{}},elSize:{type:String,default:"mini"}},data(){return{formData:this.value,replacementData:void 0,initialValues:{...this.value}}},computed:{showFold(){return e=>!!this.isFlexible||(!this.flexible||!this.flexible.foldField.length||!this.flexible.foldField.includes(e.id)&&!this.flexible.foldField.includes(e.field))}},watch:{value:{handler(e,t){this.formData=e,this.replacementData={...this.replacementData?this.replacementData:{},...e}},deep:!0,immediate:!0}},methods:{validate(e=()=>{}){this.$refs.formRef.validate(((t,n)=>{e(t,n)}))},clearValidate(){this.$refs.formRef.clearValidate()},handleValueChange(e,t){this.replacementData?this.replacementData[t.field]=e:this.replacementData={...this.value,[t.field]:e},this.$emit("change",{...t,value:e}),this.$emit("input",this.replacementData)},handleRangeChange({startTime:e,endTime:t},n){n.startTimeField&&n.endTimeField&&(this.replacementData?(this.replacementData[n.startTimeField]=e,this.replacementData[n.endTimeField]=t):this.replacementData={...this.value,[n.startTimeField]:e,[n.endTimeField]:t},this.$emit("input",this.replacementData))},handleQueryClick(){this.$emit("queryBtnClick")},submit(){this.$refs.formRef.validate((e=>{if(!e)return!1;this.$emit("submit",this.formData)}))},reset(){this.$refs.formRef.resetFields(),this.$emit("input",{...this.initialValues}),this.$emit("reset")}}},G=U,K=l(G,O,E,!1,null,null,null),J=K.exports,X=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-page-search"},[t("by-form",e._b({attrs:{value:e.formData,"is-flexible":e.unfold},on:{input:e.handleInput,change:e.handleChange,queryBtnClick:e.handleQueryClick,submit:e.submit,reset:e.reset},scopedSlots:e._u([{key:"header",fn:function(){return[e._t("header")]},proxy:!0},{key:"footer",fn:function(){return[e.isShowUnfoldBtn?t("div",{staticClass:"fold"},[t("by-fold-search",{on:{change:e.handleFlexible}})],1):e._e()]},proxy:!0},e._l(e.getCustomItem,(function(t){return{key:t,fn:function(){return[e._t(t)]},proxy:!0}}))],null,!0)},"by-form",e.searchFormConfig,!1))],1)},Z=[],Q={props:{searchFormConfig:{type:Object,required:!0,default:()=>{}},value:{type:Object,default:()=>{}}},data(){var e,t;return{formItems:null!==(e=null===(t=this.searchFormConfig)||void 0===t?void 0:t.formItems)&&void 0!==e?e:[],formOriginData:{},formData:{},unfold:!1}},computed:{isShowUnfoldBtn(){var e,t,n,i;const r=null!==(e=null===(t=this.searchFormConfig)||void 0===t?void 0:t.formItems)&&void 0!==e?e:[],a=null!==(n=null===(i=this.searchFormConfig)||void 0===i?void 0:i.flexible)&&void 0!==n?n:void 0;return!!a&&r.length>a.foldField.length},getCustomItem(){return this.formItems.filter((e=>"custom"===e.type)).map((e=>e.field))}},watch:{value:{handler(e,t){this.formData=e},deep:!0,immediate:!0}},mounted(){var e,t;this.formOriginData=this.value,this.unfold=null!==(e=null===(t=this.searchFormConfig.flexible)||void 0===t?void 0:t.unfold)&&void 0!==e&&e},methods:{handleResetClick(){this.formData={...this.formOriginData},this.$emit("input",{...this.formOriginData}),this.$emit("resetBtnClick")},handleQueryClick(){this.$emit("queryBtnClick")},handleFlexible(){this.unfold=!this.unfold},handleInput(e){this.formData=e,this.$emit("input",{...this.formData})},handleChange(e){this.$emit("change",e)},submit(){this.$emit("submit",this.formData)},reset(){this.$emit("reset")}}},ee=Q,te=l(ee,X,Z,!1,null,null,null),ne=te.exports,ie=function(){var e=this,t=e._self._c;return t("div",{staticClass:"drawer_query_btn b-fold-search"},[t("div",{on:{click:e.drawer}},[1==e.show?[t("span",{staticStyle:{color:"#3aa1ff","vertical-align":"middle"}},[e._v("收起")]),e._v("    "),t("img",{staticStyle:{"vertical-align":"middle"},attrs:{src:"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyBjbGFzcz0iaWNvbiIgd2lkdGg9IjIwMHB4IiBoZWlnaHQ9IjIwMC4wMHB4IiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzVjYWRmZiIgZD0iTTg3Ny41IDU2NS45bC0zNjcuNi0zNDAtMzY3LjYgMzQwYy0yMi41IDE0LjUtNTIuNSAxNC41LTY3LjUgMC0xNS0yMS43LTE1LTUwLjcgMC02NS4xTDQ5NSAxMTcuNWMwLTcuMiA3LjUtNy4yIDE1LTcuMnM3LjUgMCAxNSA3LjJsNDIwLjIgMzgzLjNjMjIuNSAyMS43IDE1IDUwLjYgMCA2NS4xLTIyLjcgMTQuNS01Mi43IDE0LjUtNjcuNyAwek00OTQuOCA0NTAuMWMwLTcuMiA3LjUtNy4yIDE1LTcuMnMxNSAwIDE1IDcuMkw5NDUgODMzLjRjMjIuNSAyMS43IDE1IDUwLjYgMCA2NS4xLTIyLjUgMTQuNC01Mi41IDE0LjQtNjcuNSAwTDUwOS44IDU1OC42IDE0Mi4yIDkwNS44Yy0yMi41IDE0LjUtNTIuNSAxNC41LTY3LjUgMC0xNS0yMS43LTE1LTUwLjcgMC02NS4xbDQyMC4xLTM5MC42eiBtMCAwIiAvPjwvc3ZnPg==",alt:"收起"}})]:[t("span",{staticStyle:{color:"#3aa1ff","vertical-align":"middle"}},[e._v("展开更多")]),e._v("    "),t("img",{staticStyle:{"vertical-align":"middle"},attrs:{src:"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyBjbGFzcz0iaWNvbiIgd2lkdGg9IjIwMHB4IiBoZWlnaHQ9IjIwMC4wMHB4IiB2aWV3Qm94PSIwIDAgMTAyNCAxMDI0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzVjYWRmZiIgZD0iTTE0NS40IDQ2MS4xbDM2Ny42IDM0MCAzNjcuNi0zNDBjMjIuNS0xNC41IDUyLjUtMTQuNSA2Ny41IDAgMTUgMjEuNyAxNSA1MC43IDAgNjUuMUw1MjcuOSA5MDkuNWMwIDcuMi03LjUgNy4yLTE1IDcuMnMtNy41IDAtMTUtNy4yTDc3LjcgNTI2LjJjLTIyLjUtMjEuNy0xNS01MC42IDAtNjUuMSAyMi42LTE0LjUgNTIuNi0xNC41IDY3LjcgMHpNNTI4IDU3Ni45YzAgNy4yLTcuNSA3LjItMTUgNy4ycy0xNSAwLTE1LTcuMkw3Ny44IDE5My42Yy0yMi41LTIxLjctMTUtNTAuNiAwLTY1LjEgMjIuNS0xNC40IDUyLjUtMTQuNCA2Ny41IDBMNTEzIDQ2OC40bDM2Ny42LTM0Ny4yYzIyLjUtMTQuNSA1Mi41LTE0LjUgNjcuNSAwIDE1IDIxLjcgMTUgNTAuNyAwIDY1LjFMNTI4IDU3Ni45eiBtMCAwIiAvPjwvc3ZnPg==",alt:"展开更多"}})]],2)])},re=[],ae={data(){return{show:!1}},methods:{drawer(e){this.show=!this.show,this.$emit("change",this.show)}}},se=ae,oe=l(se,ie,re,!1,null,null,null),le=oe.exports,ue=function(){var e=this,t=e._self._c;return t("el-select",e._b({ref:"selection",attrs:{value:e.value,placeholder:e.config.placeholder||"请选择"},on:{change:e.change,"visible-change":e.visibleChange,"remove-tag":e.removeTag,clear:e.clear,blur:e.blur,focus:e.focus}},"el-select",e.$props,!1),["group"===e.config.mode?e._l(e.item.options,(function(n){return t("el-option-group",{key:n[e.config.optionValue||"value"],attrs:{label:n[e.config.optionLabel||"label"]}},e._l(n.options,(function(n){return t("el-option",{key:n[e.config.optionValue||"value"],attrs:{label:n[e.config.optionLabel||"label"],value:n[e.config.optionValue||"value"]}})})),1)})):e._l(e.filterData,(function(n){return t("el-option",{key:n[e.config.optionValue||"value"]+"-"+n[e.config.optionLabel||"label"],attrs:{label:n[e.config.optionLabel||"label"],value:n[e.config.optionValue||"value"]}})}))],2)},ce=[],de=i(7822),he={name:"BYSelect",props:{...de.Select.props,value:{type:[String,Number,Array]},placeholder:{type:String,default:"请选择"},options:{type:Array,default:()=>[]},config:{type:Object,default:null}},data(){return{searchVal:"",filterData:[]}},watch:{options:{handler(){this.filterData=this.options},deep:!0,immediate:!0}},methods:{change(e){this.$emit("change",1===arguments.length?e:arguments),this.$emit("input",e)},input(e){this.$emit("change",1===arguments.length?e:arguments),this.$emit("input",e)},visibleChange(e){this.$emit("visible-change",1===arguments.length?e:arguments)},removeTag(e){this.$emit("remove-tag",1===arguments.length?e:arguments)},clear(e){this.$emit("clear",1===arguments.length?e:arguments)},blur(e){this.$emit("blur",1===arguments.length?e:arguments)},focus(e){this.multiple&&this.searchNoReset(),this.$emit("blur",1===arguments.length?e:arguments)},searchNoReset(){this.$refs.selection.$refs.input.blur=()=>{this.filterData=this.options},this.$refs.selection.$refs.input.onkeyup=()=>{this.filterData=this.options,this.searchVal=this.$refs.selection.$refs.input.value,this.filterData=this.options.filter((e=>-1!==e[this.config.optionLabel].indexOf(this.searchVal)))}}}},fe=he,pe=l(fe,ue,ce,!1,null,null,null),me=pe.exports,_e=function(){var e=this,t=e._self._c;return t("div",{staticClass:"b-picker wrapper"},[t("el-date-picker",{staticStyle:{width:"70%"},attrs:{"start-placeholder":e.config.startPlaceholder||"开始时间","end-placeholder":e.config.endPlaceholder||"结束时间","range-separator":e.config.rangeSeparator||"-",size:e.config.size||"mini",type:"daterange"},on:{input:e.handleChange},model:{value:e.value[e.config.field],callback:function(t){e.$set(e.value,e.config.field,t)},expression:"value[config.field]"}}),t("div",{staticClass:"btn"},e._l(e.shortcuts,(function(n){return t("span",{key:n.key,staticClass:"item",class:{item_active:n.key===e.active},on:{click:function(t){return e.handleClick(n)}}},[e._v(" "+e._s(n.label)+" ")])})),0)],1)},ve=[],ge={name:"ByDatePickerRange",props:{value:{type:Object,default:null},config:{type:Object,default:null}},data(){return{shortcuts:[{label:"上月",start_time:V()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:V()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:V()().subtract(1,"days").format("YYYY-MM-DD"),end_time:V()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:V()().startOf("day").format("YYYY-MM-DD"),end_time:V()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:V()().startOf("week").format("YYYY-MM-DD"),end_time:V()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:V()().startOf("month").format("YYYY-MM-DD"),end_time:V()().endOf("month").format("YYYY-MM-DD"),key:"month"}],active:""}},mounted(){this.active=this.config.active||"today";const e=this.shortcuts.find((e=>e.key===this.active))||{};e.start_time&&e.end_time&&this.handleClick(e)},methods:{handleChange(e){e?this.$emit("input",e.map((e=>V()(e).format("YYYY-MM-DD")))):this.$emit("input",[]),this.active=""},handleClick(e){this.active=e.key,this.value[this.config.field]=[e.start_time,e.end_time],this.$emit("input",[e.start_time,e.end_time])}}},ye=ge,be=l(ye,_e,ve,!1,null,null,null),we=be.exports,ke=null,Me=null,xe=null,De="z-index-manage",Le=null,Se="z-index-style",Ce="m",Te="s",Ye={m:1e3,s:1e3};function Oe(){return ke||"undefined"!==typeof document&&(ke=document),ke}function Ee(){return ke&&!Me&&(Me=ke.body||ke.getElementsByTagName("body")[0]),Me}function je(){var e=0,t=Oe();if(t){var n=Ee();if(n)for(var i=n.getElementsByTagName("*"),r=0;r<i.length;r++){var a=i[r];if(a&&a.style&&1===a.nodeType){var s=a.style.zIndex;s&&/^\d+$/.test(s)&&(e=Math.max(e,Number(s)))}}}return e}function Pe(){if(!Le){var e=Oe();e&&(Le=e.getElementById(Se),Le||(Le=e.createElement("style"),Le.id=Se,e.getElementsByTagName("head")[0].appendChild(Le)))}return Le}function $e(){var e=Pe();if(e){var t="--dom-",n="-z-index";e.innerHTML=":root{"+t+"main"+n+":"+Fe()+";"+t+"sub"+n+":"+Re()+"}"}}function Ne(){if(!xe){var e=Oe();if(e&&(xe=e.getElementById(De),!xe)){var t=Ee();t&&(xe=e.createElement("div"),xe.id=De,xe.style.display="none",t.appendChild(xe),He(Ye.m),Ve(Ye.s))}}return xe}function Ie(e){return function(t){if(t){t=Number(t),Ye[e]=t;var n=Ne();n&&(n.dataset?n.dataset[e]=t+"":n.setAttribute("data-"+e,t+""))}return $e(),Ye[e]}}var He=Ie(Ce);function Ae(e,t){return function(n){var i,r=Ne();if(r){var a=r.dataset?r.dataset[e]:r.getAttribute("data-"+e);a&&(i=Number(a))}return i||(i=Ye[e]),n?Number(n)<i?t():n:i}}var Fe=Ae(Ce,ze);function ze(){return He(Fe()+1)}var Ve=Ie(Te),We=Ae(Te,Be);function Re(){return Fe()+We()}function Be(){return Ve(We()+1),Re()}var qe={setCurrent:He,getCurrent:Fe,getNext:ze,setSubCurrent:Ve,getSubCurrent:Re,getSubNext:Be,getMax:je};$e();var Ue=qe;const Ge={ByPager:c,ByTable:Y,ByForm:J,ByPageSearch:ne,ByFoldSearch:le,BySelect:me,ByDatePickerRange:we};Ue.setCurrent(99999);const Ke=e=>{Object.keys(Ge).forEach((t=>{e.component(t,Ge[t])}))};"undefined"!==typeof window&&window.Vue&&Ke(window.Vue);var Je={install:Ke},Xe=Je}(),r}()}));
package/lib/index.css CHANGED
@@ -1 +1 @@
1
- #pager{padding:10px 0;background:#fff;border-top:1px solid #f2f2f3;width:100%;display:flex;justify-content:flex-end}#pager ::v-deep .el-pagination__jump{margin-left:0}#pager ::v-deep .el-pagination ul li{border:1px solid #e7e7f1}#pager ::v-deep .el-pagination button{border:1px solid #e7e7f1}#pager ::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active{background-color:#f3f3fe;color:#000}#pager ::v-deep .el-pagination.is-background .btn-prev{background-color:#fff}#pager ::v-deep .el-pagination.is-background .btn-next{background-color:#fff}#pager ::v-deep .el-pagination.is-background .el-pager li{background-color:#fff}.b-page-search .footer{position:relative}.b-page-search .header{color:red}.b-page-search .btn{display:flex;justify-content:space-between}.b-page-search .handle-btn{display:flex;flex-wrap:nowrap}.b-page-search .page-search{position:relative}.b-page-search .fold{position:absolute;bottom:-30px;left:40%}.b-fold-search{text-align:center;position:relative}.b-fold-search div{display:inline-block;background-color:#fff;cursor:pointer;padding:0 15px;height:34px;line-height:32px;font-size:14px;border-radius:0 0 5px 5px}.b-fold-search span{color:#999}.b-fold-search img{width:15px;height:15px}.b-table .table-row-overflow-line-2{overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;line-height:15px}.b-table .text_pointer_primary{cursor:pointer;color:#409eff}.b-table .table_wrapper{background-color:#fff;padding:10px 10px 0 10px;border-radius:5px}.b-table .vxe-header--column.group-split,.b-table .vxe-body--column.group-split{background:#e8eaec}.table_wrapper{background-color:#fff;padding:10px 10px 0 10px;border-radius:5px}.form_wrapper{background-color:#fff;padding:10px 0 5px 0px;border-radius:5px}.b-form .el-input,.b-form .el-select{max-width:none !important}.b-form .el-input-group{vertical-align:middle !important}.b-form .el-form-item{margin-bottom:0px !important}.b-form .el-row{display:flex;flex-wrap:wrap}.b-form .b-picker{display:flex;align-items:center}.b-form .b-picker .btn{display:flex;margin-left:8px}.b-form .b-picker .item{color:#606266;font-size:12px;white-space:nowrap;margin:0 3px;cursor:pointer}.b-form .b-picker .item_active{color:#409eff}.b-form .store-selector{display:flex}.b-form .store-selector .store-select-container{display:inline-block;width:calc(100% - 104px);vertical-align:top;border:solid 1px rgba(0,0,0,.2);padding:0 10px;border-radius:5px}.b-form .store-selector .store-select-container.shrink{border:none;padding:0}.b-form .store-selector .store-select-container.shrink .el-checkbox-group{overflow:hidden}.b-form .store-selector .selected_all,.b-form .store-selector .store-select-container .el-checkbox{border-width:1px !important;border-color:rgba(0,0,0,0);padding:0 4px !important;margin:5px 10px 5px 0 !important}.b-form .store-selector .selected_all.is-checked,.b-form .store-selector .store-select-container .el-checkbox.is-checked{border-color:#409eff}.b-form .store-selector .el-radio-group{width:100% !important}.b-form .store-selector .el-checkbox-group{line-height:1;width:100% !important}.b-form .store-selector label{margin:0 10px 0 0 !important;padding:0 5px !important}.b-form .store-selector .leave{color:#adadad}.b-form .store-selector .openShrink{vertical-align:top}.b-form .consult_select .consult-select-container{display:inline-block;width:calc(100% - 104px);vertical-align:top;border:solid 1px rgba(0,0,0,.2);padding:0 10px;border-radius:5px}.b-form .consult_select .consult-select-container.shrink{border:none;padding:0}.b-form .consult_select .consult-select-container.shrink .el-radio-group.Eng{visibility:hidden;display:none}.b-form .consult_select .consult-select-container.shrink .el-checkbox-group{overflow:hidden}.b-form .consult_select .selected_all,.b-form .consult_select .consult-select-container .el-checkbox{border-width:1px !important;border-color:rgba(0,0,0,0);padding:0 4px !important;margin:5px 10px 5px 0 !important}.b-form .consult_select .selected_all.is-checked,.b-form .consult_select .consult-select-container .el-checkbox.is-checked{border-color:#409eff}.b-form .consult_select .el-radio-group{width:100% !important}.b-form .consult_select .el-checkbox-group{line-height:1;max-height:75px;overflow-y:auto;width:100% !important}.b-form .consult_select label{margin:0 10px 0 0 !important;padding:0 5px !important}.b-form .consult_select .leave{color:#adadad}.b-form .consult_select .el-checkbox__inner{display:none}.b-form .date-selector{display:inline-block}.b-form .date-selector .el-range-editor--large.el-input__inner{height:36px;line-height:36px}.b-form .date-selector .el-date-editor{margin-right:10px;vertical-align:middle}.b-form .date-selector .el-date-editor ::v-deep .el-range-separator{width:10%;padding:0}.b-form .date-selector .quickBtns{display:inline-block}.b-form .date-selector .quickBtns .el-button{color:#606266}.b-form .date-selector .quickBtns .el-button.active{color:#409eff}.b-form .store-select-container{display:inline-block;width:calc(100% - 104px);vertical-align:top;border:solid 1px rgba(0,0,0,.2);padding:0 10px;border-radius:5px}.b-form .store-select-container.shrink{border:none;padding:0}.b-form .store-select-container.shrink .el-radio-group.Eng{visibility:hidden;display:none}.b-form .store-select-container.shrink .el-checkbox-group{overflow:hidden}.b-form .dialog{display:flex}.b-form .dialog .dialog-container{height:60vh;min-width:50rem}.b-form .dialog .dialog-container .dia-content{position:relative;height:80%}.b-form .dialog .dialog-container .selected{position:absolute;right:0;top:0;width:25%;height:calc(100% + 40px);overflow-y:scroll;border:1px solid #ddd;color:#000}.b-form .dialog .dialog-container .selected .selected-title{display:flex;justify-content:space-between;position:sticky;top:0;width:100%;height:2.5rem;line-height:2.5rem;font-weight:bold;padding:0 1.25rem;background-color:#f8f8f8;border-bottom:1px solid #ddd;z-index:99}.b-form .dialog .dialog-container .selected .selected-title .clearAll{font-size:.75rem;color:#999;cursor:pointer;font-weight:normal}.b-form .dialog .dialog-container .selected .selected-list{padding-left:.625rem;padding-bottom:.625rem}.b-form .dialog .dialog-container .selected .selected-list .list-tags{margin-top:.625rem}.b-form .dialog .dialog-container .selected .selected-list .list-tags .el-tags{width:calc(100% - 10px);color:#000;display:flex;align-items:center}.b-form .dialog .dia-title{display:flex;justify-content:flex-end;align-items:center}.b-form .dialog .dia-title>.el-input{margin-right:auto;width:40%}.b-form .dialog .header{margin-top:.625rem;height:40px !important;border:1px solid #ddd;border-bottom:none;line-height:40px;background-color:#f8f8f8;width:74%}.b-form .dialog .can-add{width:74%;height:100%;border:1px solid #ddd}.b-form .dialog .can-add .el-aside{padding-top:.625rem}.b-form .dialog .can-add .el-aside .list-list{padding-left:1.25rem}.b-form .dialog .can-add .el-aside .list-list .list-title{height:1.875rem;line-height:1.875rem;font-weight:bold}.b-form .dialog .can-add .el-aside .list-list .list-content{padding-left:1.25rem;color:#666}.b-form .dialog .can-add .el-aside .list-list .list-content .list-lists{height:1.875rem;line-height:1.875rem;list-style:none;cursor:pointer}.b-form .dialog .can-add .el-aside .list-list .list-content .list-lists:hover{color:#197afb}.b-form .dialog .can-add .check-content .check-title{margin-bottom:1.25rem;font-weight:bold}.b-form .dialog .can-add .check-content .check-all{width:100%;height:1.875rem;line-height:1.875rem;padding-left:.625rem;border-radius:.3125rem;background-color:#eee;font-weight:bold}.b-form .dialog .can-add .check-content .check-list{padding-left:.625rem}.b-form .dialog .can-add .check-content .check-list .el-checkbox{width:50%;margin:0 0 .625rem 0}.b-form .dialog .btn{text-align:right}.custom_dialog_class .el-dialog__header{display:none !important}.custom_dialog_class .el-dialog__body{padding:0 0 0 20px !important}.custom_dialog_class .el-dialog__body{border-top:0px !important}.chosen{border:solid 2px #a48bec !important}.drag_ul{height:480px;overflow:hidden;overflow-y:auto}.remove{padding:0 10px;border-left:1px solid #cbcbcb;height:12px;cursor:pointer}.icon-box{margin:0 10px}.drag_li_text{margin-right:8px;color:#606266}.drag_li_box{display:flex;justify-content:space-between;align-items:center;margin-top:10px;height:36px;line-height:36px;color:#cbcbcb;background-color:#fff;box-shadow:0 0 1px rgba(0,0,0,.1);cursor:move}.fixedClass{width:100%;height:2px;border-bottom:2px dashed #ccc;padding-top:10px}.recover{cursor:pointer;color:#8966f3}.drag_text_box{height:60px;line-height:60px;margin-left:5px}.drag_title{margin:10px 115px 10px 0;font-size:14px;font-weight:700;color:#666}.box_title{margin:10px 0;font-size:14px;font-weight:700;color:#333}.drag_box{flex:1;height:540px;padding:0 10px;background-color:#fafafa}.el-dialog-box{display:flex;height:550px}.el-dialog-box .left_box{padding-top:10px;width:600px}.el-dialog-box .right_box{flex:1}.draggable_title{font-size:12px;font-weight:700;margin:20px 0}.left_box_body{display:flex;height:444px;border:1px solid #ececec}.left_box_body .left_nav{width:85px;padding:10px 0 0 10px;border-right:1px solid #ececec;list-style:none}.left_box_body .left_nav ul{padding:0;margin:0}.left_box_body .left_nav ul li{list-style:none;padding:10px 0;font-weight:700;color:#333;cursor:pointer}.left_box_body .left_menu{flex:1;padding:10px 0 0 20px;overflow:hidden;overflow-y:auto}.left_box_body .left_menu .checkbox_title{margin:20px 0}.left_box_body .left_menu div:nth-child(1) .checkbox_title{margin-top:8px}.left_box_body .active{color:#8966f3 !important}.left_box_body ::v-deep .el-form--label-top .el-form-item__label{padding:0;font-size:12px}.left_box_body ::v-deep .el-radio__label{font-size:12px !important}.flex{display:flex}.row-wrap,.column-wrap{flex-wrap:wrap}.column{display:flex;flex-direction:column}.row.column-c,.column.row-c{align-items:center}.row{display:flex;flex-direction:row}.row.row-c,.column.column-c{justify-content:center}.row.row-sb,.column.column-sb{justify-content:space-between}.cell,.cell-1{flex:1}
1
+ #pager{padding:10px 0;background:#fff;border-top:1px solid #f2f2f3;width:100%;display:flex;justify-content:flex-end}#pager ::v-deep .el-pagination__jump{margin-left:0}#pager ::v-deep .el-pagination ul li{border:1px solid #e7e7f1}#pager ::v-deep .el-pagination button{border:1px solid #e7e7f1}#pager ::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active{background-color:#f3f3fe;color:#000}#pager ::v-deep .el-pagination.is-background .btn-prev{background-color:#fff}#pager ::v-deep .el-pagination.is-background .btn-next{background-color:#fff}#pager ::v-deep .el-pagination.is-background .el-pager li{background-color:#fff}.b-page-search .footer{position:relative}.b-page-search .header{color:red}.b-page-search .btn{display:flex;justify-content:space-between}.b-page-search .handle-btn{display:flex;flex-wrap:nowrap}.b-page-search .page-search{position:relative}.b-page-search .fold{position:absolute;bottom:-30px;left:40%}.b-fold-search{text-align:center;position:relative}.b-fold-search div{display:inline-block;background-color:#fff;cursor:pointer;padding:0 15px;height:34px;line-height:32px;font-size:14px;border-radius:0 0 5px 5px}.b-fold-search span{color:#999}.b-fold-search img{width:15px;height:15px}.b-table .table-row-overflow-line-2{overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;display:-webkit-box;-webkit-box-orient:vertical;line-height:15px}.b-table .text_pointer_primary{cursor:pointer;color:#409eff}.b-table .table_wrapper{background-color:#fff;padding:10px 10px 0 10px;border-radius:5px}.b-table .vxe-header--column.group-split,.b-table .vxe-body--column.group-split{background:#e8eaec}.table_wrapper{background-color:#fff;padding:10px 10px 0 10px;border-radius:5px}.form_wrapper{background-color:#fff;padding:10px 0 5px 0px;border-radius:5px}.pager-container{display:flex;align-items:center;gap:16px}.reset-button{margin-top:8px}.b-form .el-input,.b-form .el-select{max-width:none !important}.b-form .el-input-group{vertical-align:middle !important}.b-form .el-form-item{margin-bottom:0px !important}.b-form .el-row{display:flex;flex-wrap:wrap}.b-form .b-picker{display:flex;align-items:center}.b-form .b-picker .btn{display:flex;margin-left:8px}.b-form .b-picker .item{color:#606266;font-size:12px;white-space:nowrap;margin:0 3px;cursor:pointer}.b-form .b-picker .item_active{color:#409eff}.b-form .store-selector{display:flex}.b-form .store-selector .store-select-container{display:inline-block;width:calc(100% - 104px);vertical-align:top;border:solid 1px rgba(0,0,0,.2);padding:0 10px;border-radius:5px}.b-form .store-selector .store-select-container.shrink{border:none;padding:0}.b-form .store-selector .store-select-container.shrink .el-checkbox-group{overflow:hidden}.b-form .store-selector .selected_all,.b-form .store-selector .store-select-container .el-checkbox{border-width:1px !important;border-color:rgba(0,0,0,0);padding:0 4px !important;margin:5px 10px 5px 0 !important}.b-form .store-selector .selected_all.is-checked,.b-form .store-selector .store-select-container .el-checkbox.is-checked{border-color:#409eff}.b-form .store-selector .el-radio-group{width:100% !important}.b-form .store-selector .el-checkbox-group{line-height:1;width:100% !important}.b-form .store-selector label{margin:0 10px 0 0 !important;padding:0 5px !important}.b-form .store-selector .leave{color:#adadad}.b-form .store-selector .openShrink{vertical-align:top}.b-form .consult_select .consult-select-container{display:inline-block;width:calc(100% - 104px);vertical-align:top;border:solid 1px rgba(0,0,0,.2);padding:0 10px;border-radius:5px}.b-form .consult_select .consult-select-container.shrink{border:none;padding:0}.b-form .consult_select .consult-select-container.shrink .el-radio-group.Eng{visibility:hidden;display:none}.b-form .consult_select .consult-select-container.shrink .el-checkbox-group{overflow:hidden}.b-form .consult_select .selected_all,.b-form .consult_select .consult-select-container .el-checkbox{border-width:1px !important;border-color:rgba(0,0,0,0);padding:0 4px !important;margin:5px 10px 5px 0 !important}.b-form .consult_select .selected_all.is-checked,.b-form .consult_select .consult-select-container .el-checkbox.is-checked{border-color:#409eff}.b-form .consult_select .el-radio-group{width:100% !important}.b-form .consult_select .el-checkbox-group{line-height:1;max-height:75px;overflow-y:auto;width:100% !important}.b-form .consult_select label{margin:0 10px 0 0 !important;padding:0 5px !important}.b-form .consult_select .leave{color:#adadad}.b-form .consult_select .el-checkbox__inner{display:none}.b-form .date-selector{display:inline-block}.b-form .date-selector .el-range-editor--large.el-input__inner{height:36px;line-height:36px}.b-form .date-selector .el-date-editor{margin-right:10px;vertical-align:middle}.b-form .date-selector .el-date-editor ::v-deep .el-range-separator{width:10%;padding:0}.b-form .date-selector .quickBtns{display:inline-block}.b-form .date-selector .quickBtns .el-button{color:#606266}.b-form .date-selector .quickBtns .el-button.active{color:#409eff}.b-form .store-select-container{display:inline-block;width:calc(100% - 104px);vertical-align:top;border:solid 1px rgba(0,0,0,.2);padding:0 10px;border-radius:5px}.b-form .store-select-container.shrink{border:none;padding:0}.b-form .store-select-container.shrink .el-radio-group.Eng{visibility:hidden;display:none}.b-form .store-select-container.shrink .el-checkbox-group{overflow:hidden}.b-form .dialog{display:flex}.b-form .dialog .dialog-container{height:60vh;min-width:50rem}.b-form .dialog .dialog-container .dia-content{position:relative;height:80%}.b-form .dialog .dialog-container .selected{position:absolute;right:0;top:0;width:25%;height:calc(100% + 40px);overflow-y:scroll;border:1px solid #ddd;color:#000}.b-form .dialog .dialog-container .selected .selected-title{display:flex;justify-content:space-between;position:sticky;top:0;width:100%;height:2.5rem;line-height:2.5rem;font-weight:bold;padding:0 1.25rem;background-color:#f8f8f8;border-bottom:1px solid #ddd;z-index:99}.b-form .dialog .dialog-container .selected .selected-title .clearAll{font-size:.75rem;color:#999;cursor:pointer;font-weight:normal}.b-form .dialog .dialog-container .selected .selected-list{padding-left:.625rem;padding-bottom:.625rem}.b-form .dialog .dialog-container .selected .selected-list .list-tags{margin-top:.625rem}.b-form .dialog .dialog-container .selected .selected-list .list-tags .el-tags{width:calc(100% - 10px);color:#000;display:flex;align-items:center}.b-form .dialog .dia-title{display:flex;justify-content:flex-end;align-items:center}.b-form .dialog .dia-title>.el-input{margin-right:auto;width:40%}.b-form .dialog .header{margin-top:.625rem;height:40px !important;border:1px solid #ddd;border-bottom:none;line-height:40px;background-color:#f8f8f8;width:74%}.b-form .dialog .can-add{width:74%;height:100%;border:1px solid #ddd}.b-form .dialog .can-add .el-aside{padding-top:.625rem}.b-form .dialog .can-add .el-aside .list-list{padding-left:1.25rem}.b-form .dialog .can-add .el-aside .list-list .list-title{height:1.875rem;line-height:1.875rem;font-weight:bold}.b-form .dialog .can-add .el-aside .list-list .list-content{padding-left:1.25rem;color:#666}.b-form .dialog .can-add .el-aside .list-list .list-content .list-lists{height:1.875rem;line-height:1.875rem;list-style:none;cursor:pointer}.b-form .dialog .can-add .el-aside .list-list .list-content .list-lists:hover{color:#197afb}.b-form .dialog .can-add .check-content .check-title{margin-bottom:1.25rem;font-weight:bold}.b-form .dialog .can-add .check-content .check-all{width:100%;height:1.875rem;line-height:1.875rem;padding-left:.625rem;border-radius:.3125rem;background-color:#eee;font-weight:bold}.b-form .dialog .can-add .check-content .check-list{padding-left:.625rem}.b-form .dialog .can-add .check-content .check-list .el-checkbox{width:50%;margin:0 0 .625rem 0}.b-form .dialog .btn{text-align:right}.custom_dialog_class .el-dialog__header{display:none !important}.custom_dialog_class .el-dialog__body{padding:0 0 0 20px !important}.custom_dialog_class .el-dialog__body{border-top:0px !important}.chosen{border:solid 2px #a48bec !important}.drag_ul{height:480px;overflow:hidden;overflow-y:auto}.remove{padding:0 10px;border-left:1px solid #cbcbcb;height:12px;cursor:pointer}.icon-box{margin:0 10px}.drag_li_text{margin-right:8px;color:#606266}.drag_li_box{display:flex;justify-content:space-between;align-items:center;margin-top:10px;height:36px;line-height:36px;color:#cbcbcb;background-color:#fff;box-shadow:0 0 1px rgba(0,0,0,.1);cursor:move}.fixedClass{width:100%;height:2px;border-bottom:2px dashed #ccc;padding-top:10px}.recover{cursor:pointer;color:#8966f3}.drag_text_box{height:60px;line-height:60px;margin-left:5px}.drag_title{margin:10px 115px 10px 0;font-size:14px;font-weight:700;color:#666}.box_title{margin:10px 0;font-size:14px;font-weight:700;color:#333}.drag_box{flex:1;height:540px;padding:0 10px;background-color:#fafafa}.el-dialog-box{display:flex;height:550px}.el-dialog-box .left_box{padding-top:10px;width:600px}.el-dialog-box .right_box{flex:1}.draggable_title{font-size:12px;font-weight:700;margin:20px 0}.left_box_body{display:flex;height:444px;border:1px solid #ececec}.left_box_body .left_nav{width:85px;padding:10px 0 0 10px;border-right:1px solid #ececec;list-style:none}.left_box_body .left_nav ul{padding:0;margin:0}.left_box_body .left_nav ul li{list-style:none;padding:10px 0;font-weight:700;color:#333;cursor:pointer}.left_box_body .left_menu{flex:1;padding:10px 0 0 20px;overflow:hidden;overflow-y:auto}.left_box_body .left_menu .checkbox_title{margin:20px 0}.left_box_body .left_menu div:nth-child(1) .checkbox_title{margin-top:8px}.left_box_body .active{color:#8966f3 !important}.left_box_body ::v-deep .el-form--label-top .el-form-item__label{padding:0;font-size:12px}.left_box_body ::v-deep .el-radio__label{font-size:12px !important}.flex{display:flex}.row-wrap,.column-wrap{flex-wrap:wrap}.column{display:flex;flex-direction:column}.row.column-c,.column.row-c{align-items:center}.row{display:flex;flex-direction:row}.row.row-c,.column.column-c{justify-content:center}.row.row-sb,.column.column-sb{justify-content:space-between}.cell,.cell-1{flex:1}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weitutech/by-components",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "private": false,
5
5
  "main": "lib/by-components.umd.js",
6
6
  "scripts": {
@@ -1 +0,0 @@
1
- .pager-container[data-v-4116d162]{display:flex;align-items:center;gap:16px}.reset-button[data-v-4116d162]{margin-top:8px}