@weitutech/by-components 1.1.19 → 1.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/by-components.common.js +20 -16
- package/lib/by-components.umd.js +20 -16
- package/lib/by-components.umd.min.js +1 -1
- package/package.json +1 -1
- package/deploy.sh +0 -25
- package/docs-setup-guide.md +0 -338
package/README.md
CHANGED
|
@@ -60741,8 +60741,8 @@ var component = normalizeComponent(
|
|
|
60741
60741
|
)
|
|
60742
60742
|
|
|
60743
60743
|
/* harmony default export */ var pager = (component.exports);
|
|
60744
|
-
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=
|
|
60745
|
-
var
|
|
60744
|
+
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=0e6b1651
|
|
60745
|
+
var tablevue_type_template_id_0e6b1651_render = function render() {
|
|
60746
60746
|
var _vm = this,
|
|
60747
60747
|
_c = _vm._self._c;
|
|
60748
60748
|
return _c('div', [_c('vxe-grid', _vm._g(_vm._b({
|
|
@@ -60815,7 +60815,7 @@ var tablevue_type_template_id_721432cb_render = function render() {
|
|
|
60815
60815
|
}
|
|
60816
60816
|
}) : _vm._e()], 1);
|
|
60817
60817
|
};
|
|
60818
|
-
var
|
|
60818
|
+
var tablevue_type_template_id_0e6b1651_staticRenderFns = [];
|
|
60819
60819
|
|
|
60820
60820
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
60821
60821
|
var es_array_push = __webpack_require__(4114);
|
|
@@ -61510,9 +61510,6 @@ const replaceColumnWidthToColumns = (name, columns) => {
|
|
|
61510
61510
|
const rewriteWidthColumns = (fromColumns, toColumns) => {
|
|
61511
61511
|
if (!fromColumns || !toColumns) return [];
|
|
61512
61512
|
if (!fromColumns || fromColumns.length === 0) return toColumns;
|
|
61513
|
-
|
|
61514
|
-
// console.log('>>>>>>>>>> 重写列宽 fromColumns', fromColumns)
|
|
61515
|
-
|
|
61516
61513
|
const result = [];
|
|
61517
61514
|
for (const col of toColumns) {
|
|
61518
61515
|
const fromCol = fromColumns.find(from => from.field === col.field);
|
|
@@ -61555,6 +61552,9 @@ const rewriteWidthColumns = (fromColumns, toColumns) => {
|
|
|
61555
61552
|
* @param {*} slotSet 收集的slot
|
|
61556
61553
|
*/
|
|
61557
61554
|
const recursiveSlot = (fields, slotSet) => {
|
|
61555
|
+
if (!fields || !Array.isArray(fields)) {
|
|
61556
|
+
return;
|
|
61557
|
+
}
|
|
61558
61558
|
fields.forEach(col => {
|
|
61559
61559
|
if (col.slots) {
|
|
61560
61560
|
const slots = Object.values(col.slots);
|
|
@@ -61718,12 +61718,16 @@ const recursiveSlot = (fields, slotSet) => {
|
|
|
61718
61718
|
removeCachedTableColumns(this.name);
|
|
61719
61719
|
this.setHasCache();
|
|
61720
61720
|
if (this.$refs.xGrid) {
|
|
61721
|
-
console.log('>>>>>>>>>> 重置为 this.originColumns', this.originColumns)
|
|
61721
|
+
// console.log('>>>>>>>>>> 重置为 this.originColumns', this.originColumns)
|
|
61722
61722
|
// 直接重新设置列配置
|
|
61723
61723
|
this.$refs.xGrid.reloadColumn(this.originColumns);
|
|
61724
61724
|
}
|
|
61725
61725
|
},
|
|
61726
61726
|
pageChange(values) {
|
|
61727
|
+
// 切换页码时,将表格滚动到顶部
|
|
61728
|
+
if (this.$refs.xGrid) {
|
|
61729
|
+
this.$refs.xGrid.scrollTo(0, 0);
|
|
61730
|
+
}
|
|
61727
61731
|
this.$emit('page-change', values);
|
|
61728
61732
|
},
|
|
61729
61733
|
copy(text) {
|
|
@@ -61828,8 +61832,8 @@ const recursiveSlot = (fields, slotSet) => {
|
|
|
61828
61832
|
;
|
|
61829
61833
|
var table_component = normalizeComponent(
|
|
61830
61834
|
components_tablevue_type_script_lang_js,
|
|
61831
|
-
|
|
61832
|
-
|
|
61835
|
+
tablevue_type_template_id_0e6b1651_render,
|
|
61836
|
+
tablevue_type_template_id_0e6b1651_staticRenderFns,
|
|
61833
61837
|
false,
|
|
61834
61838
|
null,
|
|
61835
61839
|
null,
|
|
@@ -62615,8 +62619,8 @@ var form_component = normalizeComponent(
|
|
|
62615
62619
|
)
|
|
62616
62620
|
|
|
62617
62621
|
/* harmony default export */ var form_form = (form_component.exports);
|
|
62618
|
-
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/page-search/page-search.vue?vue&type=template&id=
|
|
62619
|
-
var
|
|
62622
|
+
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/page-search/page-search.vue?vue&type=template&id=feae5b44
|
|
62623
|
+
var page_searchvue_type_template_id_feae5b44_render = function render() {
|
|
62620
62624
|
var _vm = this,
|
|
62621
62625
|
_c = _vm._self._c;
|
|
62622
62626
|
return _c('div', {
|
|
@@ -62662,7 +62666,7 @@ var page_searchvue_type_template_id_18118e0b_render = function render() {
|
|
|
62662
62666
|
})], null, true)
|
|
62663
62667
|
}, 'by-form', _vm.searchFormConfig, false))], 1);
|
|
62664
62668
|
};
|
|
62665
|
-
var
|
|
62669
|
+
var page_searchvue_type_template_id_feae5b44_staticRenderFns = [];
|
|
62666
62670
|
|
|
62667
62671
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/page-search/page-search.vue?vue&type=script&lang=js
|
|
62668
62672
|
|
|
@@ -62700,8 +62704,8 @@ var page_searchvue_type_template_id_18118e0b_staticRenderFns = [];
|
|
|
62700
62704
|
const foldField = (_flexible$foldField = flexible === null || flexible === void 0 ? void 0 : flexible.foldField) !== null && _flexible$foldField !== void 0 ? _flexible$foldField : [];
|
|
62701
62705
|
// 如果没有配置flexible, 则默认为false
|
|
62702
62706
|
if (flexible) {
|
|
62703
|
-
//只要foldField至少有一个存在于formItems
|
|
62704
|
-
return foldField.some(field => formItems.some(item => item.field === field));
|
|
62707
|
+
//只要foldField至少有一个存在于formItems中(并且这个item的isHidden===false),就要显示展开更多
|
|
62708
|
+
return foldField.some(field => formItems.some(item => item.field === field && !item.isHidden));
|
|
62705
62709
|
} else {
|
|
62706
62710
|
return false;
|
|
62707
62711
|
}
|
|
@@ -62775,8 +62779,8 @@ var page_searchvue_type_template_id_18118e0b_staticRenderFns = [];
|
|
|
62775
62779
|
;
|
|
62776
62780
|
var page_search_component = normalizeComponent(
|
|
62777
62781
|
page_search_page_searchvue_type_script_lang_js,
|
|
62778
|
-
|
|
62779
|
-
|
|
62782
|
+
page_searchvue_type_template_id_feae5b44_render,
|
|
62783
|
+
page_searchvue_type_template_id_feae5b44_staticRenderFns,
|
|
62780
62784
|
false,
|
|
62781
62785
|
null,
|
|
62782
62786
|
null,
|
package/lib/by-components.umd.js
CHANGED
|
@@ -60751,8 +60751,8 @@ var component = normalizeComponent(
|
|
|
60751
60751
|
)
|
|
60752
60752
|
|
|
60753
60753
|
/* harmony default export */ var pager = (component.exports);
|
|
60754
|
-
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=
|
|
60755
|
-
var
|
|
60754
|
+
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/table/index.vue?vue&type=template&id=0e6b1651
|
|
60755
|
+
var tablevue_type_template_id_0e6b1651_render = function render() {
|
|
60756
60756
|
var _vm = this,
|
|
60757
60757
|
_c = _vm._self._c;
|
|
60758
60758
|
return _c('div', [_c('vxe-grid', _vm._g(_vm._b({
|
|
@@ -60825,7 +60825,7 @@ var tablevue_type_template_id_721432cb_render = function render() {
|
|
|
60825
60825
|
}
|
|
60826
60826
|
}) : _vm._e()], 1);
|
|
60827
60827
|
};
|
|
60828
|
-
var
|
|
60828
|
+
var tablevue_type_template_id_0e6b1651_staticRenderFns = [];
|
|
60829
60829
|
|
|
60830
60830
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
60831
60831
|
var es_array_push = __webpack_require__(4114);
|
|
@@ -61520,9 +61520,6 @@ const replaceColumnWidthToColumns = (name, columns) => {
|
|
|
61520
61520
|
const rewriteWidthColumns = (fromColumns, toColumns) => {
|
|
61521
61521
|
if (!fromColumns || !toColumns) return [];
|
|
61522
61522
|
if (!fromColumns || fromColumns.length === 0) return toColumns;
|
|
61523
|
-
|
|
61524
|
-
// console.log('>>>>>>>>>> 重写列宽 fromColumns', fromColumns)
|
|
61525
|
-
|
|
61526
61523
|
const result = [];
|
|
61527
61524
|
for (const col of toColumns) {
|
|
61528
61525
|
const fromCol = fromColumns.find(from => from.field === col.field);
|
|
@@ -61565,6 +61562,9 @@ const rewriteWidthColumns = (fromColumns, toColumns) => {
|
|
|
61565
61562
|
* @param {*} slotSet 收集的slot
|
|
61566
61563
|
*/
|
|
61567
61564
|
const recursiveSlot = (fields, slotSet) => {
|
|
61565
|
+
if (!fields || !Array.isArray(fields)) {
|
|
61566
|
+
return;
|
|
61567
|
+
}
|
|
61568
61568
|
fields.forEach(col => {
|
|
61569
61569
|
if (col.slots) {
|
|
61570
61570
|
const slots = Object.values(col.slots);
|
|
@@ -61728,12 +61728,16 @@ const recursiveSlot = (fields, slotSet) => {
|
|
|
61728
61728
|
removeCachedTableColumns(this.name);
|
|
61729
61729
|
this.setHasCache();
|
|
61730
61730
|
if (this.$refs.xGrid) {
|
|
61731
|
-
console.log('>>>>>>>>>> 重置为 this.originColumns', this.originColumns)
|
|
61731
|
+
// console.log('>>>>>>>>>> 重置为 this.originColumns', this.originColumns)
|
|
61732
61732
|
// 直接重新设置列配置
|
|
61733
61733
|
this.$refs.xGrid.reloadColumn(this.originColumns);
|
|
61734
61734
|
}
|
|
61735
61735
|
},
|
|
61736
61736
|
pageChange(values) {
|
|
61737
|
+
// 切换页码时,将表格滚动到顶部
|
|
61738
|
+
if (this.$refs.xGrid) {
|
|
61739
|
+
this.$refs.xGrid.scrollTo(0, 0);
|
|
61740
|
+
}
|
|
61737
61741
|
this.$emit('page-change', values);
|
|
61738
61742
|
},
|
|
61739
61743
|
copy(text) {
|
|
@@ -61838,8 +61842,8 @@ const recursiveSlot = (fields, slotSet) => {
|
|
|
61838
61842
|
;
|
|
61839
61843
|
var table_component = normalizeComponent(
|
|
61840
61844
|
components_tablevue_type_script_lang_js,
|
|
61841
|
-
|
|
61842
|
-
|
|
61845
|
+
tablevue_type_template_id_0e6b1651_render,
|
|
61846
|
+
tablevue_type_template_id_0e6b1651_staticRenderFns,
|
|
61843
61847
|
false,
|
|
61844
61848
|
null,
|
|
61845
61849
|
null,
|
|
@@ -62625,8 +62629,8 @@ var form_component = normalizeComponent(
|
|
|
62625
62629
|
)
|
|
62626
62630
|
|
|
62627
62631
|
/* harmony default export */ var form_form = (form_component.exports);
|
|
62628
|
-
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/page-search/page-search.vue?vue&type=template&id=
|
|
62629
|
-
var
|
|
62632
|
+
;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"72942c6c-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/page-search/page-search.vue?vue&type=template&id=feae5b44
|
|
62633
|
+
var page_searchvue_type_template_id_feae5b44_render = function render() {
|
|
62630
62634
|
var _vm = this,
|
|
62631
62635
|
_c = _vm._self._c;
|
|
62632
62636
|
return _c('div', {
|
|
@@ -62672,7 +62676,7 @@ var page_searchvue_type_template_id_18118e0b_render = function render() {
|
|
|
62672
62676
|
})], null, true)
|
|
62673
62677
|
}, 'by-form', _vm.searchFormConfig, false))], 1);
|
|
62674
62678
|
};
|
|
62675
|
-
var
|
|
62679
|
+
var page_searchvue_type_template_id_feae5b44_staticRenderFns = [];
|
|
62676
62680
|
|
|
62677
62681
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/page-search/page-search.vue?vue&type=script&lang=js
|
|
62678
62682
|
|
|
@@ -62710,8 +62714,8 @@ var page_searchvue_type_template_id_18118e0b_staticRenderFns = [];
|
|
|
62710
62714
|
const foldField = (_flexible$foldField = flexible === null || flexible === void 0 ? void 0 : flexible.foldField) !== null && _flexible$foldField !== void 0 ? _flexible$foldField : [];
|
|
62711
62715
|
// 如果没有配置flexible, 则默认为false
|
|
62712
62716
|
if (flexible) {
|
|
62713
|
-
//只要foldField至少有一个存在于formItems
|
|
62714
|
-
return foldField.some(field => formItems.some(item => item.field === field));
|
|
62717
|
+
//只要foldField至少有一个存在于formItems中(并且这个item的isHidden===false),就要显示展开更多
|
|
62718
|
+
return foldField.some(field => formItems.some(item => item.field === field && !item.isHidden));
|
|
62715
62719
|
} else {
|
|
62716
62720
|
return false;
|
|
62717
62721
|
}
|
|
@@ -62785,8 +62789,8 @@ var page_searchvue_type_template_id_18118e0b_staticRenderFns = [];
|
|
|
62785
62789
|
;
|
|
62786
62790
|
var page_search_component = normalizeComponent(
|
|
62787
62791
|
page_search_page_searchvue_type_script_lang_js,
|
|
62788
|
-
|
|
62789
|
-
|
|
62792
|
+
page_searchvue_type_template_id_feae5b44_render,
|
|
62793
|
+
page_searchvue_type_template_id_feae5b44_staticRenderFns,
|
|
62790
62794
|
false,
|
|
62791
62795
|
null,
|
|
62792
62796
|
null,
|
|
@@ -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,{ByDatePickerRange:function(){return Me},ByFoldSearch:function(){return ce},ByForm:function(){return Z},ByPageSearch:function(){return re},ByPager:function(){return c},BySelect:function(){return ve},ByTable:function(){return E},default:function(){return Qe}}),"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&&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)},S=(e,t)=>{if(!e||!t)return[];if(!e||0===e.length)return t;const n=[];for(const i of t){const t=e.find((e=>e.field===i.field));if(i.children){const e={...i,children:S((null===t||void 0===t?void 0:t.children)||[],i.children)};t&&(null!==t&&void 0!==t&&t.width?e.width=t.width:delete e.width),n.push(e)}else{const e={...i};t&&(null!==t&&void 0!==t&&t.width?e.width=t.width:delete e.width),n.push(e)}}return n},C=(e,t)=>{e.forEach((e=>{if(e.slots){const n=Object.values(e.slots);n.forEach((e=>t.add(e)))}e.children&&C(e.children,t)}))};var T={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:[],tempColumns:[]}},mounted(){this.showResetCache=!!this.name},watch:{"gridOptions.columns":{handler(e){const t=S(this.tempColumns,e);this.originColumns=t},deep:!0}},computed:{options(){const{customColumnConfig:e,columns:t,...n}=this.gridOptions;this.originColumns=S(this.tempColumns,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 C(this.options.columns,i),[...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&&(console.log(">>>>>>>>>> 重置为 this.originColumns",this.originColumns),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){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,popover:"undefined"===typeof e.popover?"":e.popover,slots:this.gridOptions.customColumnConfig.slots.includes(e.key)?{default:e.key}:void 0})})),this.tempColumns=v(t);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,popover:"undefined"===typeof i.popover?"":i.popover,slots:this.gridOptions.customColumnConfig.slots.includes(i.key)?{default:i.key}:void 0})})),n};this.$emit("setGroupColumn",t(e))},closeCustomColumnDialog(){this.customTableVisible=!1}}},Y=T,O=l(Y,d,h,!1,null,null,null),E=O.exports,j=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){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",n.otherOptions||{},!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",n.otherOptions||{},!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",n.otherOptions||{},!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)},P=[],$=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)},N=[],I={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)}}}},H=I,A=l(H,$,N,!1,null,null,null),F=A.exports,z=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)},V=[],W=i(6879),R=i.n(W),B={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:R()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:R()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:R()().subtract(1,"days").format("YYYY-MM-DD"),end_time:R()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:R()().startOf("day").format("YYYY-MM-DD"),end_time:R()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:R()().startOf("week").format("YYYY-MM-DD"),end_time:R()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:R()().startOf("month").format("YYYY-MM-DD"),end_time:R()().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=>R()(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})}}},q=B,U=l(q,z,V,!1,null,null,null),G=U.exports,K={name:"ByForm",components:{PairNumberInput:F,CustomDatePicker:G},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.$nextTick((()=>{this.$emit("reset")}))}}},J=K,X=l(J,j,P,!1,null,"396e0fe6",null),Z=X.exports,Q=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)},ee=[],te={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,r;const a=null!==(e=null===(t=this.searchFormConfig)||void 0===t?void 0:t.formItems)&&void 0!==e?e:[],s=null!==(n=null===(i=this.searchFormConfig)||void 0===i?void 0:i.flexible)&&void 0!==n?n:void 0,o=null!==(r=null===s||void 0===s?void 0:s.foldField)&&void 0!==r?r:[];return!!s&&o.some((e=>a.some((t=>t.field===e))))},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")}}},ne=te,ie=l(ne,Q,ee,!1,null,null,null),re=ie.exports,ae=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)])},se=[],oe={data(){return{show:!1}},methods:{drawer(e){this.show=!this.show,this.$emit("change",this.show)}}},le=oe,ue=l(le,ae,se,!1,null,null,null),ce=ue.exports,de=function(){var e=this,t=e._self._c;return t("el-select",e._b({ref:"selection",attrs:{value:e.value,placeholder:e.config&&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),[e.config&&"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)},he=[],fe=i(7822),pe={name:"BYSelect",props:{...fe.Select.props,value:{type:[String,Number,Array]},placeholder:{type:String,default:"请选择"},options:{type:Array,default:()=>[]},config:{type:Object,default:()=>({})}},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)))}}}},me=pe,_e=l(me,de,he,!1,null,null,null),ve=_e.exports,ge=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&&e.config.startPlaceholder||"开始时间","end-placeholder":e.config&&e.config.endPlaceholder||"结束时间","range-separator":e.config&&e.config.rangeSeparator||"-",size:e.config&&e.config.size||"mini",type:"daterange"},on:{input:e.handleChange},model:{value:e.value[e.config&&e.config.field],callback:function(t){e.$set(e.value,e.config&&e.config.field,t)},expression:"value[config && 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)},ye=[],be={name:"ByDatePickerRange",props:{value:{type:Object,default:()=>({})},config:{type:Object,default:()=>({})}},data(){return{shortcuts:[{label:"上月",start_time:R()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:R()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:R()().subtract(1,"days").format("YYYY-MM-DD"),end_time:R()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:R()().startOf("day").format("YYYY-MM-DD"),end_time:R()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:R()().startOf("week").format("YYYY-MM-DD"),end_time:R()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:R()().startOf("month").format("YYYY-MM-DD"),end_time:R()().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=>R()(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])}}},we=be,ke=l(we,ge,ye,!1,null,null,null),Me=ke.exports,xe=null,De=null,Le=null,Se="z-index-manage",Ce=null,Te="z-index-style",Ye="m",Oe="s",Ee={m:1e3,s:1e3};function je(){return xe||"undefined"!==typeof document&&(xe=document),xe}function Pe(){return xe&&!De&&(De=xe.body||xe.getElementsByTagName("body")[0]),De}function $e(){var e=0,t=je();if(t){var n=Pe();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 Ne(){if(!Ce){var e=je();e&&(Ce=e.getElementById(Te),Ce||(Ce=e.createElement("style"),Ce.id=Te,e.getElementsByTagName("head")[0].appendChild(Ce)))}return Ce}function Ie(){var e=Ne();if(e){var t="--dom-",n="-z-index";e.innerHTML=":root{"+t+"main"+n+":"+Ve()+";"+t+"sub"+n+":"+qe()+"}"}}function He(){if(!Le){var e=je();if(e&&(Le=e.getElementById(Se),!Le)){var t=Pe();t&&(Le=e.createElement("div"),Le.id=Se,Le.style.display="none",t.appendChild(Le),Fe(Ee.m),Re(Ee.s))}}return Le}function Ae(e){return function(t){if(t){t=Number(t),Ee[e]=t;var n=He();n&&(n.dataset?n.dataset[e]=t+"":n.setAttribute("data-"+e,t+""))}return Ie(),Ee[e]}}var Fe=Ae(Ye);function ze(e,t){return function(n){var i,r=He();if(r){var a=r.dataset?r.dataset[e]:r.getAttribute("data-"+e);a&&(i=Number(a))}return i||(i=Ee[e]),n?Number(n)<i?t():n:i}}var Ve=ze(Ye,We);function We(){return Fe(Ve()+1)}var Re=Ae(Oe),Be=ze(Oe,Ue);function qe(){return Ve()+Be()}function Ue(){return Re(Be()+1),qe()}var Ge={setCurrent:Fe,getCurrent:Ve,getNext:We,setSubCurrent:Re,getSubCurrent:qe,getSubNext:Ue,getMax:$e};Ie();var Ke=Ge;const Je={ByPager:c,ByTable:E,ByForm:Z,ByPageSearch:re,ByFoldSearch:ce,BySelect:ve,ByDatePickerRange:Me};Ke.setCurrent(99999);const Xe=e=>{Object.keys(Je).forEach((t=>{e.component(t,Je[t]),e.component(t.toLowerCase(),Je[t])}))};"undefined"!==typeof window&&window.Vue&&Xe(window.Vue);var Ze={install:Xe},Qe=Ze}(),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,{ByDatePickerRange:function(){return Me},ByFoldSearch:function(){return ce},ByForm:function(){return Z},ByPageSearch:function(){return re},ByPager:function(){return c},BySelect:function(){return ve},ByTable:function(){return E},default:function(){return Qe}}),"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&&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)},S=(e,t)=>{if(!e||!t)return[];if(!e||0===e.length)return t;const n=[];for(const i of t){const t=e.find((e=>e.field===i.field));if(i.children){const e={...i,children:S((null===t||void 0===t?void 0:t.children)||[],i.children)};t&&(null!==t&&void 0!==t&&t.width?e.width=t.width:delete e.width),n.push(e)}else{const e={...i};t&&(null!==t&&void 0!==t&&t.width?e.width=t.width:delete e.width),n.push(e)}}return n},C=(e,t)=>{e&&Array.isArray(e)&&e.forEach((e=>{if(e.slots){const n=Object.values(e.slots);n.forEach((e=>t.add(e)))}e.children&&C(e.children,t)}))};var T={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:[],tempColumns:[]}},mounted(){this.showResetCache=!!this.name},watch:{"gridOptions.columns":{handler(e){const t=S(this.tempColumns,e);this.originColumns=t},deep:!0}},computed:{options(){const{customColumnConfig:e,columns:t,...n}=this.gridOptions;this.originColumns=S(this.tempColumns,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 C(this.options.columns,i),[...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.$refs.xGrid&&this.$refs.xGrid.scrollTo(0,0),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,popover:"undefined"===typeof e.popover?"":e.popover,slots:this.gridOptions.customColumnConfig.slots.includes(e.key)?{default:e.key}:void 0})})),this.tempColumns=v(t);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,popover:"undefined"===typeof i.popover?"":i.popover,slots:this.gridOptions.customColumnConfig.slots.includes(i.key)?{default:i.key}:void 0})})),n};this.$emit("setGroupColumn",t(e))},closeCustomColumnDialog(){this.customTableVisible=!1}}},Y=T,O=l(Y,d,h,!1,null,null,null),E=O.exports,j=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){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",n.otherOptions||{},!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",n.otherOptions||{},!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",n.otherOptions||{},!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)},P=[],$=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)},N=[],I={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)}}}},H=I,A=l(H,$,N,!1,null,null,null),F=A.exports,z=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)},V=[],W=i(6879),R=i.n(W),B={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:R()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:R()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:R()().subtract(1,"days").format("YYYY-MM-DD"),end_time:R()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:R()().startOf("day").format("YYYY-MM-DD"),end_time:R()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:R()().startOf("week").format("YYYY-MM-DD"),end_time:R()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:R()().startOf("month").format("YYYY-MM-DD"),end_time:R()().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=>R()(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})}}},q=B,U=l(q,z,V,!1,null,null,null),G=U.exports,K={name:"ByForm",components:{PairNumberInput:F,CustomDatePicker:G},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.$nextTick((()=>{this.$emit("reset")}))}}},J=K,X=l(J,j,P,!1,null,"396e0fe6",null),Z=X.exports,Q=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)},ee=[],te={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,r;const a=null!==(e=null===(t=this.searchFormConfig)||void 0===t?void 0:t.formItems)&&void 0!==e?e:[],s=null!==(n=null===(i=this.searchFormConfig)||void 0===i?void 0:i.flexible)&&void 0!==n?n:void 0,o=null!==(r=null===s||void 0===s?void 0:s.foldField)&&void 0!==r?r:[];return!!s&&o.some((e=>a.some((t=>t.field===e&&!t.isHidden))))},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")}}},ne=te,ie=l(ne,Q,ee,!1,null,null,null),re=ie.exports,ae=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)])},se=[],oe={data(){return{show:!1}},methods:{drawer(e){this.show=!this.show,this.$emit("change",this.show)}}},le=oe,ue=l(le,ae,se,!1,null,null,null),ce=ue.exports,de=function(){var e=this,t=e._self._c;return t("el-select",e._b({ref:"selection",attrs:{value:e.value,placeholder:e.config&&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),[e.config&&"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)},he=[],fe=i(7822),pe={name:"BYSelect",props:{...fe.Select.props,value:{type:[String,Number,Array]},placeholder:{type:String,default:"请选择"},options:{type:Array,default:()=>[]},config:{type:Object,default:()=>({})}},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)))}}}},me=pe,_e=l(me,de,he,!1,null,null,null),ve=_e.exports,ge=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&&e.config.startPlaceholder||"开始时间","end-placeholder":e.config&&e.config.endPlaceholder||"结束时间","range-separator":e.config&&e.config.rangeSeparator||"-",size:e.config&&e.config.size||"mini",type:"daterange"},on:{input:e.handleChange},model:{value:e.value[e.config&&e.config.field],callback:function(t){e.$set(e.value,e.config&&e.config.field,t)},expression:"value[config && 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)},ye=[],be={name:"ByDatePickerRange",props:{value:{type:Object,default:()=>({})},config:{type:Object,default:()=>({})}},data(){return{shortcuts:[{label:"上月",start_time:R()().subtract(1,"months").startOf("month").format("YYYY-MM-DD"),end_time:R()().subtract(1,"months").endOf("month").format("YYYY-MM-DD"),key:"last_month"},{label:"昨天",start_time:R()().subtract(1,"days").format("YYYY-MM-DD"),end_time:R()().subtract(1,"days").format("YYYY-MM-DD"),key:"yesterday"},{label:"今天",start_time:R()().startOf("day").format("YYYY-MM-DD"),end_time:R()().startOf("day").format("YYYY-MM-DD"),key:"today"},{label:"本周",start_time:R()().startOf("week").format("YYYY-MM-DD"),end_time:R()().endOf("week").format("YYYY-MM-DD"),key:"week"},{label:"本月",start_time:R()().startOf("month").format("YYYY-MM-DD"),end_time:R()().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=>R()(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])}}},we=be,ke=l(we,ge,ye,!1,null,null,null),Me=ke.exports,xe=null,De=null,Le=null,Se="z-index-manage",Ce=null,Te="z-index-style",Ye="m",Oe="s",Ee={m:1e3,s:1e3};function je(){return xe||"undefined"!==typeof document&&(xe=document),xe}function Pe(){return xe&&!De&&(De=xe.body||xe.getElementsByTagName("body")[0]),De}function $e(){var e=0,t=je();if(t){var n=Pe();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 Ne(){if(!Ce){var e=je();e&&(Ce=e.getElementById(Te),Ce||(Ce=e.createElement("style"),Ce.id=Te,e.getElementsByTagName("head")[0].appendChild(Ce)))}return Ce}function Ie(){var e=Ne();if(e){var t="--dom-",n="-z-index";e.innerHTML=":root{"+t+"main"+n+":"+Ve()+";"+t+"sub"+n+":"+qe()+"}"}}function He(){if(!Le){var e=je();if(e&&(Le=e.getElementById(Se),!Le)){var t=Pe();t&&(Le=e.createElement("div"),Le.id=Se,Le.style.display="none",t.appendChild(Le),Fe(Ee.m),Re(Ee.s))}}return Le}function Ae(e){return function(t){if(t){t=Number(t),Ee[e]=t;var n=He();n&&(n.dataset?n.dataset[e]=t+"":n.setAttribute("data-"+e,t+""))}return Ie(),Ee[e]}}var Fe=Ae(Ye);function ze(e,t){return function(n){var i,r=He();if(r){var a=r.dataset?r.dataset[e]:r.getAttribute("data-"+e);a&&(i=Number(a))}return i||(i=Ee[e]),n?Number(n)<i?t():n:i}}var Ve=ze(Ye,We);function We(){return Fe(Ve()+1)}var Re=Ae(Oe),Be=ze(Oe,Ue);function qe(){return Ve()+Be()}function Ue(){return Re(Be()+1),qe()}var Ge={setCurrent:Fe,getCurrent:Ve,getNext:We,setSubCurrent:Re,getSubCurrent:qe,getSubNext:Ue,getMax:$e};Ie();var Ke=Ge;const Je={ByPager:c,ByTable:E,ByForm:Z,ByPageSearch:re,ByFoldSearch:ce,BySelect:ve,ByDatePickerRange:Me};Ke.setCurrent(99999);const Xe=e=>{Object.keys(Je).forEach((t=>{e.component(t,Je[t]),e.component(t.toLowerCase(),Je[t])}))};"undefined"!==typeof window&&window.Vue&&Xe(window.Vue);var Ze={install:Xe},Qe=Ze}(),r}()}));
|
package/package.json
CHANGED
package/deploy.sh
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env sh
|
|
2
|
-
|
|
3
|
-
# 脚本作用:将组件文档 部署到GitHub Pages
|
|
4
|
-
|
|
5
|
-
# 确保脚本抛出遇到的错误
|
|
6
|
-
set -e
|
|
7
|
-
|
|
8
|
-
# 生成静态文件
|
|
9
|
-
npm run docs:build
|
|
10
|
-
|
|
11
|
-
# 进入生成的文件夹
|
|
12
|
-
cd docs/.vuepress/dist
|
|
13
|
-
|
|
14
|
-
# 如果是发布到自定义域名
|
|
15
|
-
# echo 'www.example.com' > CNAME
|
|
16
|
-
|
|
17
|
-
git init
|
|
18
|
-
git add -A
|
|
19
|
-
git commit -m 'deploy docs'
|
|
20
|
-
|
|
21
|
-
# 部署到GitHub Pages
|
|
22
|
-
git branch -M gh-pages
|
|
23
|
-
git push -f https://github.com/heqican/by-frontend-components-docs gh-pages
|
|
24
|
-
|
|
25
|
-
cd -
|
package/docs-setup-guide.md
DELETED
|
@@ -1,338 +0,0 @@
|
|
|
1
|
-
# By Components 文档搭建指南
|
|
2
|
-
|
|
3
|
-
本指南介绍了如何为 Vue2 组件库搭建 VuePress 文档网站的完整过程。
|
|
4
|
-
|
|
5
|
-
## 📁 文档结构
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
docs/
|
|
9
|
-
├── .vuepress/ # VuePress 配置目录
|
|
10
|
-
│ ├── config.js # 主配置文件
|
|
11
|
-
│ ├── enhanceApp.js # 应用增强配置
|
|
12
|
-
│ └── public/ # 静态资源
|
|
13
|
-
│ ├── favicon.ico # 网站图标
|
|
14
|
-
│ └── logo.png # 网站 Logo
|
|
15
|
-
├── guide/ # 指南文档
|
|
16
|
-
│ ├── README.md # 指南首页
|
|
17
|
-
│ ├── installation.md # 安装指南
|
|
18
|
-
│ └── quick-start.md # 快速上手
|
|
19
|
-
├── components/ # 组件文档
|
|
20
|
-
│ ├── README.md # 组件总览
|
|
21
|
-
│ ├── form.md # 表单组件
|
|
22
|
-
│ ├── table.md # 表格组件
|
|
23
|
-
│ ├── pager.md # 分页组件
|
|
24
|
-
│ ├── page-search.md # 页面搜索组件
|
|
25
|
-
│ ├── fold-search.md # 折叠搜索组件
|
|
26
|
-
│ ├── select.md # 选择器组件
|
|
27
|
-
│ └── date-picker-range.md # 日期范围选择器
|
|
28
|
-
└── README.md # 文档首页
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
## 🚀 快速开始
|
|
32
|
-
|
|
33
|
-
### 1. 安装依赖
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
npm install --save-dev vuepress@1.9.10 @vuepress/plugin-back-to-top @vuepress/plugin-medium-zoom
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
### 2. 添加构建脚本
|
|
40
|
-
|
|
41
|
-
在 `package.json` 中添加:
|
|
42
|
-
|
|
43
|
-
```json
|
|
44
|
-
{
|
|
45
|
-
"scripts": {
|
|
46
|
-
"docs:dev": "vuepress dev docs",
|
|
47
|
-
"docs:build": "vuepress build docs"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
### 3. 启动开发服务器
|
|
53
|
-
|
|
54
|
-
```bash
|
|
55
|
-
npm run docs:dev
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
### 4. 构建生产版本
|
|
59
|
-
|
|
60
|
-
```bash
|
|
61
|
-
npm run docs:build
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
## ⚙️ 配置说明
|
|
65
|
-
|
|
66
|
-
### VuePress 配置 (docs/.vuepress/config.js)
|
|
67
|
-
|
|
68
|
-
```javascript
|
|
69
|
-
const path = require('path')
|
|
70
|
-
|
|
71
|
-
module.exports = {
|
|
72
|
-
title: 'By Components',
|
|
73
|
-
description: '基于 Vue2 + Element UI 的业务组件库',
|
|
74
|
-
base: '/',
|
|
75
|
-
|
|
76
|
-
themeConfig: {
|
|
77
|
-
nav: [
|
|
78
|
-
{ text: '指南', link: '/guide/' },
|
|
79
|
-
{ text: '组件', link: '/components/' }
|
|
80
|
-
],
|
|
81
|
-
sidebar: {
|
|
82
|
-
'/guide/': [
|
|
83
|
-
/* 指南侧边栏 */
|
|
84
|
-
],
|
|
85
|
-
'/components/': [
|
|
86
|
-
/* 组件侧边栏 */
|
|
87
|
-
]
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
|
|
91
|
-
plugins: ['@vuepress/back-to-top', '@vuepress/medium-zoom']
|
|
92
|
-
}
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
### 应用增强配置 (docs/.vuepress/enhanceApp.js)
|
|
96
|
-
|
|
97
|
-
```javascript
|
|
98
|
-
import Vue from 'vue'
|
|
99
|
-
import ElementUI from 'element-ui'
|
|
100
|
-
import 'element-ui/lib/theme-chalk/index.css'
|
|
101
|
-
import ByComponents from '../../src/index.js'
|
|
102
|
-
import '../../src/style/index.scss'
|
|
103
|
-
|
|
104
|
-
Vue.use(ElementUI)
|
|
105
|
-
Vue.use(ByComponents)
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## 📝 编写文档
|
|
109
|
-
|
|
110
|
-
### 组件文档模板
|
|
111
|
-
|
|
112
|
-
每个组件文档应包含以下部分:
|
|
113
|
-
|
|
114
|
-
1. **组件介绍** - 简述组件功能和用途
|
|
115
|
-
2. **基础用法** - 展示最简单的使用方式
|
|
116
|
-
3. **高级用法** - 展示复杂场景的使用方式
|
|
117
|
-
4. **API 文档** - 详细的属性、事件、方法说明
|
|
118
|
-
|
|
119
|
-
### 示例代码
|
|
120
|
-
|
|
121
|
-
```markdown
|
|
122
|
-
# 组件名称
|
|
123
|
-
|
|
124
|
-
组件简介...
|
|
125
|
-
|
|
126
|
-
## 基础用法
|
|
127
|
-
|
|
128
|
-
<template>
|
|
129
|
-
<component-name :prop="value" @event="handler" />
|
|
130
|
-
</template>
|
|
131
|
-
|
|
132
|
-
<script>
|
|
133
|
-
export default {
|
|
134
|
-
data() {
|
|
135
|
-
return {
|
|
136
|
-
value: 'example'
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
methods: {
|
|
140
|
-
handler() {
|
|
141
|
-
// 处理逻辑
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
</script>
|
|
146
|
-
|
|
147
|
-
## API
|
|
148
|
-
|
|
149
|
-
### Props
|
|
150
|
-
|
|
151
|
-
| 参数 | 说明 | 类型 | 默认值 |
|
|
152
|
-
| ---- | -------- | ------ | ------ |
|
|
153
|
-
| prop | 属性说明 | string | '' |
|
|
154
|
-
|
|
155
|
-
### Events
|
|
156
|
-
|
|
157
|
-
| 事件名 | 说明 | 参数 |
|
|
158
|
-
| ------ | -------- | ------- |
|
|
159
|
-
| event | 事件说明 | (value) |
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
## 🎨 主题定制
|
|
163
|
-
|
|
164
|
-
### 自定义样式
|
|
165
|
-
|
|
166
|
-
可以在 `docs/.vuepress/styles/` 目录下添加自定义样式:
|
|
167
|
-
|
|
168
|
-
```
|
|
169
|
-
docs/.vuepress/styles/
|
|
170
|
-
├── index.styl # 全局样式
|
|
171
|
-
├── palette.styl # 主题色彩配置
|
|
172
|
-
└── override.styl # 样式覆盖
|
|
173
|
-
```
|
|
174
|
-
|
|
175
|
-
### 主题色彩配置
|
|
176
|
-
|
|
177
|
-
```stylus
|
|
178
|
-
// docs/.vuepress/styles/palette.styl
|
|
179
|
-
$accentColor = #3eaf7c
|
|
180
|
-
$textColor = #2c3e50
|
|
181
|
-
$borderColor = #eaecef
|
|
182
|
-
$codeBgColor = #282c34
|
|
183
|
-
```
|
|
184
|
-
|
|
185
|
-
## 🔧 常用插件
|
|
186
|
-
|
|
187
|
-
### 推荐插件列表
|
|
188
|
-
|
|
189
|
-
```bash
|
|
190
|
-
# 返回顶部
|
|
191
|
-
npm install @vuepress/plugin-back-to-top
|
|
192
|
-
|
|
193
|
-
# 图片缩放
|
|
194
|
-
npm install @vuepress/plugin-medium-zoom
|
|
195
|
-
|
|
196
|
-
# 代码复制
|
|
197
|
-
npm install vuepress-plugin-copy-code
|
|
198
|
-
|
|
199
|
-
# 全文搜索
|
|
200
|
-
npm install @vuepress/plugin-search
|
|
201
|
-
|
|
202
|
-
# Google Analytics
|
|
203
|
-
npm install @vuepress/plugin-google-analytics
|
|
204
|
-
```
|
|
205
|
-
|
|
206
|
-
### 插件配置
|
|
207
|
-
|
|
208
|
-
```javascript
|
|
209
|
-
module.exports = {
|
|
210
|
-
plugins: [
|
|
211
|
-
'@vuepress/back-to-top',
|
|
212
|
-
'@vuepress/medium-zoom',
|
|
213
|
-
[
|
|
214
|
-
'copy-code',
|
|
215
|
-
{
|
|
216
|
-
copySelector: ['div[class*="language-"] pre', 'div[class*="aside-code"] aside']
|
|
217
|
-
}
|
|
218
|
-
],
|
|
219
|
-
[
|
|
220
|
-
'@vuepress/search',
|
|
221
|
-
{
|
|
222
|
-
searchMaxSuggestions: 10
|
|
223
|
-
}
|
|
224
|
-
]
|
|
225
|
-
]
|
|
226
|
-
}
|
|
227
|
-
```
|
|
228
|
-
|
|
229
|
-
## 🚀 部署
|
|
230
|
-
|
|
231
|
-
### GitHub Pages
|
|
232
|
-
|
|
233
|
-
1. 配置 `base` 路径:
|
|
234
|
-
|
|
235
|
-
```javascript
|
|
236
|
-
module.exports = {
|
|
237
|
-
base: '/your-repo-name/'
|
|
238
|
-
// ...
|
|
239
|
-
}
|
|
240
|
-
```
|
|
241
|
-
|
|
242
|
-
2. 创建部署脚本:
|
|
243
|
-
|
|
244
|
-
```bash
|
|
245
|
-
#!/usr/bin/env sh
|
|
246
|
-
|
|
247
|
-
# 确保脚本抛出遇到的错误
|
|
248
|
-
set -e
|
|
249
|
-
|
|
250
|
-
# 生成静态文件
|
|
251
|
-
npm run docs:build
|
|
252
|
-
|
|
253
|
-
# 进入生成的文件夹
|
|
254
|
-
cd docs/.vuepress/dist
|
|
255
|
-
|
|
256
|
-
git init
|
|
257
|
-
git add -A
|
|
258
|
-
git commit -m 'deploy'
|
|
259
|
-
|
|
260
|
-
# 推送到 gh-pages 分支
|
|
261
|
-
git push -f git@github.com:username/repo.git master:gh-pages
|
|
262
|
-
|
|
263
|
-
cd -
|
|
264
|
-
```
|
|
265
|
-
|
|
266
|
-
### Netlify
|
|
267
|
-
|
|
268
|
-
1. 连接 GitHub 仓库
|
|
269
|
-
2. 设置构建命令:`npm run docs:build`
|
|
270
|
-
3. 设置发布目录:`docs/.vuepress/dist`
|
|
271
|
-
|
|
272
|
-
## 📊 性能优化
|
|
273
|
-
|
|
274
|
-
### 1. 代码分割
|
|
275
|
-
|
|
276
|
-
```javascript
|
|
277
|
-
// 异步加载组件示例
|
|
278
|
-
const ComponentDemo = () => import('./components/ComponentDemo.vue')
|
|
279
|
-
```
|
|
280
|
-
|
|
281
|
-
### 2. 图片优化
|
|
282
|
-
|
|
283
|
-
- 使用 WebP 格式
|
|
284
|
-
- 添加图片懒加载
|
|
285
|
-
- 压缩图片资源
|
|
286
|
-
|
|
287
|
-
### 3. 构建优化
|
|
288
|
-
|
|
289
|
-
```javascript
|
|
290
|
-
module.exports = {
|
|
291
|
-
chainWebpack: (config, isServer) => {
|
|
292
|
-
// 优化构建配置
|
|
293
|
-
config.optimization.splitChunks({
|
|
294
|
-
chunks: 'all'
|
|
295
|
-
})
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
```
|
|
299
|
-
|
|
300
|
-
## 🛠️ 维护指南
|
|
301
|
-
|
|
302
|
-
### 更新组件文档
|
|
303
|
-
|
|
304
|
-
1. 当添加新组件时,在 `docs/components/` 目录下创建对应的 `.md` 文件
|
|
305
|
-
2. 在 `docs/.vuepress/config.js` 的 `sidebar` 配置中添加新页面
|
|
306
|
-
3. 更新组件总览页面 `docs/components/README.md`
|
|
307
|
-
|
|
308
|
-
### 版本管理
|
|
309
|
-
|
|
310
|
-
- 使用语义化版本控制
|
|
311
|
-
- 维护 CHANGELOG.md
|
|
312
|
-
- 及时更新文档内容
|
|
313
|
-
|
|
314
|
-
### 内容审查
|
|
315
|
-
|
|
316
|
-
- 定期检查文档的准确性
|
|
317
|
-
- 确保示例代码可以正常运行
|
|
318
|
-
- 保持文档风格一致
|
|
319
|
-
|
|
320
|
-
## 📚 参考资源
|
|
321
|
-
|
|
322
|
-
- [VuePress 官方文档](https://vuepress.vuejs.org/)
|
|
323
|
-
- [Element UI 官方文档](https://element.eleme.cn/)
|
|
324
|
-
- [Markdown 语法指南](https://www.markdownguide.org/)
|
|
325
|
-
- [Vue.js 官方文档](https://cn.vuejs.org/)
|
|
326
|
-
|
|
327
|
-
---
|
|
328
|
-
|
|
329
|
-
## 🎉 完成!
|
|
330
|
-
|
|
331
|
-
恭喜你已经成功搭建了 Vue2 组件库的文档网站!现在你可以:
|
|
332
|
-
|
|
333
|
-
1. ✅ 访问 http://localhost:8080 查看文档
|
|
334
|
-
2. ✅ 编写和更新组件文档
|
|
335
|
-
3. ✅ 自定义主题和样式
|
|
336
|
-
4. ✅ 部署到生产环境
|
|
337
|
-
|
|
338
|
-
如有问题,请参考上述配置或查阅官方文档。
|