sd-data-grid 1.2.67 → 1.2.69
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/dist/sd-data-grid.js +349 -86
- package/dist/sd-data-grid.js.map +1 -1
- package/package.json +11 -6
package/dist/sd-data-grid.js
CHANGED
|
@@ -493,6 +493,8 @@ function applyToTag (styleElement, obj) {
|
|
|
493
493
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__methods__ = __webpack_require__(31);
|
|
494
494
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_dayjs__ = __webpack_require__(8);
|
|
495
495
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_dayjs___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_dayjs__);
|
|
496
|
+
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
|
497
|
+
|
|
496
498
|
/* eslint-disable no-tabs */
|
|
497
499
|
/* eslint-disable no-mixed-spaces-and-tabs */
|
|
498
500
|
|
|
@@ -500,6 +502,7 @@ function applyToTag (styleElement, obj) {
|
|
|
500
502
|
/* harmony default export */ __webpack_exports__["a"] = ({
|
|
501
503
|
data: function data() {
|
|
502
504
|
return {
|
|
505
|
+
sDialogShow: false,
|
|
503
506
|
dayjs: __WEBPACK_IMPORTED_MODULE_1_dayjs___default.a,
|
|
504
507
|
complexQueryConfig: [],
|
|
505
508
|
customShowList: [],
|
|
@@ -571,44 +574,67 @@ function applyToTag (styleElement, obj) {
|
|
|
571
574
|
isDefaultTab: this.$route.query && this.$route.query.isDefaultTab ? this.$route.query.isDefaultTab : '',
|
|
572
575
|
currentFilter: '',
|
|
573
576
|
asyncExportTotal: 0,
|
|
574
|
-
containSubordinate: ''
|
|
577
|
+
containSubordinate: '',
|
|
578
|
+
startTime: null,
|
|
579
|
+
renderData: [], // 当前渲染的部分数据
|
|
580
|
+
currentStart: 0, // 当前渲染数据的起始索引
|
|
581
|
+
isLoading: false, // 加载状态锁(防重复加载)
|
|
582
|
+
noMoreData: false, // 是否加载完所有数据
|
|
583
|
+
scrollThreshold: 40, // 距离底部50px触发加载
|
|
584
|
+
scrollContainer: null, // 存储Table内部滚动容器
|
|
585
|
+
dialogMark: '', //'resource_all',
|
|
586
|
+
paramsDialog: {},
|
|
587
|
+
operObjWidth: 100
|
|
575
588
|
};
|
|
576
589
|
},
|
|
577
590
|
|
|
578
591
|
mixins: [__WEBPACK_IMPORTED_MODULE_0__methods__["a" /* default */]],
|
|
579
592
|
methods: {
|
|
593
|
+
plog: function plog(title, endtime, starttime) {
|
|
594
|
+
if (!starttime) starttime = this.startTime;
|
|
595
|
+
console.log('[\u6027\u80FD] ' + title + ': ' + (endtime - starttime).toFixed(2) + 'ms');
|
|
596
|
+
},
|
|
580
597
|
query_grid_data: function query_grid_data(pageNo, Tag) {
|
|
581
598
|
var _this = this;
|
|
582
599
|
|
|
600
|
+
this.renderData = [];
|
|
601
|
+
this.currentStart = 0;
|
|
602
|
+
this.startTime = performance.now();
|
|
603
|
+
console.log(this.$refs, '[\u6027\u80FD] \u5F00\u59CB\u67E5\u8BE2: Tag = ' + (Tag || '未定义') + ', pageNo=' + (pageNo || this.pageNo) + ', pageSize=' + this.pageSize);
|
|
583
604
|
this.loading = true;
|
|
584
605
|
if (pageNo) {
|
|
585
606
|
this.pageNo = pageNo;
|
|
586
607
|
}
|
|
587
|
-
this.searchType === '03' ? true : Tag;
|
|
588
|
-
var params = this.getGridRequestParams(this.searchType === '03' ? true : Tag);
|
|
608
|
+
var params = this.getGridRequestParams(Tag == 'cx' ? Tag : this.searchType === '03' ? true : Tag);
|
|
589
609
|
this.$emit('returnParams', params);
|
|
590
610
|
this.$store.dispatch('postRequest', {
|
|
591
611
|
url: '/bsp-com/com/datagrid/getQueryPageData',
|
|
592
612
|
params: params
|
|
593
613
|
}).then(function (resp) {
|
|
594
614
|
if (resp.success) {
|
|
615
|
+
_this.plog('数据接收耗时', performance.now());
|
|
616
|
+
var renderStart = performance.now();
|
|
617
|
+
var onRenderComplete = function onRenderComplete() {
|
|
618
|
+
_this.plog('渲染耗时', performance.now(), renderStart);
|
|
619
|
+
_this.plog('总耗时', performance.now());
|
|
620
|
+
};
|
|
621
|
+
|
|
595
622
|
// 回调
|
|
596
623
|
_this.$emit('returnParamsSuccess', params, resp, _this.returnParams);
|
|
597
624
|
if (_this.beforeRender) {
|
|
598
625
|
_this.beforeRender(resp).then(function (data) {
|
|
599
626
|
if (data.success) {
|
|
600
|
-
_this.initRenderData(data.rows, data.total);
|
|
627
|
+
_this.initRenderData(data.rows, data.total, onRenderComplete);
|
|
601
628
|
}
|
|
602
629
|
});
|
|
603
630
|
} else {
|
|
604
|
-
_this.initRenderData(resp.rows, resp.total);
|
|
631
|
+
_this.initRenderData(resp.rows, resp.total, onRenderComplete);
|
|
605
632
|
}
|
|
606
633
|
|
|
607
634
|
//分组统计
|
|
608
635
|
if (_this.comModel.groupStat && _this.comModel.groupStatField && resp.group && _this.quickFilter) {
|
|
609
636
|
try {
|
|
610
637
|
_this.quickFilter[0].forEach(function (qf) {
|
|
611
|
-
|
|
612
638
|
//基于分组字段统计
|
|
613
639
|
if (!qf.groupStatType || qf.groupStatType == '0') {
|
|
614
640
|
var statFields = qf.groupStatField.split('|');
|
|
@@ -691,13 +717,15 @@ function applyToTag (styleElement, obj) {
|
|
|
691
717
|
}
|
|
692
718
|
return params;
|
|
693
719
|
},
|
|
694
|
-
initRenderData: function initRenderData(rowData, total) {
|
|
720
|
+
initRenderData: function initRenderData(rowData, total, onComplete) {
|
|
695
721
|
this.gridData = rowData;
|
|
696
722
|
this.totalNum = total;
|
|
723
|
+
var disableFieldsStart = performance.now();
|
|
697
724
|
var disableFields = this.modelShowFields.filter(function (item) {
|
|
698
725
|
return item.attachProps && JSON.parse(item.attachProps) && JSON.parse(item.attachProps)._disabled;
|
|
699
726
|
});
|
|
700
|
-
|
|
727
|
+
this.plog('处理禁用字段', performance.now(), disableFieldsStart);
|
|
728
|
+
var _disabledStart = performance.now();
|
|
701
729
|
if (this.gridData && this.gridData.length > 0) {
|
|
702
730
|
this.gridData.forEach(function (item) {
|
|
703
731
|
disableFields.forEach(function (obj) {
|
|
@@ -708,8 +736,109 @@ function applyToTag (styleElement, obj) {
|
|
|
708
736
|
});
|
|
709
737
|
});
|
|
710
738
|
}
|
|
739
|
+
this.plog('处理附加属性', performance.now(), _disabledStart);
|
|
711
740
|
this.batch_select = [];
|
|
712
741
|
this.loading = false;
|
|
742
|
+
this.$nextTick(function () {
|
|
743
|
+
if (onComplete) onComplete();
|
|
744
|
+
});
|
|
745
|
+
// 3. 加载第一批数据
|
|
746
|
+
// this.loadMoreData();
|
|
747
|
+
// this.initScrollContainer()
|
|
748
|
+
},
|
|
749
|
+
|
|
750
|
+
// 2. 核心:获取Table内部滚动容器(ivu-table-overflowY)
|
|
751
|
+
initScrollContainer: function initScrollContainer() {
|
|
752
|
+
var _this3 = this;
|
|
753
|
+
|
|
754
|
+
setTimeout(function () {
|
|
755
|
+
// 等待Table渲染完成后再获取滚动容器
|
|
756
|
+
var collection = document.getElementsByClassName("ivu-table-overflowY");
|
|
757
|
+
console.log(collection, "成功绑定Table滚动容器");
|
|
758
|
+
if (collection.length > 0) {
|
|
759
|
+
_this3.scrollContainer = collection[0];
|
|
760
|
+
// 绑定滚动事件
|
|
761
|
+
_this3.scrollContainer.addEventListener("scroll", _this3.handleTableScroll);
|
|
762
|
+
_this3.resetScrollTop();
|
|
763
|
+
console.log("成功绑定Table滚动容器");
|
|
764
|
+
} else {
|
|
765
|
+
// 兜底:若首次获取失败,延时重试(兼容Table渲染慢的场景)
|
|
766
|
+
setTimeout(function () {
|
|
767
|
+
var retryCollection = document.getElementsByClassName("ivu-table-overflowY");
|
|
768
|
+
if (retryCollection.length > 0) {
|
|
769
|
+
_this3.scrollContainer = retryCollection[0];
|
|
770
|
+
_this3.scrollContainer.addEventListener("scroll", _this3.handleTableScroll);
|
|
771
|
+
} else {
|
|
772
|
+
console.warn("未找到Table滚动容器:ivu-table-overflowY");
|
|
773
|
+
}
|
|
774
|
+
}, 200);
|
|
775
|
+
}
|
|
776
|
+
}, 2000);
|
|
777
|
+
},
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
// 3. 监听Table滚动容器的滚动事件
|
|
781
|
+
handleTableScroll: function handleTableScroll() {
|
|
782
|
+
// console.log(this.loading , this.noMoreData,'this.loading || this.noMoreData')
|
|
783
|
+
if (this.loading || this.noMoreData) return; // 防重复加载
|
|
784
|
+
|
|
785
|
+
var container = this.scrollContainer;
|
|
786
|
+
// 计算滚动容器的滚动距离:总高度 - 滚动距离 - 可视高度 = 剩余未滚动高度
|
|
787
|
+
var remainingHeight = container.scrollHeight - container.scrollTop - container.clientHeight;
|
|
788
|
+
// console.log(remainingHeight , this.scrollThreshold,'remainingHeight < this.scrollThreshold')
|
|
789
|
+
// 滚动到接近底部(剩余高度 < 阈值),触发加载
|
|
790
|
+
if (remainingHeight < this.scrollThreshold) {
|
|
791
|
+
this.loadMoreData();
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
// 4. 加载下一批数据(从全量数据中截取)
|
|
797
|
+
loadMoreData: function loadMoreData() {
|
|
798
|
+
var _this4 = this;
|
|
799
|
+
|
|
800
|
+
this.loading = false;
|
|
801
|
+
// 模拟加载延迟(真实接口可去掉)
|
|
802
|
+
setTimeout(function () {
|
|
803
|
+
// 计算本次加载的结束索引
|
|
804
|
+
var endIndex = _this4.currentStart + 100;
|
|
805
|
+
// 截取要追加的部分数据
|
|
806
|
+
var newData = _this4.gridData.slice(_this4.currentStart, endIndex);
|
|
807
|
+
|
|
808
|
+
// 追加到渲染列表(只渲染部分数据)
|
|
809
|
+
_this4.renderData = [].concat(_toConsumableArray(_this4.renderData), _toConsumableArray(newData));
|
|
810
|
+
// console.log(this.renderData,'this.renderData')
|
|
811
|
+
// 更新起始索引
|
|
812
|
+
_this4.currentStart = endIndex;
|
|
813
|
+
|
|
814
|
+
// 判断是否加载完所有数据
|
|
815
|
+
if (_this4.renderData.length >= _this4.gridData.length) {
|
|
816
|
+
_this4.noMoreData = true;
|
|
817
|
+
} else {
|
|
818
|
+
_this4.noMoreData = false;
|
|
819
|
+
}
|
|
820
|
+
_this4.loading = false;
|
|
821
|
+
}, 200);
|
|
822
|
+
},
|
|
823
|
+
|
|
824
|
+
// 4. 重置滚动容器到顶部
|
|
825
|
+
resetScrollTop: function resetScrollTop() {
|
|
826
|
+
var _this5 = this;
|
|
827
|
+
|
|
828
|
+
this.$nextTick(function () {
|
|
829
|
+
// 确保DOM更新后再操作滚动条
|
|
830
|
+
if (_this5.scrollContainer) {
|
|
831
|
+
_this5.scrollContainer.scrollTop = 0; // 滚动条置顶
|
|
832
|
+
} else {
|
|
833
|
+
// 兜底:重新获取滚动容器并置顶
|
|
834
|
+
var collection = document.getElementsByClassName("ivu-table-overflowY");
|
|
835
|
+
if (collection.length > 0) {
|
|
836
|
+
_this5.scrollContainer = collection[0];
|
|
837
|
+
_this5.scrollContainer.scrollTop = 0;
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
// this.initScrollContainer()
|
|
841
|
+
});
|
|
713
842
|
},
|
|
714
843
|
refreshGrid: function refreshGrid(pageNo) {
|
|
715
844
|
this.query_grid_data(pageNo);
|
|
@@ -734,16 +863,17 @@ function applyToTag (styleElement, obj) {
|
|
|
734
863
|
|
|
735
864
|
// condis参数
|
|
736
865
|
build_query_condis: function build_query_condis(Tag) {
|
|
737
|
-
var
|
|
866
|
+
var _this6 = this;
|
|
738
867
|
|
|
868
|
+
//console.log(Tag, 'Tag', Tag && Tag != 'cx')
|
|
739
869
|
var queryParams = [];
|
|
740
870
|
var queryFields = [];
|
|
741
|
-
if (Tag) {
|
|
871
|
+
if (Tag && Tag != 'cx') {
|
|
742
872
|
queryFields = this.complexQueryConfig.concat();
|
|
743
873
|
queryFields.forEach(function (item) {
|
|
744
874
|
if (item.fields && item.fields.length > 0) {
|
|
745
875
|
item.fields.forEach(function (ele) {
|
|
746
|
-
|
|
876
|
+
_this6.queryFields.forEach(function (filesChild) {
|
|
747
877
|
filesChild.forEach(function (dd) {
|
|
748
878
|
if (ele.name == dd.name) {
|
|
749
879
|
dd = Object.assign(dd, ele);
|
|
@@ -754,6 +884,25 @@ function applyToTag (styleElement, obj) {
|
|
|
754
884
|
}
|
|
755
885
|
});
|
|
756
886
|
this.$forceUpdate();
|
|
887
|
+
} else if (Tag && Tag == 'cx') {
|
|
888
|
+
var queryFieldsGj = [];
|
|
889
|
+
var queryFieldsDefault = this.complexQueryConfig.concat();
|
|
890
|
+
queryFieldsDefault.forEach(function (item) {
|
|
891
|
+
if (item.fields && item.fields.length > 0) {
|
|
892
|
+
item.fields.forEach(function (ele) {
|
|
893
|
+
_this6.queryFields.forEach(function (filesChild) {
|
|
894
|
+
queryFieldsGj.push(ele);
|
|
895
|
+
filesChild.forEach(function (dd) {
|
|
896
|
+
if (ele.name == dd.name) {
|
|
897
|
+
dd = Object.assign(ele, dd);
|
|
898
|
+
}
|
|
899
|
+
});
|
|
900
|
+
});
|
|
901
|
+
});
|
|
902
|
+
}
|
|
903
|
+
});
|
|
904
|
+
queryFields = this.queryFields.concat([queryFieldsGj]);
|
|
905
|
+
this.$forceUpdate();
|
|
757
906
|
} else {
|
|
758
907
|
queryFields = this.queryFields.concat();
|
|
759
908
|
}
|
|
@@ -786,10 +935,10 @@ function applyToTag (styleElement, obj) {
|
|
|
786
935
|
}
|
|
787
936
|
}
|
|
788
937
|
queryFields.forEach(function (itemChild) {
|
|
789
|
-
var fields = Tag ? itemChild.fields : itemChild;
|
|
938
|
+
var fields = Tag && Tag != 'cx' ? itemChild.fields : itemChild;
|
|
790
939
|
fields.forEach(function (item) {
|
|
791
|
-
if (item.controlTypeName && (item.controlTypeName ==
|
|
792
|
-
_that.containSubordinate = item && item.containSubordinate ? item.containSubordinate :
|
|
940
|
+
if (item.controlTypeName && (item.controlTypeName == '09' || item.controlTypeName == '10')) {
|
|
941
|
+
_that.containSubordinate = item && item.containSubordinate ? item.containSubordinate : '';
|
|
793
942
|
}
|
|
794
943
|
|
|
795
944
|
if (item.opName === 'between') {
|
|
@@ -1115,6 +1264,13 @@ module.exports = {
|
|
|
1115
1264
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__grid_more_search_vue__ = __webpack_require__(78);
|
|
1116
1265
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__data_checkbox_vue__ = __webpack_require__(20);
|
|
1117
1266
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__data_radio_vue__ = __webpack_require__(22);
|
|
1267
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13_sd_custom_dialog__ = __webpack_require__(84);
|
|
1268
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13_sd_custom_dialog___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_13_sd_custom_dialog__);
|
|
1269
|
+
//
|
|
1270
|
+
//
|
|
1271
|
+
//
|
|
1272
|
+
//
|
|
1273
|
+
//
|
|
1118
1274
|
//
|
|
1119
1275
|
//
|
|
1120
1276
|
//
|
|
@@ -2064,6 +2220,7 @@ module.exports = {
|
|
|
2064
2220
|
|
|
2065
2221
|
|
|
2066
2222
|
|
|
2223
|
+
//测试点击打开自定义对话框
|
|
2067
2224
|
/* harmony default export */ __webpack_exports__["a"] = ({
|
|
2068
2225
|
mixins: [__WEBPACK_IMPORTED_MODULE_0__dataGrid__["a" /* default */]],
|
|
2069
2226
|
components: {
|
|
@@ -2078,7 +2235,7 @@ module.exports = {
|
|
|
2078
2235
|
sdAyTreeSelect: __WEBPACK_IMPORTED_MODULE_8_sd_ay_tree_select__["sdAyTreeSelect"],
|
|
2079
2236
|
girdMoreSearch: __WEBPACK_IMPORTED_MODULE_10__grid_more_search_vue__["a" /* default */],
|
|
2080
2237
|
dataCheckbox: __WEBPACK_IMPORTED_MODULE_11__data_checkbox_vue__["a" /* default */],
|
|
2081
|
-
dataRadio: __WEBPACK_IMPORTED_MODULE_12__data_radio_vue__["a" /* default */]
|
|
2238
|
+
dataRadio: __WEBPACK_IMPORTED_MODULE_12__data_radio_vue__["a" /* default */], sDialog: __WEBPACK_IMPORTED_MODULE_13_sd_custom_dialog__["sDialog"]
|
|
2082
2239
|
},
|
|
2083
2240
|
computed: {
|
|
2084
2241
|
pickerOptions: function pickerOptions() {
|
|
@@ -2121,7 +2278,7 @@ module.exports = {
|
|
|
2121
2278
|
/* 8 */
|
|
2122
2279
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2123
2280
|
|
|
2124
|
-
!function(t,e){ true?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs=e()}(this,(function(){"use strict";var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",c="month",f="quarter",h="year",d="date",l="Invalid Date",$=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|
|
|
2281
|
+
!function(t,e){ true?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs=e()}(this,(function(){"use strict";var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",c="month",f="quarter",h="year",d="date",l="Invalid Date",$=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|YYYY|YY|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,M={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(t){var e=["th","st","nd","rd"],n=t%100;return"["+t+(e[(n-20)%10]||e[n]||e[0])+"]"}},m=function(t,e,n){var r=String(t);return!r||r.length>=e?t:""+Array(e+1-r.length).join(n)+t},v={s:m,z:function(t){var e=-t.utcOffset(),n=Math.abs(e),r=Math.floor(n/60),i=n%60;return(e<=0?"+":"-")+m(r,2,"0")+":"+m(i,2,"0")},m:function t(e,n){if(e.date()<n.date())return-t(n,e);var r=12*(n.year()-e.year())+(n.month()-e.month()),i=e.clone().add(r,c),s=n-i<0,u=e.clone().add(r+(s?-1:1),c);return+(-(r+(n-i)/(s?i-u:u-i))||0)},a:function(t){return t<0?Math.ceil(t)||0:Math.floor(t)},p:function(t){return{M:c,y:h,w:o,d:a,D:d,h:u,m:s,s:i,ms:r,Q:f}[t]||String(t||"").toLowerCase().replace(/s$/,"")},u:function(t){return void 0===t}},g="en",D={};D[g]=M;var p="$isDayjsObject",S=function(t){return t instanceof _||!(!t||!t[p])},w=function t(e,n,r){var i;if(!e)return g;if("string"==typeof e){var s=e.toLowerCase();D[s]&&(i=s),n&&(D[s]=n,i=s);var u=e.split("-");if(!i&&u.length>1)return t(u[0])}else{var a=e.name;D[a]=e,i=a}return!r&&i&&(g=i),i||!r&&g},O=function(t,e){if(S(t))return t.clone();var n="object"==typeof e?e:{};return n.date=t,n.args=arguments,new _(n)},b=v;b.l=w,b.i=S,b.w=function(t,e){return O(t,{locale:e.$L,utc:e.$u,x:e.$x,$offset:e.$offset})};var _=function(){function M(t){this.$L=w(t.locale,null,!0),this.parse(t),this.$x=this.$x||t.x||{},this[p]=!0}var m=M.prototype;return m.parse=function(t){this.$d=function(t){var e=t.date,n=t.utc;if(null===e)return new Date(NaN);if(b.u(e))return new Date;if(e instanceof Date)return new Date(e);if("string"==typeof e&&!/Z$/i.test(e)){var r=e.match($);if(r){var i=r[2]-1||0,s=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)}}return new Date(e)}(t),this.init()},m.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds()},m.$utils=function(){return b},m.isValid=function(){return!(this.$d.toString()===l)},m.isSame=function(t,e){var n=O(t);return this.startOf(e)<=n&&n<=this.endOf(e)},m.isAfter=function(t,e){return O(t)<this.startOf(e)},m.isBefore=function(t,e){return this.endOf(e)<O(t)},m.$g=function(t,e,n){return b.u(t)?this[e]:this.set(n,t)},m.unix=function(){return Math.floor(this.valueOf()/1e3)},m.valueOf=function(){return this.$d.getTime()},m.startOf=function(t,e){var n=this,r=!!b.u(e)||e,f=b.p(t),l=function(t,e){var i=b.w(n.$u?Date.UTC(n.$y,e,t):new Date(n.$y,e,t),n);return r?i:i.endOf(a)},$=function(t,e){return b.w(n.toDate()[t].apply(n.toDate("s"),(r?[0,0,0,0]:[23,59,59,999]).slice(e)),n)},y=this.$W,M=this.$M,m=this.$D,v="set"+(this.$u?"UTC":"");switch(f){case h:return r?l(1,0):l(31,11);case c:return r?l(1,M):l(0,M+1);case o:var g=this.$locale().weekStart||0,D=(y<g?y+7:y)-g;return l(r?m-D:m+(6-D),M);case a:case d:return $(v+"Hours",0);case u:return $(v+"Minutes",1);case s:return $(v+"Seconds",2);case i:return $(v+"Milliseconds",3);default:return this.clone()}},m.endOf=function(t){return this.startOf(t,!1)},m.$set=function(t,e){var n,o=b.p(t),f="set"+(this.$u?"UTC":""),l=(n={},n[a]=f+"Date",n[d]=f+"Date",n[c]=f+"Month",n[h]=f+"FullYear",n[u]=f+"Hours",n[s]=f+"Minutes",n[i]=f+"Seconds",n[r]=f+"Milliseconds",n)[o],$=o===a?this.$D+(e-this.$W):e;if(o===c||o===h){var y=this.clone().set(d,1);y.$d[l]($),y.init(),this.$d=y.set(d,Math.min(this.$D,y.daysInMonth())).$d}else l&&this.$d[l]($);return this.init(),this},m.set=function(t,e){return this.clone().$set(t,e)},m.get=function(t){return this[b.p(t)]()},m.add=function(r,f){var d,l=this;r=Number(r);var $=b.p(f),y=function(t){var e=O(l);return b.w(e.date(e.date()+Math.round(t*r)),l)};if($===c)return this.set(c,this.$M+r);if($===h)return this.set(h,this.$y+r);if($===a)return y(1);if($===o)return y(7);var M=(d={},d[s]=e,d[u]=n,d[i]=t,d)[$]||1,m=this.$d.getTime()+r*M;return b.w(m,this)},m.subtract=function(t,e){return this.add(-1*t,e)},m.format=function(t){var e=this,n=this.$locale();if(!this.isValid())return n.invalidDate||l;var r=t||"YYYY-MM-DDTHH:mm:ssZ",i=b.z(this),s=this.$H,u=this.$m,a=this.$M,o=n.weekdays,c=n.months,f=n.meridiem,h=function(t,n,i,s){return t&&(t[n]||t(e,r))||i[n].slice(0,s)},d=function(t){return b.s(s%12||12,t,"0")},$=f||function(t,e,n){var r=t<12?"AM":"PM";return n?r.toLowerCase():r};return r.replace(y,(function(t,r){return r||function(t){switch(t){case"YY":return String(e.$y).slice(-2);case"YYYY":return b.s(e.$y,4,"0");case"M":return a+1;case"MM":return b.s(a+1,2,"0");case"MMM":return h(n.monthsShort,a,c,3);case"MMMM":return h(c,a);case"D":return e.$D;case"DD":return b.s(e.$D,2,"0");case"d":return String(e.$W);case"dd":return h(n.weekdaysMin,e.$W,o,2);case"ddd":return h(n.weekdaysShort,e.$W,o,3);case"dddd":return o[e.$W];case"H":return String(s);case"HH":return b.s(s,2,"0");case"h":return d(1);case"hh":return d(2);case"a":return $(s,u,!0);case"A":return $(s,u,!1);case"m":return String(u);case"mm":return b.s(u,2,"0");case"s":return String(e.$s);case"ss":return b.s(e.$s,2,"0");case"SSS":return b.s(e.$ms,3,"0");case"Z":return i}return null}(t)||i.replace(":","")}))},m.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},m.diff=function(r,d,l){var $,y=this,M=b.p(d),m=O(r),v=(m.utcOffset()-this.utcOffset())*e,g=this-m,D=function(){return b.m(y,m)};switch(M){case h:$=D()/12;break;case c:$=D();break;case f:$=D()/3;break;case o:$=(g-v)/6048e5;break;case a:$=(g-v)/864e5;break;case u:$=g/n;break;case s:$=g/e;break;case i:$=g/t;break;default:$=g}return l?$:b.a($)},m.daysInMonth=function(){return this.endOf(c).$D},m.$locale=function(){return D[this.$L]},m.locale=function(t,e){if(!t)return this.$L;var n=this.clone(),r=w(t,e,!0);return r&&(n.$L=r),n},m.clone=function(){return b.w(this.$d,this)},m.toDate=function(){return new Date(this.valueOf())},m.toJSON=function(){return this.isValid()?this.toISOString():null},m.toISOString=function(){return this.$d.toISOString()},m.toString=function(){return this.$d.toUTCString()},M}(),Y=_.prototype;return O.prototype=Y,[["$ms",r],["$s",i],["$m",s],["$H",u],["$W",a],["$M",c],["$y",h],["$D",d]].forEach((function(t){Y[t[1]]=function(e){return this.$g(e,t[0],t[1])}})),O.extend=function(t,e){return t.$i||(t(e,_,O),t.$i=!0),O},O.locale=w,O.isDayjs=S,O.unix=function(t){return O(1e3*t)},O.en=D[g],O.Ls=D,O.p={},O}));
|
|
2125
2282
|
|
|
2126
2283
|
/***/ }),
|
|
2127
2284
|
/* 9 */
|
|
@@ -3613,7 +3770,6 @@ module.exports = bytesToUuid;
|
|
|
3613
3770
|
//
|
|
3614
3771
|
//
|
|
3615
3772
|
//
|
|
3616
|
-
//
|
|
3617
3773
|
|
|
3618
3774
|
|
|
3619
3775
|
|
|
@@ -3695,6 +3851,34 @@ module.exports = bytesToUuid;
|
|
|
3695
3851
|
}
|
|
3696
3852
|
}
|
|
3697
3853
|
},
|
|
3854
|
+
computed: {
|
|
3855
|
+
pickerOptions: function pickerOptions() {
|
|
3856
|
+
var that = this;
|
|
3857
|
+
return function (condi, type) {
|
|
3858
|
+
return {
|
|
3859
|
+
disabledDate: function disabledDate(time) {
|
|
3860
|
+
if (type === 1) {
|
|
3861
|
+
if (condi.end) {
|
|
3862
|
+
var licenseEnd = new Date(condi.end);
|
|
3863
|
+
licenseEnd.setDate(licenseEnd.getDate());
|
|
3864
|
+
return time.getTime() >= licenseEnd;
|
|
3865
|
+
} else {
|
|
3866
|
+
return false;
|
|
3867
|
+
}
|
|
3868
|
+
} else {
|
|
3869
|
+
if (condi.start) {
|
|
3870
|
+
var licenseStart = new Date(condi.start);
|
|
3871
|
+
licenseStart.setDate(licenseStart.getDate() - 1);
|
|
3872
|
+
return time.getTime() <= licenseStart;
|
|
3873
|
+
} else {
|
|
3874
|
+
return false;
|
|
3875
|
+
}
|
|
3876
|
+
}
|
|
3877
|
+
}
|
|
3878
|
+
};
|
|
3879
|
+
};
|
|
3880
|
+
}
|
|
3881
|
+
},
|
|
3698
3882
|
data: function data() {
|
|
3699
3883
|
return {
|
|
3700
3884
|
dayjs: __WEBPACK_IMPORTED_MODULE_0_dayjs___default.a,
|
|
@@ -3772,7 +3956,6 @@ module.exports = bytesToUuid;
|
|
|
3772
3956
|
},
|
|
3773
3957
|
mounted: function mounted() {},
|
|
3774
3958
|
|
|
3775
|
-
computed: {},
|
|
3776
3959
|
methods: {
|
|
3777
3960
|
closeItem: function closeItem(order, index, item) {
|
|
3778
3961
|
if (item.searchValue) {
|
|
@@ -4056,6 +4239,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
|
4056
4239
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_data_grid_vue__ = __webpack_require__(25);
|
|
4057
4240
|
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "sDataGrid", function() { return __WEBPACK_IMPORTED_MODULE_0__components_data_grid_vue__["a"]; });
|
|
4058
4241
|
|
|
4242
|
+
// import dataGrid from './components/data-grid-vxe.vue'
|
|
4059
4243
|
|
|
4060
4244
|
|
|
4061
4245
|
/***/ }),
|
|
@@ -4065,7 +4249,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
|
4065
4249
|
"use strict";
|
|
4066
4250
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__ = __webpack_require__(7);
|
|
4067
4251
|
/* unused harmony namespace reexport */
|
|
4068
|
-
/* harmony import */ var
|
|
4252
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_75b97c1e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__ = __webpack_require__(85);
|
|
4069
4253
|
function injectStyle (ssrContext) {
|
|
4070
4254
|
__webpack_require__(26)
|
|
4071
4255
|
}
|
|
@@ -4080,12 +4264,12 @@ var __vue_template_functional__ = false
|
|
|
4080
4264
|
/* styles */
|
|
4081
4265
|
var __vue_styles__ = injectStyle
|
|
4082
4266
|
/* scopeId */
|
|
4083
|
-
var __vue_scopeId__ = "data-v-
|
|
4267
|
+
var __vue_scopeId__ = "data-v-75b97c1e"
|
|
4084
4268
|
/* moduleIdentifier (server only) */
|
|
4085
4269
|
var __vue_module_identifier__ = null
|
|
4086
4270
|
var Component = normalizeComponent(
|
|
4087
4271
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__["a" /* default */],
|
|
4088
|
-
|
|
4272
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_75b97c1e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__["a" /* default */],
|
|
4089
4273
|
__vue_template_functional__,
|
|
4090
4274
|
__vue_styles__,
|
|
4091
4275
|
__vue_scopeId__,
|
|
@@ -4106,7 +4290,7 @@ var content = __webpack_require__(27);
|
|
|
4106
4290
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
4107
4291
|
if(content.locals) module.exports = content.locals;
|
|
4108
4292
|
// add the styles to the DOM
|
|
4109
|
-
var update = __webpack_require__(2)("
|
|
4293
|
+
var update = __webpack_require__(2)("30822fef", content, true);
|
|
4110
4294
|
|
|
4111
4295
|
/***/ }),
|
|
4112
4296
|
/* 27 */
|
|
@@ -4117,7 +4301,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
4117
4301
|
|
|
4118
4302
|
|
|
4119
4303
|
// module
|
|
4120
|
-
exports.push([module.i, ".list[data-v-2e08482a]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-2e08482a],.list .list-item[data-v-2e08482a]{text-align:center;width:60px}.ele2[data-v-2e08482a],.list .list-item[data-v-2e08482a]{text-align:left;flex:1}.ele3[data-v-2e08482a],.list .list-item[data-v-2e08482a]{text-align:center;width:80px}.list .list-item[data-v-2e08482a]{width:100%;display:flex;flex-direction:row;padding:0 8px;cursor:move;height:40px;line-height:40px;border-bottom:1px solid #cee0f0;font-size:16px}.list .list-item[data-v-2e08482a]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-2e08482a]:hover{background:#f0f5ff}[data-v-2e08482a].ivu-checkbox-wrapper{font-size:16px}[data-v-2e08482a].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-2e08482a]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-2e08482a].ivu-checkbox-checked:focus{box-shadow:none}[data-v-2e08482a].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-2e08482a]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-2e08482a].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-2e08482a].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-2e08482a].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-2e08482a]{text-align:center}.cancle-button[data-v-2e08482a]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-2e08482a]{background:#f06060}.submit-button[data-v-2e08482a]{background:#2b5fda}.DataGrid-BOX[data-v-2e08482a]{padding:0}.DataGrid-BOX .formbox[data-v-2e08482a]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-2e08482a]{background:#2b5fd9}.ivu-btn-info[data-v-2e08482a]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-2e08482a]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-2e08482a],.DataGrid-BOX .formbox .searchBox[data-v-2e08482a]{display:flex;flex-wrap:wrap}.style2>div[data-v-2e08482a]{width:50%}.style3>div[data-v-2e08482a]{width:33.3%}.style4>div[data-v-2e08482a]{width:25%}.style5>div[data-v-2e08482a]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-2e08482a]{margin-bottom:10px!important}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-2e08482a]{width:60px;font-size:16px;padding:8px 2px 10px 0;color:#1a2133}.DataGrid-BOX/deep/.formbox-simple.ivu-form .ivu-form-item-label[data-v-2e08482a]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-2e08482a]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-2e08482a]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-2e08482a]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-2e08482a]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-2e08482a]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-2e08482a]{display:inline-block;padding:0 12px;color:#fff;background:#c0c4cc;height:30px;line-height:30px;margin:10px 10px 10px 0;border-radius:2px;cursor:pointer}.DataGrid-BOX .titleNav[data-v-2e08482a]{display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between;margin-top:-10px;line-height:50px;min-height:2px}.DataGrid-BOX .nohale>div[data-v-2e08482a]{width:100%}.DataGrid-BOX .navleft .La[data-v-2e08482a]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-2e08482a]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-2e08482a]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-2e08482a]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.DataGrid-BOX .navright span[data-v-2e08482a]{display:inline-block;height:24px;line-height:16px;margin:8px;border-radius:2px;padding:0 3px;cursor:pointer;position:relative}.DataGrid-BOX .navright span[data-v-2e08482a]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-2e08482a]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-2e08482a]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-2e08482a]{position:absolute;display:inline-block;background:#e5efff;font-style:normal;color:#666;padding:0 10px;height:20px;line-height:20px;top:6px;border-radius:50px;right:-35px}.DataGrid-BOX .common_optation .input[data-v-2e08482a],.DataGrid-BOX .common_optation .select[data-v-2e08482a]{max-width:300px}.DataGrid-BOX .page-btn[data-v-2e08482a],.DataGrid-BOX .page-Data[data-v-2e08482a],.DataGrid-BOX .page-set[data-v-2e08482a]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0 10px 10px;font-size:15px}.DataGrid-BOX .page-Data i[data-v-2e08482a]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-2e08482a]{cursor:pointer;position:relative;padding-left:20px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAOtJREFUOE9jZACDBibtuMiHDIwMMhA+keA/w5Ori5bLMzA0/GNkYPjPpB1/6y+RWrEqu7pQjZlRO+7mY5Jdgm7cf4YnjNrxN/9T4hqYXrhBVxaoEWWeTsItrOrgBvFyMTEcn6aC1zDdxFsM/3G4H8Vr6rJsDGubFbAaZp5xh+Hrj384LcIII28LXobODEkUDf7VDxjuPv2F17VYA7syWpQh2lUQrLF0+nOG7Sc/g9nYwhEWZjhjDaYJV+CiO48kg4aJi0DpamePIoNV1l2iEioVswi1Mi1VihFFNWZGSgq2/wwMT68tXC4HKtgAxxpwt8uJc1IAAAAASUVORK5CYII=\") no-repeat 0}.DataGrid-BOX .custom[data-v-2e08482a]{cursor:pointer;position:relative;padding-left:20px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAATVJREFUOE9jZACDBibtuMiHDIwMMhA+keA/w5Ori5bLMzA0/GNkYPjPpB1/6y+RWrEqu7pQjZlRO+7mY5Jdgm7cf4YnjNrxN/9js8ZOn5uhMFSEIbDmIVh6foUMw6Kd7xn2n/+K1VVYDTo7S4WBnY0Jq4afv/4xGKfdwZDDatCVBWp4g0wn4RadDCoIFWFI8BBkYGFmBNv46/d/BoeCuwz//zMwHJyozMDGChH/8/c/w4Id7xkmrH4DdxmK19C9hO4FfPKD3CCQhx0MuBmmFEiD/Q4Km9jWR2D24mo5BkZIEDFkT3jKcPACanoa5NEPi0trHS6GmSWQgqB46jMGQV5mhpo4cTA/recJw7Er37AkSCIzLTMTA8PffzgSPCjTUqUYUVSDJmEyC7b/DAxPry1cLgcq2AD6t5K3B+tq3QAAAABJRU5ErkJggg==\") no-repeat 0}.DataGrid-BOX .sx[data-v-2e08482a]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-2e08482a]{list-style:none;border:1px solid #0394f9;position:absolute;left:-78px;width:150px;bottom:100%;background:#fff;z-index:1000;height:310px;overflow-y:hidden;-webkit-box-shadow:0 0 5px 0 #bebef3;box-shadow:0 0 5px 0 #bebef3}.DataGrid-BOX .ulnavlist li[data-v-2e08482a]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-2e08482a]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-2e08482a]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-2e08482a]{font-style:normal;display:inline-block;width:18px;height:18px;border:1px solid #2b5fd9;border-radius:4px;margin:8px;vertical-align:middle}.DataGrid-BOX li.active .iconlist[data-v-2e08482a]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABeklEQVQ4ja3U3ytDcRjH8fc5+RXapoxFSrKIe60lSpILUpPQLswF90palJEa7l240FZSygUlN0YUpUm51OQfIIn9yOWmZ2abOrNs53P5/Z7n1fN8zzlfpXPqEcAKbAD9gIH/JQKcA27gqQRoA4KA6Z/QT6QBB9AH2FTAWwSWHTG8ampMvTKgFnBmf6Va1RFLpiDQNVjD7XYrC5Pm4sGpwRrmJ8xUVag4eoz5wfJShZaGMk3M2W9ifjzT1d7Ze37Q527i2NvM+qwFNWt3tNeI21mHoqSwwDtbh29/g/KwtfG7u2G7gdVpS3JtpNuAx1Wfxg4uw2zuv2pOIb9eInthyG7AO2NBTRUHHz7paq9Md3t0HWbZ90IiocVpjHxyE2HFnymwdWQw2fP4c2OaoOTwKsza7u/C07soizvPxOO5MUlJrg05J0VRmBur5eI+luwsH4bWGRYbNXWf6ZWYgHI56pWAgEvAhw6iGEsChuTrkJcLRAuApEZqbUDoC8xYY482/HjCAAAAAElFTkSuQmCC) no-repeat;background-size:100% 100%}.DataGrid-BOX .Total[data-v-2e08482a]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0;padding:0 15px;border-radius:2px;cursor:pointer;font-size:15px}[data-v-2e08482a].ivu-table-row-highlight td,[data-v-2e08482a].ivu-table-row-hover td,[data-v-2e08482a].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-2e08482a],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-2e08482a]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-2e08482a]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-2e08482a]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-2e08482a]:hover,[data-v-2e08482a].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-2e08482a]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-2e08482a]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-2e08482a]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-table-border th[data-v-2e08482a]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-table th[data-v-2e08482a]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-2e08482a]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-2e08482a]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-2e08482a]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-2e08482a]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-2e08482a]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-2e08482a]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-2e08482a]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-2e08482a]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-2e08482a]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-2e08482a],.DataGrid-BOX/deep/.el-input[data-v-2e08482a]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-2e08482a]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-2e08482a]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-2e08482a]::-webkit-scrollbar-track{border-radius:10px;background:#ededed}.DataGrid-BOX/deep/.ivu-table-overflowY::-webkit-scrollbar-thumb:hover .DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}.DataGrid-BOX/deep/.ivu-table-overflowY::-webkit-scrollbar-button .DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-2e08482a]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-2e08482a],.ivu-btn-info[disabled][data-v-2e08482a],.ivu-btn-primary.disabled[data-v-2e08482a],.ivu-btn-primary[disabled][data-v-2e08482a]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-2e08482a],.timeTextzhi[data-v-2e08482a]{display:flex;justify-content:center}.timeTextzhi[data-v-2e08482a]{align-items:center}.data-grid-bsp[data-v-2e08482a]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-2e08482a],.data-grid-bsp/deep/div[data-v-2e08482a]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-2e08482a]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-2e08482a]{margin-left:-4px!important}.search-content-select[data-v-2e08482a]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-2e08482a]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-2e08482a]{display:flex;flex-wrap:wrap}.select-content[data-v-2e08482a]{background:linear-gradient(90deg,#115fc6,#56bbff);color:#fff;padding:6px 10px;margin-right:10px;margin-bottom:10px;border-radius:6px;cursor:pointer;height:42px}.select-content i[data-v-2e08482a]{font-style:normal}.select-content/deep/.sp-base[data-v-2e08482a],.select-content/deep/.sp-selected-tag[data-v-2e08482a]{background:transparent!important;border:none!important;color:#fff!important}.select-content/deep/.sp-button[data-v-2e08482a]{display:none!important}.textOverflowBsp[data-v-2e08482a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
|
|
4304
|
+
exports.push([module.i, ".list[data-v-75b97c1e]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-75b97c1e],.list .list-item[data-v-75b97c1e]{text-align:center;width:60px}.ele2[data-v-75b97c1e],.list .list-item[data-v-75b97c1e]{text-align:left;flex:1}.ele3[data-v-75b97c1e],.list .list-item[data-v-75b97c1e]{text-align:center;width:80px}.list .list-item[data-v-75b97c1e]{width:100%;display:flex;flex-direction:row;padding:0 8px;cursor:move;height:40px;line-height:40px;border-bottom:1px solid #cee0f0;font-size:16px}.list .list-item[data-v-75b97c1e]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-75b97c1e]:hover{background:#f0f5ff}[data-v-75b97c1e].ivu-checkbox-wrapper{font-size:16px}[data-v-75b97c1e].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-75b97c1e]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-75b97c1e].ivu-checkbox-checked:focus{box-shadow:none}[data-v-75b97c1e].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-75b97c1e]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-75b97c1e].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-75b97c1e].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-75b97c1e].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-75b97c1e].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-75b97c1e].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-75b97c1e].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-75b97c1e].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-75b97c1e].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-75b97c1e]{text-align:center}.cancle-button[data-v-75b97c1e]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-75b97c1e]{background:#f06060}.submit-button[data-v-75b97c1e]{background:#2b5fda}.DataGrid-BOX[data-v-75b97c1e]{padding:0}.DataGrid-BOX .formbox[data-v-75b97c1e]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-75b97c1e]{background:#2b5fd9}.ivu-btn-info[data-v-75b97c1e]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-75b97c1e]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-75b97c1e],.DataGrid-BOX .formbox .searchBox[data-v-75b97c1e]{display:flex;flex-wrap:wrap}.style2>div[data-v-75b97c1e]{width:50%}.style3>div[data-v-75b97c1e]{width:33.3%}.style4>div[data-v-75b97c1e]{width:25%}.style5>div[data-v-75b97c1e]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-75b97c1e]{margin-bottom:10px!important}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-75b97c1e]{width:60px;font-size:16px;padding:8px 2px 10px 0;color:#1a2133}.DataGrid-BOX/deep/.formbox-simple.ivu-form .ivu-form-item-label[data-v-75b97c1e]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-75b97c1e]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-75b97c1e]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-75b97c1e]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-75b97c1e]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-75b97c1e]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-75b97c1e]{display:inline-block;padding:0 12px;color:#fff;background:#c0c4cc;height:30px;line-height:30px;margin:10px 10px 10px 0;border-radius:2px;cursor:pointer}.DataGrid-BOX .titleNav[data-v-75b97c1e]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:-10px;line-height:50px;min-height:2px;justify-content:space-between}.DataGrid-BOX .nohale>div[data-v-75b97c1e]{width:100%}.DataGrid-BOX .navleft .La[data-v-75b97c1e]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-75b97c1e]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-75b97c1e]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-75b97c1e]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.DataGrid-BOX .navright span[data-v-75b97c1e]{display:inline-block;height:24px;line-height:16px;margin:8px;border-radius:2px;padding:0 3px;cursor:pointer;position:relative}.DataGrid-BOX .navright span[data-v-75b97c1e]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-75b97c1e]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-75b97c1e]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-75b97c1e]{position:absolute;display:inline-block;background:#e5efff;font-style:normal;color:#666;padding:0 10px;height:20px;line-height:20px;top:6px;border-radius:50px;right:-35px}.DataGrid-BOX .common_optation .input[data-v-75b97c1e],.DataGrid-BOX .common_optation .select[data-v-75b97c1e]{max-width:300px}.DataGrid-BOX .page-btn[data-v-75b97c1e],.DataGrid-BOX .page-Data[data-v-75b97c1e],.DataGrid-BOX .page-set[data-v-75b97c1e]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0 10px 10px;font-size:15px}.DataGrid-BOX .page-Data i[data-v-75b97c1e]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-75b97c1e]{cursor:pointer;position:relative;padding-left:20px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAOtJREFUOE9jZACDBibtuMiHDIwMMhA+keA/w5Ori5bLMzA0/GNkYPjPpB1/6y+RWrEqu7pQjZlRO+7mY5Jdgm7cf4YnjNrxN/9T4hqYXrhBVxaoEWWeTsItrOrgBvFyMTEcn6aC1zDdxFsM/3G4H8Vr6rJsDGubFbAaZp5xh+Hrj384LcIII28LXobODEkUDf7VDxjuPv2F17VYA7syWpQh2lUQrLF0+nOG7Sc/g9nYwhEWZjhjDaYJV+CiO48kg4aJi0DpamePIoNV1l2iEioVswi1Mi1VihFFNWZGSgq2/wwMT68tXC4HKtgAxxpwt8uJc1IAAAAASUVORK5CYII=\") no-repeat 0}.DataGrid-BOX .custom[data-v-75b97c1e]{cursor:pointer;position:relative;padding-left:20px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAATVJREFUOE9jZACDBibtuMiHDIwMMhA+keA/w5Ori5bLMzA0/GNkYPjPpB1/6y+RWrEqu7pQjZlRO+7mY5Jdgm7cf4YnjNrxN/9js8ZOn5uhMFSEIbDmIVh6foUMw6Kd7xn2n/+K1VVYDTo7S4WBnY0Jq4afv/4xGKfdwZDDatCVBWp4g0wn4RadDCoIFWFI8BBkYGFmBNv46/d/BoeCuwz//zMwHJyozMDGChH/8/c/w4Id7xkmrH4DdxmK19C9hO4FfPKD3CCQhx0MuBmmFEiD/Q4Km9jWR2D24mo5BkZIEDFkT3jKcPACanoa5NEPi0trHS6GmSWQgqB46jMGQV5mhpo4cTA/recJw7Er37AkSCIzLTMTA8PffzgSPCjTUqUYUVSDJmEyC7b/DAxPry1cLgcq2AD6t5K3B+tq3QAAAABJRU5ErkJggg==\") no-repeat 0}.DataGrid-BOX .sx[data-v-75b97c1e]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-75b97c1e]{list-style:none;border:1px solid #0394f9;position:absolute;left:-78px;width:150px;bottom:100%;background:#fff;z-index:1000;height:310px;overflow-y:hidden;-webkit-box-shadow:0 0 5px 0 #bebef3;box-shadow:0 0 5px 0 #bebef3}.DataGrid-BOX .ulnavlist li[data-v-75b97c1e]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-75b97c1e]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-75b97c1e]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-75b97c1e]{font-style:normal;display:inline-block;width:18px;height:18px;border:1px solid #2b5fd9;border-radius:4px;margin:8px;vertical-align:middle}.DataGrid-BOX li.active .iconlist[data-v-75b97c1e]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABeklEQVQ4ja3U3ytDcRjH8fc5+RXapoxFSrKIe60lSpILUpPQLswF90palJEa7l240FZSygUlN0YUpUm51OQfIIn9yOWmZ2abOrNs53P5/Z7n1fN8zzlfpXPqEcAKbAD9gIH/JQKcA27gqQRoA4KA6Z/QT6QBB9AH2FTAWwSWHTG8ampMvTKgFnBmf6Va1RFLpiDQNVjD7XYrC5Pm4sGpwRrmJ8xUVag4eoz5wfJShZaGMk3M2W9ifjzT1d7Ze37Q527i2NvM+qwFNWt3tNeI21mHoqSwwDtbh29/g/KwtfG7u2G7gdVpS3JtpNuAx1Wfxg4uw2zuv2pOIb9eInthyG7AO2NBTRUHHz7paq9Md3t0HWbZ90IiocVpjHxyE2HFnymwdWQw2fP4c2OaoOTwKsza7u/C07soizvPxOO5MUlJrg05J0VRmBur5eI+luwsH4bWGRYbNXWf6ZWYgHI56pWAgEvAhw6iGEsChuTrkJcLRAuApEZqbUDoC8xYY482/HjCAAAAAElFTkSuQmCC) no-repeat;background-size:100% 100%}.DataGrid-BOX .Total[data-v-75b97c1e]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0;padding:0 15px;border-radius:2px;cursor:pointer;font-size:15px}[data-v-75b97c1e].ivu-table-row-highlight td,[data-v-75b97c1e].ivu-table-row-hover td,[data-v-75b97c1e].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-75b97c1e],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-75b97c1e]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-75b97c1e]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-75b97c1e]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-75b97c1e]:hover,[data-v-75b97c1e].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-75b97c1e]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-75b97c1e]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-75b97c1e]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-75b97c1e],.DataGrid-BOX/deep/.ivu-table-border th[data-v-75b97c1e]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-75b97c1e],.DataGrid-BOX/deep/.ivu-table th[data-v-75b97c1e]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-75b97c1e]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-75b97c1e]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-75b97c1e]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-75b97c1e]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-75b97c1e]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-75b97c1e]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-75b97c1e],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-75b97c1e]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-75b97c1e]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-75b97c1e]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-75b97c1e]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-75b97c1e]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-75b97c1e],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-75b97c1e],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-75b97c1e]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-75b97c1e]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-75b97c1e],.DataGrid-BOX/deep/.el-input[data-v-75b97c1e]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-75b97c1e]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-75b97c1e]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-75b97c1e]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-75b97c1e]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-75b97c1e]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-75b97c1e]::-webkit-scrollbar-track{border-radius:10px;background:#ededed}.DataGrid-BOX/deep/.ivu-table-overflowY::-webkit-scrollbar-thumb:hover .DataGrid-BOX/deep/.ivu-table-overflowX[data-v-75b97c1e]::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}.DataGrid-BOX/deep/.ivu-table-overflowY::-webkit-scrollbar-button .DataGrid-BOX/deep/.ivu-table-overflowX[data-v-75b97c1e]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-75b97c1e]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-75b97c1e],.ivu-btn-info[disabled][data-v-75b97c1e],.ivu-btn-primary.disabled[data-v-75b97c1e],.ivu-btn-primary[disabled][data-v-75b97c1e]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-75b97c1e],.timeTextzhi[data-v-75b97c1e]{display:flex;justify-content:center}.timeTextzhi[data-v-75b97c1e]{align-items:center}.data-grid-bsp[data-v-75b97c1e]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-75b97c1e],.data-grid-bsp/deep/div[data-v-75b97c1e]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-75b97c1e]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-75b97c1e]{margin-left:-4px!important}.search-content-select[data-v-75b97c1e]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-75b97c1e]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-75b97c1e]{display:flex;flex-wrap:wrap}.select-content[data-v-75b97c1e]{background:linear-gradient(90deg,#115fc6,#56bbff);color:#fff;padding:6px 10px;margin-right:10px;margin-bottom:10px;border-radius:6px;cursor:pointer;height:42px}.select-content i[data-v-75b97c1e]{font-style:normal}.select-content/deep/.sp-base[data-v-75b97c1e],.select-content/deep/.sp-selected-tag[data-v-75b97c1e]{background:transparent!important;border:none!important;color:#fff!important}.select-content/deep/.sp-button[data-v-75b97c1e]{display:none!important}.textOverflowBsp[data-v-75b97c1e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
|
|
4121
4305
|
|
|
4122
4306
|
// exports
|
|
4123
4307
|
|
|
@@ -4243,44 +4427,82 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4243
4427
|
default: null
|
|
4244
4428
|
}
|
|
4245
4429
|
},
|
|
4430
|
+
beforeDestroy: function beforeDestroy() {
|
|
4431
|
+
// 销毁时移除滚动监听,避免内存泄漏
|
|
4432
|
+
if (this.scrollContainer) {
|
|
4433
|
+
this.scrollContainer.removeEventListener("scroll", this.handleTableScroll);
|
|
4434
|
+
}
|
|
4435
|
+
},
|
|
4246
4436
|
mounted: function mounted() {
|
|
4247
4437
|
this.initId();
|
|
4248
4438
|
this.init_grid();
|
|
4249
|
-
//
|
|
4250
|
-
// this.
|
|
4251
|
-
// } else if (this.config !== null) {
|
|
4252
|
-
// this.init(this.config)
|
|
4253
|
-
// }
|
|
4439
|
+
// 2. 初始化:获取Table滚动容器 + 绑定滚动事件
|
|
4440
|
+
// this.initScrollContainer();
|
|
4254
4441
|
},
|
|
4255
4442
|
|
|
4256
4443
|
watch: {
|
|
4257
4444
|
dataGridWidth: function dataGridWidth(width) {
|
|
4258
4445
|
// 监听列表宽度变化
|
|
4259
4446
|
this.cal_show_field_wdith(this.dataGridColumns);
|
|
4447
|
+
},
|
|
4448
|
+
|
|
4449
|
+
gridData: {
|
|
4450
|
+
handler: function handler(n, o) {
|
|
4451
|
+
if (n && n.length > 0) {
|
|
4452
|
+
// this.initScrollContainer()
|
|
4453
|
+
}
|
|
4454
|
+
},
|
|
4455
|
+
|
|
4456
|
+
deep: true,
|
|
4457
|
+
immediate: true
|
|
4260
4458
|
}
|
|
4261
4459
|
},
|
|
4262
4460
|
methods: {
|
|
4263
4461
|
closeItem: function closeItem(order, index, item) {
|
|
4462
|
+
var _this = this;
|
|
4463
|
+
|
|
4464
|
+
// console.log(order, index, item,'(order, index, item)',this.queryFields,',condi')
|
|
4465
|
+
|
|
4264
4466
|
if (item.searchValue) {
|
|
4265
4467
|
this.$set(this.complexQueryConfig[order].fields[index], 'searchValue', '');
|
|
4468
|
+
if (this.queryFields && this.queryFields.length > 0) {
|
|
4469
|
+
this.queryFields.forEach(function (ele, eleIndex) {
|
|
4470
|
+
if (ele && ele.length > 0) {
|
|
4471
|
+
ele.forEach(function (eleChild, eleChildIndex) {
|
|
4472
|
+
if (item.field == eleChild.field) {
|
|
4473
|
+
_this.$set(_this.queryFields[eleIndex][eleChildIndex], 'searchValue', '');
|
|
4474
|
+
}
|
|
4475
|
+
});
|
|
4476
|
+
}
|
|
4477
|
+
});
|
|
4478
|
+
}
|
|
4266
4479
|
} else if (item.opName == 'between') {
|
|
4267
4480
|
this.$set(this.complexQueryConfig[order].fields[index], 'start', '');
|
|
4268
4481
|
this.$set(this.complexQueryConfig[order].fields[index], 'end', '');
|
|
4269
4482
|
}
|
|
4270
4483
|
},
|
|
4271
4484
|
closeAll: function closeAll() {
|
|
4272
|
-
var
|
|
4485
|
+
var _this2 = this;
|
|
4273
4486
|
|
|
4274
4487
|
this.complexQueryConfig.forEach(function (ele) {
|
|
4275
4488
|
ele.fields.forEach(function (item) {
|
|
4276
4489
|
if (item.searchValue) {
|
|
4277
|
-
|
|
4490
|
+
_this2.$set(item, 'searchValue', '');
|
|
4278
4491
|
} else if (item.opName == 'between') {
|
|
4279
|
-
|
|
4280
|
-
|
|
4492
|
+
_this2.$set(item, 'start', '');
|
|
4493
|
+
_this2.$set(item, 'end', '');
|
|
4281
4494
|
}
|
|
4282
4495
|
});
|
|
4283
4496
|
});
|
|
4497
|
+
if (this.queryFields && this.queryFields.length > 0) {
|
|
4498
|
+
this.queryFields.forEach(function (ele, eleIndex) {
|
|
4499
|
+
if (ele && ele.length > 0) {
|
|
4500
|
+
ele.forEach(function (eleChild, eleChildIndex) {
|
|
4501
|
+
_this2.$set(_this2.queryFields[eleIndex][eleChildIndex], 'searchValue', '');
|
|
4502
|
+
});
|
|
4503
|
+
}
|
|
4504
|
+
});
|
|
4505
|
+
}
|
|
4284
4506
|
},
|
|
4285
4507
|
confirmSearch: function confirmSearch(data) {
|
|
4286
4508
|
this.complexQueryConfig = data;
|
|
@@ -4336,7 +4558,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4336
4558
|
}
|
|
4337
4559
|
},
|
|
4338
4560
|
getZhcxArr: function getZhcxArr(data) {
|
|
4339
|
-
var
|
|
4561
|
+
var _this3 = this;
|
|
4340
4562
|
|
|
4341
4563
|
this.queryFieldsZH = [];
|
|
4342
4564
|
if (data.length > 0 && this.complexQueryConfig.length > 0) {
|
|
@@ -4346,19 +4568,19 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4346
4568
|
data.forEach(function (eleItem) {
|
|
4347
4569
|
if (ele.field == eleItem.name && ele.isDefault) {
|
|
4348
4570
|
ele = Object.assign(ele, eleItem);
|
|
4349
|
-
|
|
4571
|
+
_this3.queryFieldsZH.push(ele);
|
|
4350
4572
|
}
|
|
4351
4573
|
});
|
|
4352
4574
|
});
|
|
4353
4575
|
}
|
|
4354
4576
|
});
|
|
4355
4577
|
this.$nextTick(function () {
|
|
4356
|
-
|
|
4578
|
+
_this3.build_query_fields(_this3.queryFieldsZH);
|
|
4357
4579
|
});
|
|
4358
4580
|
}
|
|
4359
4581
|
},
|
|
4360
4582
|
init: function init(resp) {
|
|
4361
|
-
var
|
|
4583
|
+
var _this4 = this;
|
|
4362
4584
|
|
|
4363
4585
|
this.returnParams = resp;
|
|
4364
4586
|
this.comModel = resp.comModel;
|
|
@@ -4416,10 +4638,10 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4416
4638
|
// 添加可配置默认标签配置判断
|
|
4417
4639
|
if (this.params && this.params.isDefaultTitle && resp.quickFilter && resp.quickFilter.length > 0) {
|
|
4418
4640
|
resp.quickFilter.forEach(function (item) {
|
|
4419
|
-
if (item.label ==
|
|
4420
|
-
|
|
4641
|
+
if (item.label == _this4.params.isDefaultTitle) {
|
|
4642
|
+
_this4.$set(item, 'isDefault', '1');
|
|
4421
4643
|
} else {
|
|
4422
|
-
|
|
4644
|
+
_this4.$set(item, 'isDefault', '0');
|
|
4423
4645
|
}
|
|
4424
4646
|
});
|
|
4425
4647
|
}
|
|
@@ -4446,7 +4668,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4446
4668
|
}
|
|
4447
4669
|
},
|
|
4448
4670
|
init_grid_config: function init_grid_config(mark) {
|
|
4449
|
-
var
|
|
4671
|
+
var _this5 = this;
|
|
4450
4672
|
|
|
4451
4673
|
var params = {
|
|
4452
4674
|
mark: mark
|
|
@@ -4458,15 +4680,15 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4458
4680
|
url: '/bsp-com/com/datagrid/viewGrid',
|
|
4459
4681
|
params: params
|
|
4460
4682
|
}).then(function (resp) {
|
|
4461
|
-
|
|
4683
|
+
_this5.dataGridLoad = true;
|
|
4462
4684
|
if (resp.success) {
|
|
4463
|
-
|
|
4464
|
-
|
|
4685
|
+
_this5.dbType = resp.dbType;
|
|
4686
|
+
_this5.init(resp);
|
|
4465
4687
|
}
|
|
4466
4688
|
});
|
|
4467
4689
|
},
|
|
4468
4690
|
init_func_config: function init_func_config(mark) {
|
|
4469
|
-
var
|
|
4691
|
+
var _this6 = this;
|
|
4470
4692
|
|
|
4471
4693
|
var params = {
|
|
4472
4694
|
mark: mark
|
|
@@ -4479,9 +4701,9 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4479
4701
|
params: params
|
|
4480
4702
|
}).then(function (resp) {
|
|
4481
4703
|
if (resp.success) {
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4704
|
+
_this6.errorMsg = '';
|
|
4705
|
+
_this6.dataGridLoad = true;
|
|
4706
|
+
_this6.exportMaxCount = resp.exportMaxCount;
|
|
4485
4707
|
var headOper = [];
|
|
4486
4708
|
var headOperBatch = [];
|
|
4487
4709
|
var rowOper = [];
|
|
@@ -4505,7 +4727,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4505
4727
|
}
|
|
4506
4728
|
} else if (item.dispPos === '2') {
|
|
4507
4729
|
// 行操作
|
|
4508
|
-
|
|
4730
|
+
_this6.hasRowOper = true;
|
|
4509
4731
|
if (item.batch) {
|
|
4510
4732
|
rowOperBatch.push(item);
|
|
4511
4733
|
} else {
|
|
@@ -4515,22 +4737,22 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4515
4737
|
});
|
|
4516
4738
|
}
|
|
4517
4739
|
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4740
|
+
_this6.funcAuth = funcMark;
|
|
4741
|
+
_this6.headOper = headOper;
|
|
4742
|
+
_this6.headOperBatch = headOperBatch;
|
|
4743
|
+
_this6.rowOper = rowOper;
|
|
4744
|
+
_this6.rowOperBatch = rowOperBatch;
|
|
4745
|
+
_this6.dbType = resp.dbType;
|
|
4746
|
+
_this6.init(resp);
|
|
4525
4747
|
} else {
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4748
|
+
_this6.loading = false;
|
|
4749
|
+
_this6.dataGridLoad = false;
|
|
4750
|
+
_this6.errorMsg = resp.msg;
|
|
4529
4751
|
}
|
|
4530
4752
|
});
|
|
4531
4753
|
},
|
|
4532
4754
|
getCustomFields: function getCustomFields(mark) {
|
|
4533
|
-
var
|
|
4755
|
+
var _this7 = this;
|
|
4534
4756
|
|
|
4535
4757
|
if (this.loading || this.showModal) {
|
|
4536
4758
|
return;
|
|
@@ -4543,7 +4765,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4543
4765
|
url: '/bsp-com/com/datagrid/getCustomShowFields',
|
|
4544
4766
|
params: params
|
|
4545
4767
|
}).then(function (resp) {
|
|
4546
|
-
|
|
4768
|
+
_this7.loading = false;
|
|
4547
4769
|
if (resp.success) {
|
|
4548
4770
|
var datas = resp.data;
|
|
4549
4771
|
var fieldList = [];
|
|
@@ -4559,10 +4781,10 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4559
4781
|
require: item.require
|
|
4560
4782
|
});
|
|
4561
4783
|
});
|
|
4562
|
-
|
|
4563
|
-
|
|
4784
|
+
_this7.customShowList = fieldList;
|
|
4785
|
+
_this7.showModal = true;
|
|
4564
4786
|
} else {
|
|
4565
|
-
|
|
4787
|
+
_this7.$Modal.warning({
|
|
4566
4788
|
title: '温馨提示',
|
|
4567
4789
|
content: resp.msg
|
|
4568
4790
|
});
|
|
@@ -4573,7 +4795,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4573
4795
|
this.showModal = false;
|
|
4574
4796
|
},
|
|
4575
4797
|
handleSet: function handleSet() {
|
|
4576
|
-
var
|
|
4798
|
+
var _this8 = this;
|
|
4577
4799
|
|
|
4578
4800
|
this.$Modal.confirm({
|
|
4579
4801
|
title: '温馨提示',
|
|
@@ -4581,13 +4803,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4581
4803
|
loading: true,
|
|
4582
4804
|
okText: '确定',
|
|
4583
4805
|
onOk: function onOk() {
|
|
4584
|
-
|
|
4806
|
+
_this8.saveCustomReset();
|
|
4585
4807
|
}
|
|
4586
4808
|
});
|
|
4587
4809
|
// resetShowFields
|
|
4588
4810
|
},
|
|
4589
4811
|
handleSubmit: function handleSubmit() {
|
|
4590
|
-
var
|
|
4812
|
+
var _this9 = this;
|
|
4591
4813
|
|
|
4592
4814
|
var arr = [];
|
|
4593
4815
|
this.customShowList.forEach(function (item, index) {
|
|
@@ -4606,13 +4828,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4606
4828
|
params: params
|
|
4607
4829
|
}).then(function (resp) {
|
|
4608
4830
|
if (resp.success) {
|
|
4609
|
-
|
|
4610
|
-
|
|
4831
|
+
_this9.showModal = false;
|
|
4832
|
+
_this9.init_grid();
|
|
4611
4833
|
} else {}
|
|
4612
4834
|
});
|
|
4613
4835
|
},
|
|
4614
4836
|
saveCustomReset: function saveCustomReset() {
|
|
4615
|
-
var
|
|
4837
|
+
var _this10 = this;
|
|
4616
4838
|
|
|
4617
4839
|
var params = {
|
|
4618
4840
|
mark: this.dataGridId
|
|
@@ -4621,9 +4843,9 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4621
4843
|
url: '/bsp-com/com/datagrid/resetShowFields',
|
|
4622
4844
|
params: params
|
|
4623
4845
|
}).then(function (resp) {
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4846
|
+
_this10.showModal = false;
|
|
4847
|
+
_this10.init_grid();
|
|
4848
|
+
_this10.$Modal.remove();
|
|
4627
4849
|
});
|
|
4628
4850
|
},
|
|
4629
4851
|
multi_col_sort: function multi_col_sort() {
|
|
@@ -4682,11 +4904,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
4682
4904
|
var dataGridColumns = [];
|
|
4683
4905
|
if (this.comModelProps.showCheckbox) {
|
|
4684
4906
|
_that.showCheckbox = true;
|
|
4685
|
-
|
|
4907
|
+
_that.dataGridColumns.push(this.checkbox_colimn());
|
|
4908
|
+
// vxe自带复选框列
|
|
4686
4909
|
dataGridColumns.push(_that.checkbox_colimn(1));
|
|
4687
4910
|
}
|
|
4688
4911
|
if (_that.comModelProps.showRownumbers) {
|
|
4689
|
-
|
|
4912
|
+
_that.dataGridColumns.push(_that.index_column());
|
|
4913
|
+
// vxe自带行号列
|
|
4690
4914
|
dataGridColumns.push(_that.index_column(1));
|
|
4691
4915
|
}
|
|
4692
4916
|
|
|
@@ -4731,8 +4955,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
4731
4955
|
}
|
|
4732
4956
|
if (this.is_real_num(this.comModelProps.operColumnWidth)) {
|
|
4733
4957
|
operObj.width = this.comModelProps.operColumnWidth;
|
|
4958
|
+
this.operObjWidth = this.comModelProps.operColumnWidth;
|
|
4734
4959
|
this.usedWidth += parseInt(this.comModelProps.operColumnWidth);
|
|
4735
4960
|
}
|
|
4961
|
+
// vux自带操作
|
|
4736
4962
|
dataGridColumns.push(operObj);
|
|
4737
4963
|
}
|
|
4738
4964
|
|
|
@@ -4815,9 +5041,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
4815
5041
|
var _that2 = this;
|
|
4816
5042
|
colItem.render = function (h, params) {
|
|
4817
5043
|
var ellipsis = '0';
|
|
4818
|
-
if (params.column.tooltip) {
|
|
5044
|
+
if (params.column && params.column.tooltip) {
|
|
4819
5045
|
ellipsis = '2';
|
|
4820
|
-
} else if (params.column.ellipsis) {
|
|
5046
|
+
} else if (params.column && params.column.ellipsis) {
|
|
4821
5047
|
ellipsis = '1';
|
|
4822
5048
|
}
|
|
4823
5049
|
return _that2.render_hyperlink(params.row[params.column.key], params.column._width, ellipsis, props, h, params.row);
|
|
@@ -4971,12 +5197,14 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
4971
5197
|
this.column[index].show = !this.column[index].show;
|
|
4972
5198
|
var _that = this;
|
|
4973
5199
|
var dataGridColumns = [];
|
|
5200
|
+
// 排序
|
|
4974
5201
|
if (_that.comModelProps.showRownumbers) {
|
|
4975
|
-
|
|
5202
|
+
_that.dataGridColumns.push(_that.index_column());
|
|
4976
5203
|
dataGridColumns.push(_that.index_column());
|
|
4977
5204
|
}
|
|
5205
|
+
// 复选框
|
|
4978
5206
|
if (this.comModelProps.showCheckbox) {
|
|
4979
|
-
|
|
5207
|
+
_that.dataGridColumns.push(this.checkbox_colimn());
|
|
4980
5208
|
dataGridColumns.push(_that.checkbox_colimn());
|
|
4981
5209
|
}
|
|
4982
5210
|
var wid = _that.dataGridWidth - _that.usedWidth;
|
|
@@ -5007,6 +5235,15 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
5007
5235
|
//alert(this.usedWidth)
|
|
5008
5236
|
}
|
|
5009
5237
|
_that.dataGridColumns = dataGridColumns;
|
|
5238
|
+
if (_that.slotColumn.length > 0) {
|
|
5239
|
+
_that.slotColumn.forEach(function (item) {
|
|
5240
|
+
_that.dataGridColumns.forEach(function (col) {
|
|
5241
|
+
if (col.key == item.key) {
|
|
5242
|
+
Object.assign(col, item);
|
|
5243
|
+
}
|
|
5244
|
+
});
|
|
5245
|
+
}).push(_that.slotColumn);
|
|
5246
|
+
}
|
|
5010
5247
|
},
|
|
5011
5248
|
getCustomParams: function getCustomParams() {
|
|
5012
5249
|
return {
|
|
@@ -5765,10 +6002,16 @@ runtime.o = o;
|
|
|
5765
6002
|
},
|
|
5766
6003
|
change_page: function change_page(page) {
|
|
5767
6004
|
this.query_grid_data(page);
|
|
6005
|
+
this.renderData = [];
|
|
6006
|
+
this.currentStart = 0;
|
|
6007
|
+
// this.initScrollContainer()
|
|
5768
6008
|
},
|
|
5769
6009
|
change_aage_size: function change_aage_size(pageSize) {
|
|
5770
6010
|
this.pageSize = pageSize;
|
|
5771
6011
|
this.query_grid_data();
|
|
6012
|
+
this.renderData = [];
|
|
6013
|
+
this.currentStart = 0;
|
|
6014
|
+
// this.initScrollContainer()
|
|
5772
6015
|
}
|
|
5773
6016
|
}
|
|
5774
6017
|
});
|
|
@@ -6044,6 +6287,7 @@ runtime.o = o;
|
|
|
6044
6287
|
// this.$set(params,'mark',this.comModel.mark)
|
|
6045
6288
|
};
|
|
6046
6289
|
}
|
|
6290
|
+
console.log(this.$path.com_model_datagrid_deleteData, this.$path.com_model_datagrid_delete, 'this.$path.com_model_datagrid_deleteData : this.$path.com_model_datagrid_delete');
|
|
6047
6291
|
this.$store.dispatch('postRequest', {
|
|
6048
6292
|
url: formMark ? this.$path.com_model_datagrid_deleteData : this.$path.com_model_datagrid_delete,
|
|
6049
6293
|
params: params
|
|
@@ -20354,7 +20598,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
20354
20598
|
"use strict";
|
|
20355
20599
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__ = __webpack_require__(19);
|
|
20356
20600
|
/* unused harmony namespace reexport */
|
|
20357
|
-
/* harmony import */ var
|
|
20601
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_aa62aa9a_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__ = __webpack_require__(83);
|
|
20358
20602
|
function injectStyle (ssrContext) {
|
|
20359
20603
|
__webpack_require__(79)
|
|
20360
20604
|
}
|
|
@@ -20369,12 +20613,12 @@ var __vue_template_functional__ = false
|
|
|
20369
20613
|
/* styles */
|
|
20370
20614
|
var __vue_styles__ = injectStyle
|
|
20371
20615
|
/* scopeId */
|
|
20372
|
-
var __vue_scopeId__ = "data-v-
|
|
20616
|
+
var __vue_scopeId__ = "data-v-aa62aa9a"
|
|
20373
20617
|
/* moduleIdentifier (server only) */
|
|
20374
20618
|
var __vue_module_identifier__ = null
|
|
20375
20619
|
var Component = normalizeComponent(
|
|
20376
20620
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__["a" /* default */],
|
|
20377
|
-
|
|
20621
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_aa62aa9a_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__["a" /* default */],
|
|
20378
20622
|
__vue_template_functional__,
|
|
20379
20623
|
__vue_styles__,
|
|
20380
20624
|
__vue_scopeId__,
|
|
@@ -20395,7 +20639,7 @@ var content = __webpack_require__(80);
|
|
|
20395
20639
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
20396
20640
|
if(content.locals) module.exports = content.locals;
|
|
20397
20641
|
// add the styles to the DOM
|
|
20398
|
-
var update = __webpack_require__(2)("
|
|
20642
|
+
var update = __webpack_require__(2)("16f54318", content, true);
|
|
20399
20643
|
|
|
20400
20644
|
/***/ }),
|
|
20401
20645
|
/* 80 */
|
|
@@ -20406,7 +20650,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
20406
20650
|
|
|
20407
20651
|
|
|
20408
20652
|
// module
|
|
20409
|
-
exports.push([module.i, ".search-content-select[data-v-
|
|
20653
|
+
exports.push([module.i, ".search-content-select[data-v-aa62aa9a]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-aa62aa9a]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-aa62aa9a]{display:flex;flex-wrap:wrap}.select-content[data-v-aa62aa9a]{background:linear-gradient(90deg,#115fc6,#56bbff);color:#fff;padding:6px 10px;margin-right:10px;margin-bottom:10px;border-radius:6px;cursor:pointer;height:42px}.select-content i[data-v-aa62aa9a]{font-style:normal}.select-content/deep/.sp-base[data-v-aa62aa9a],.select-content/deep/.sp-selected-tag[data-v-aa62aa9a]{background:transparent!important;border:none!important;color:#fff!important;background-color:transparent!important}.select-content div.v-selectpage div.sp-input-container div.sp-inputs span.sp-selected-tag[data-v-aa62aa9a]{background-color:transparent!important}.select-content/deep/.sp-button[data-v-aa62aa9a]{display:none!important}.textOverflowBsp[data-v-aa62aa9a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ivu-form-item[data-v-aa62aa9a]{margin-bottom:10px!important}", ""]);
|
|
20410
20654
|
|
|
20411
20655
|
// exports
|
|
20412
20656
|
|
|
@@ -20436,23 +20680,42 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
20436
20680
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
20437
20681
|
|
|
20438
20682
|
"use strict";
|
|
20439
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{attrs:{"width":_vm.modalWidth,"class-name":"export-modal","closable":false,"mask-closable":false},model:{value:(_vm.modal),callback:function ($$v) {_vm.modal=$$v},expression:"modal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px"}},[_vm._v(_vm._s(_vm.title))]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","cursor":"pointer"},on:{"click":function($event){return _vm.closeModal()}}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),_c('div',{staticClass:"search-content"},[_c('p',{staticClass:"search-content-select"},[_c('span',[_vm._v("已筛选条件:")]),_c('Button',{attrs:{"type":"error"},on:{"click":_vm.closeAll}},[_vm._v("清空")])],1),_vm._v(" "),_c('div',{staticClass:"search-content-select-main"},[_vm._l((_vm.complexQueryConfigAll),function(ele,order){return _vm._l((ele.fields),function(item,index){return (item.searchValue || (item.opName == 'between' && (item.start || item.end)))?_c('p',{staticClass:"select-content",staticStyle:{"display":"flex","align-items":"center","font-size":"14px !important"},attrs:{"closable":""}},[_c('span',{staticClass:"textOverflowBsp",staticStyle:{"min-width":"80px","display":"inline-block","font-size":"14px"},attrs:{"title":item.label}},[_vm._v(_vm._s(item.label)+":"),(item.searchValue && !item.dicInfo)?_c('i',{staticStyle:{"font-size":"16px"}},[_vm._v(_vm._s(item.searchValue))]):_vm._e(),_vm._v(" "),(item.start)?_c('i',[_vm._v(" "+_vm._s(_vm.dayjs(item.start).format('YYYY-MM-DD HH:mm:ss'))+"-")]):_vm._e(),(item.end)?_c('i',[_vm._v(_vm._s(_vm.dayjs(item.end).format('YYYY-MM-DD HH:mm:ss')))]):_vm._e()]),_vm._v(" "),(item.searchValue && item.dicInfo)?_c('s-dicgrid',{attrs:{"disabled":"","multiple":item.isDicMultiple,"dicName":item.dicInfo},model:{value:(item.searchValue),callback:function ($$v) {_vm.$set(item, "searchValue", $$v)},expression:"item.searchValue"}}):_vm._e(),_vm._v("\n "),_c('Icon',{attrs:{"type":"md-close-circle"},on:{"click":function($event){return _vm.closeItem(order, index, item)}}})],1):_vm._e()})})],2),_vm._v(" "),_c('Collapse',{model:{value:(_vm.searchType),callback:function ($$v) {_vm.searchType=$$v},expression:"searchType"}},_vm._l((_vm.complexQueryConfigAll),function(item,order){return _c('Panel',{attrs:{"name":order + ''}},[_vm._v("\n "+_vm._s(item.groupName)+"\n "),_c('div',{attrs:{"slot":"content"},slot:"content"},[_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_c('div',{key:order,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((item.fields),function(condi,idx){return _c('div',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '31%' })},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '13' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-checkbox',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '12' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-radio',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,staticStyle:{"width":"100%"},attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)])],1)])}),1)],1),_vm._v(" "),_c('div',{staticClass:"model-footer",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{on:{"click":_vm.closeModal}},[_vm._v("取消")]),_vm._v(" "),_c('Button',{attrs:{"type":"primary","loading":_vm.modal_loading},on:{"click":_vm.confirmExport}},[_vm._v("立即检索")])],1)])}
|
|
20683
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{attrs:{"width":_vm.modalWidth,"class-name":"export-modal","closable":false,"mask-closable":false},model:{value:(_vm.modal),callback:function ($$v) {_vm.modal=$$v},expression:"modal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px"}},[_vm._v(_vm._s(_vm.title))]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","cursor":"pointer"},on:{"click":function($event){return _vm.closeModal()}}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),_c('div',{staticClass:"search-content"},[_c('p',{staticClass:"search-content-select"},[_c('span',[_vm._v("已筛选条件:")]),_c('Button',{attrs:{"type":"error"},on:{"click":_vm.closeAll}},[_vm._v("清空")])],1),_vm._v(" "),_c('div',{staticClass:"search-content-select-main"},[_vm._l((_vm.complexQueryConfigAll),function(ele,order){return _vm._l((ele.fields),function(item,index){return (item.searchValue || (item.opName == 'between' && (item.start || item.end)))?_c('p',{key:order,staticClass:"select-content",staticStyle:{"display":"flex","align-items":"center","font-size":"14px !important"},attrs:{"closable":""}},[_c('span',{staticClass:"textOverflowBsp",staticStyle:{"min-width":"80px","display":"inline-block","font-size":"14px"},attrs:{"title":item.label}},[_vm._v(_vm._s(item.label)+":"),(item.searchValue && !item.dicInfo)?_c('i',{staticStyle:{"font-size":"16px"}},[_vm._v(_vm._s(item.searchValue))]):_vm._e(),_vm._v(" "),(item.start)?_c('i',[_vm._v(" "+_vm._s(_vm.dayjs(item.start).format('YYYY-MM-DD HH:mm:ss'))+"-")]):_vm._e(),(item.end)?_c('i',[_vm._v(_vm._s(_vm.dayjs(item.end).format('YYYY-MM-DD HH:mm:ss')))]):_vm._e()]),_vm._v(" "),(item.searchValue && item.dicInfo)?_c('s-dicgrid',{attrs:{"disabled":"","multiple":item.isDicMultiple,"dicName":item.dicInfo},model:{value:(item.searchValue),callback:function ($$v) {_vm.$set(item, "searchValue", $$v)},expression:"item.searchValue"}}):_vm._e(),_vm._v("\n "),_c('Icon',{attrs:{"type":"md-close-circle"},on:{"click":function($event){return _vm.closeItem(order, index, item)}}})],1):_vm._e()})})],2),_vm._v(" "),_c('Collapse',{model:{value:(_vm.searchType),callback:function ($$v) {_vm.searchType=$$v},expression:"searchType"}},_vm._l((_vm.complexQueryConfigAll),function(item,order){return _c('Panel',{key:order+'complexQueryConfigAll',attrs:{"name":order + ''}},[_vm._v("\n "+_vm._s(item.groupName)+"\n "),_c('div',{attrs:{"slot":"content"},slot:"content"},[_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_c('div',{key:order,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((item.fields),function(condi,idx){return _c('div',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '31%' })},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '13' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-checkbox',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '12' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-radio',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,staticStyle:{"width":"100%"},attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)])],1)])}),1)],1),_vm._v(" "),_c('div',{staticClass:"model-footer",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{on:{"click":_vm.closeModal}},[_vm._v("取消")]),_vm._v(" "),_c('Button',{attrs:{"type":"primary","loading":_vm.modal_loading},on:{"click":_vm.confirmExport}},[_vm._v("立即检索")])],1)])}
|
|
20440
20684
|
var staticRenderFns = []
|
|
20441
20685
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
20442
20686
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
20443
20687
|
|
|
20444
20688
|
/***/ }),
|
|
20445
20689
|
/* 84 */
|
|
20690
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
20691
|
+
|
|
20692
|
+
!function(e,t){ true?module.exports=t():"function"==typeof define&&define.amd?define("sd-custom-dialog",[],t):"object"==typeof exports?exports["sd-custom-dialog"]=t():e["sd-custom-dialog"]=t()}("undefined"!=typeof self?self:this,function(){return function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="/dist/",t(t.s=4)}([function(e,t,r){"use strict";var n=r(14),o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};t.a={props:{value:{type:String,default:""},dialogMark:String,params:{type:Object,default:function(){return{}}},return:{type:String,default:""},readonly:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},button:{type:String,default:"选择"},bindEvent:{type:Boolean,default:!0},isMulti:{type:Boolean,default:!1}},data:function(){return{txt:this.value,isBuild:!1,openStatus:!1,component:null,mark:this.dialogMark,isPage:"0",style:"",conditionField:[],fixedQueryFields:[],displayField:[],sortField:[],returnField:[],pageSearch:!0,searchShow:!1,tableData:[],tableColumns:[],batch_select:[],pageNo:1,pageSize:10,pageSizeOpts:[10,20,50],totalNum:0,orderKey:[],orderType:[],loading:!1,showCheckbox:!1,dialogTitle:"",isSingle:"1",showType:"0",curIdx:"",modalWidth:520,modalHeight:400,searchValue:"",treeData:[],originTreeData:[],selectedNode:{},currentNodeId:""}},methods:{template:function(e,t){return n.a.config({sTag:"{{",eTag:"}}",escape:!0}),Object(n.a)(e,t)},query_data:function(e){var t=this;this.loading=!0,e&&(this.pageNo=e),this.batch_select=[],this.curIdx=-1;var r={mark:this.mark,pageNo:this.pageNo,pageSize:this.pageSize};"0"===this.isPage&&(r.pageSize=-1);var n=this.build_query_condis();n.length>0&&(r.condis=JSON.stringify(n)),r.sortName=this.orderKey.join(","),r.sortType=this.orderType.join(","),Object.assign(r,this.$route.query,this.params),this.$store.dispatch("postRequest",{url:"/bsp-com/com/fm/dialog/getQueryPageData",params:r}).then(function(e){if(e.success)if("0"===t.showType)t.tableData=e.rows,t.totalNum=e.total;else{var r=t.transData(e.rows);t.treeData=r,t.originTreeData=r}t.loading=!1})},searchTree:function(){this.treeData=this.originTreeData,this.searchValue&&(this.treeData=this.rebuildData(this.searchValue,this.treeData),this.expandTree(this.treeData))},expandTree:function(e){var t=this;e.forEach(function(e){e.expand=!0,e.children&&e.children.length>0&&t.expandTree(e.children)})},rebuildData:function(e,t){var r=this,n=[];return t.forEach(function(t){if(t.title.indexOf(e)>-1&&(!t.children||0==t.children.length))n.push(t);else if(t.children&&t.children.length>0){var i=r.rebuildData(e,t.children),a=o({},t,{children:i});i&&i.length>0&&n.push(a)}}),n},transData:function(e){for(var t=[],r={},n=this.displayField[0].id.toLowerCase(),o=this.displayField[0].parentId.toLowerCase(),i=0,a=0,s=e.length,c=this.displayField[0].showNameCol.toLowerCase();i<s;i++){var l=e[i];l.expanded=!0,l.title=e[i][c],r[e[i][n]]=l}for(;a<s;a++){var d=e[a],u=r[d[o]];u?(!u.children&&(u.children=[]),u.children.push(d)):t.push(d)}return t},selectTreeNode:function(e){var t=e[0];t?this.selectedNode=t:t=this.selectedNode;for(var r=this.treeData,n=0;n<r.length;n++){var o=r[n],i=o.children.filter(function(e,t){return 1==e.checked});if(!t.parentId&&t.id==o.id){var a=JSON.parse(JSON.stringify(o));if(a.checked){var s=[];a.indeterminate=!1;for(var c=0;c<a.children.length;c++){var l=a.children[c];l.checked=!1,s.push(l)}a.children=s}else if(t.indeterminate){a.indeterminate=!1;for(var d=[],u=0;u<a.children.length;u++){var p=a.children[u];p.checked=!0,d.push(p)}a.children=d}a.checked=!a.checked,this.treeData.splice(n,1,a);break}if(t.parentId==o.id)for(var f=0;f<o.children.length;f++){var h=o.children[f];if(t.id==h.id){var g=h;return g.checked=!h.checked,o.children.splice(f,1,g),void(o.indeterminate&&1==i.length&&i[0].id==t.id?(o.indeterminate=!1,this.treeData.splice(n,1,o)):i.length==o.children.length&&o.checked&&(o.checked=!1,o.indeterminate=!0,this.treeData.splice(n,1,o)))}}}},clickTreeNode:function(e){var t=e[0];t?this.selectedNode=t:t=this.selectedNode;var r=this.treeData;this.selectTreeNode1(t,r)},selectTreeNode1:function(e,t){for(var r=0;r<t.length;r++){var n=t[r];if(n.id===e.id){var o=JSON.parse(JSON.stringify(n));return o.checked=!o.checked,void t.splice(r,1,o)}var i=n.children;void 0!==i&&i.length>0&&this.selectTreeNode1(e,i)}},build_query_condis:function(){var e=[],t=this.conditionField.concat();return this.fixedQueryFields.length>0&&(t=t.concat(this.fixedQueryFields)),t.forEach(function(t){if("between"===t.condition){if(t.start){var r={name:t.field,op:">=",value:t.start,controlType:t.controlType};e.push(r)}if(t.end){var n=t.end;16===n.length&&"04"===t.controlType?n+=":59":14===n.length&&"04"===t.controlType&&(n+=":59:59");var o={name:t.field,op:"<=",value:n,controlType:t.controlType};e.push(o)}}else if(t.searchValue&&""!==t.searchValue.trim()){var i={name:t.field,op:t.condition,value:t.searchValue.trim(),controlType:t.controlType};e.push(i)}}),e},createTree:function(e,t){var r=this.displayField[0].id,n=this.displayField[0].parentId,o=this.displayField[0].showNameCol,i=this,a=[];return e.forEach(function(s){var c=null,l=s[r],d=s[n],u=s[o];if(""!==t||void 0!==d&&""!==d?t==d&&(c=s):c=s,null!=c){var p={};p.data=c,p.id=l,p.parentId=d,p.title=u,p.children=i.createTree(e,l),p.expand=!0,a.push(p)}}),a},renderContent:function(e,t){var r=(t.root,t.node),n=t.data,o=this.displayField[0].id.toLowerCase();n.expanded&&(r.expanded=!0);var i="ios-paper-outline";n.children&&n.children.length>0&&(i="ios-folder-outline");var a=[];if(1==this.isSingle){var s=!1;n[o]===this.currentNodeId&&(s=!0),a.push(e("Radio",{props:{value:s,size:"large"}}))}return a.push(e("Icon",{props:{type:i,color:"#6e95f1"},style:{marginRight:"4px"}})),a.push(e("span",{style:{fontSize:"16px"},attrs:{title:n.title}},n.title)),e("span",a)},filterNode:function(e,t){return!e||-1!==t.title.indexOf(e)},checkChange:function(e,t){if(1==this.isSingle){this.$refs.dialogTree.setCheckedNodes([e]);var r=this.displayField[0].id.toLowerCase();this.currentNodeId=e[r]}},searchField:function(){var e=this.searchValue;this.$refs.dialogTree.filter(e),e||this.setAllExpand(this.originTreeData[0].id,!1)},setAllExpand:function(e,t){var r=this.$refs.dialogTree.store.nodesMap;for(var n in r)r[n].expanded=e===n||t},errorMsg:function(e){this.$Modal.error({title:"温馨提示",content:e})},warnMsg:function(e){this.$Modal.warning({title:"温馨提示",content:e})},on_batch_select:function(e){this.batch_select=e},array_index:function(e,t){for(var r=0,n=e.length;r<n;r++)if(e[r]===t)return r;return-1}}}},function(e,t,r){"use strict";/*!
|
|
20693
|
+
* @jsmini/type 0.9.2 (https://github.com/jsmini/type)
|
|
20694
|
+
* API https://github.com/jsmini/type/blob/master/doc/api.md
|
|
20695
|
+
* Copyright 2017-2019 jsmini. All Rights Reserved
|
|
20696
|
+
* Licensed under MIT (https://github.com/jsmini/type/blob/master/LICENSE)
|
|
20697
|
+
*/
|
|
20698
|
+
function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function o(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(t=!!t,null===e)return"null";var r=n(e);if(t&&"number"===r&&isNaN(e))return"nan";if("object"!==r)return r;var o,a;try{o=i.call(e).slice(8,-1),a=o.toLowerCase()}catch(e){return"object"}if("object"!==a){if(t){if("number"===a&&isNaN(e))return"NaN";if("number"===a||"boolean"===a||"string"===a)return o}return a}if(e.constructor==Object)return a;try{if(null===Object.getPrototypeOf(e)||null===e.__proto__)return"object"}catch(e){}try{var s=e.constructor.name;if("string"==typeof s)return s}catch(e){}return"unknown"}r.d(t,"a",function(){return o});var i=Object.prototype.toString},function(e,t,r){"use strict";/*!
|
|
20699
|
+
* @jsmini/extend 0.3.3 (https://github.com/jsmini/extend)
|
|
20700
|
+
* API https://github.com/jsmini/extend/blob/master/doc/api.md
|
|
20701
|
+
* Copyright 2017-2019 jsmini. All Rights Reserved
|
|
20702
|
+
* Licensed under MIT (https://github.com/jsmini/extend/blob/master/LICENSE)
|
|
20703
|
+
*/
|
|
20704
|
+
function n(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function o(){return s.apply(void 0,arguments)}function i(e){if(!Object(a.c)(e)&&!Object(a.a)(e))throw new TypeError("extend target param must is object");for(var t=0;t<(arguments.length<=1?0:arguments.length-1);t++){var r=t+1<1||arguments.length<=t+1?void 0:arguments[t+1];for(var o in r){var s=e[o],c=r[o];if(e!==c&&n(r,o)){var l=void 0;if(c&&(Object(a.c)(c)||(l=Object(a.a)(c)))){var d=void 0;d=l?s&&Object(a.a)(s)?s:[]:s&&Object(a.c)(s)?s:{},e[o]=i(d,c)}else void 0!==c&&(e[o]=c)}}}return e}r.d(t,"a",function(){return o}),r.d(t,"b",function(){return i});var a=r(15),s=Object(a.b)(Object.assign)?Object.assign:function(e){if(!Object(a.c)(e))throw new TypeError("assign first param must is object");for(var t=0;t<(arguments.length<=1?0:arguments.length-1);t++){var r=t+1<1||arguments.length<=t+1?void 0:arguments[t+1];if(Object(a.c)(r))for(var o in r)n(r,o)&&(e[o]=r[o])}return e}},function(e,t,r){"use strict";var n=r(12);t.a={mixins:[n.a],watch:{value:function(e){this.txt=e},txt:function(e){this.$emit("input",e)},dialogMark:function(){this.isBuild=!1}},mounted:function(){this.bindEvent&&this.$slots.func&&(this.reference=this.$slots.func[0].elm,this.reference.addEventListener("click",this.openCustomDialog))},methods:{confirm:function(){var e=this,t=[];if(t="0"===this.showType?this.batch_select:this.$refs.dialogTree.getCheckedNodes(),0==t.length)return this.warnMsg("请选择数据"),!1;var r=[];t.forEach(function(t,n){var o={};e.returnField.forEach(function(e){o[e.field.toLowerCase()]=t[e.field.toLowerCase()]}),r.push(o)}),this.on_select(r),this.openStatus=!1,this.$emit("on-select",r)},on_select:function(e){var t=this;if(e&&this.return){var r={};Object.keys(e[0]).forEach(function(e){r[e]=[]}),e.forEach(function(e){for(var t in e)r[t].push(e[t])});var n=this.return.split("|");n&&n.length>0&&n.forEach(function(e){var n=e.split(":");if(n&&n.length>=2){var o=r[n[1].toLowerCase()],i="";o&&(i=o.join(",")),t.$emit("update:"+n[0],i)}})}},cancel:function(){this.openStatus=!1,this.$emit("on-cancel")},focus:function(){this.$refs.input.focus()},clearData:function(){var e=this;if(this.$emit("input",""),this.return){var t=this.return.split("|");t&&t.length>0&&t.forEach(function(t){var r=t.split(":");r&&r.length>=2&&e.$emit("update:"+r[0],"")}),"1"===this.showType?this.$refs.dialogTree.setCheckedKeys([]):(this.curIdx=-1,this.batch_select=[])}this.$emit("on-clear")}}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(5);r.d(t,"sDialog",function(){return n.a});var o={install:function(e){e.component("s-dialog",n.a)}};t.default=o},function(e,t,r){"use strict";function n(e){r(6)}var o=r(3),i=r(20),a=r(11),s=n,c=a(o.a,i.a,!1,s,"data-v-1045f482",null);t.a=c.exports},function(e,t,r){var n=r(7);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);r(9)("83b8e50c",n,!0,{})},function(e,t,r){t=e.exports=r(8)(!1),t.push([e.i,".bsp_custom_box[data-v-1045f482]{padding:10px;overflow-y:auto}[data-v-1045f482] .bsp_custom_box *{font-size:15px!important}[data-v-1045f482] .bsp_custom_box .ivu-modal-content .ivu-modal-body,[data-v-1045f482] .bsp_custom_box .ivu-modal-header{padding:0}[data-v-1045f482] .bsp_custom_box .ivu-icon-ios-close{font-size:32px!important;line-height:40px}.bsp_custom_box .formbox[data-v-1045f482]{background:rgba(247,249,252,.9);padding:8px 0 0;margin-bottom:10px;border:1px solid #cee0f0}[data-v-1045f482] .bsp_custom_box .ivu-table td,[data-v-1045f482] .bsp_custom_box .ivu-table th{height:36px}.bsp_custom_box .bsp_searchBox[data-v-1045f482]{display:flex;flex-wrap:wrap}[data-v-1045f482] .bsp_custom_box .ivu-form-item{margin-bottom:0;height:42px}[data-v-1045f482] .bsp_custom_box .ivu-form .ivu-form-item-label{font-size:16px;padding-right:2px}.bsp_custom_box .bsp_custom_btnBox[data-v-1045f482]{text-align:center}.bsp_custom_box .bsp_custom_button[data-v-1045f482]{margin:10px;border-radius:2px}.bsp_custom_box .bsp_custom_btn1[data-v-1045f482]{background:#3179f5;color:#fff;width:65px}.bsp_custom_box .i-data[data-v-1045f482]{position:absolute;display:inline-block;background:#e5efff;font-style:normal;color:#666;padding:0 10px;height:20px;line-height:20px;top:6px;border-radius:50px;right:-35px}.bsp_custom_box .page-btn[data-v-1045f482],.bsp_custom_box .page-Data[data-v-1045f482]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0;font-size:16px}.bsp_custom_box .page-Data i[data-v-1045f482]{font-style:normal;color:#3179f5;margin:0 5px;font-weight:700;font-size:16px}.bsp_custom_box .bsp_custom_Total[data-v-1045f482]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0;padding:0 15px;border-radius:2px;cursor:pointer;font-size:16px}.bsp_custom_box .page_box[data-v-1045f482]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}[data-v-1045f482] .bsp_custom_box .ivu-poptip-content{border:1px solid #2d8cf0}[data-v-1045f482] .bsp_custom_box .ivu-table th{background:#dee9fc}.ivu-table-border td[data-v-1045f482],[data-v-1045f482] .bsp_custom_box .ivu-table-border th{border-right:1px solid #f5f4f4}[data-v-1045f482] .bsp_custom_box .steylehang .bsp_custom_btnBox .bsp_custom_button{margin:0 10px}.ivu-table-wrapper>.ivu-spin-fix[data-v-1045f482]{background-color:hsla(0,0%,100%,.6)}.bsp_custom_box .flow-modal-title[data-v-1045f482]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-1045f482] .bsp_custom-input .ivu-input-search{font-size:15px;padding:0!important;width:70px;max-width:70px}[data-v-1045f482] .bsp_custom-input .ivu-input-icon{right:66px;font-size:20px}[data-v-1045f482] .bsp_custom-input .ivu-input{font-size:16px}.bsp_custom-org-tree[data-v-1045f482]{margin:10px;border:1px solid #cee0f0;overflow:hidden}.bsp_custom-org-tree .org-search-box[data-v-1045f482]{background:#f2f6fc;padding:5px 25px}.bsp_custom-org-tree[data-v-1045f482] .ivu-input{height:30px;border-color:#cee0f0;font-size:15px!important}.bsp_custom-org-tree[data-v-1045f482] .ivu-input:focus{border-color:#337bf5;box-shadow:inset 0 0 0 1000px #fff!important}.bsp_custom-org-tree .content-box[data-v-1045f482]{height:458px;padding:5px 15px}.bsp_custom-org-tree[data-v-1045f482] .ivu-tree ul li{margin:2px 0}.bsp_custom-org-tree[data-v-1045f482] .ivu-radio-wrapper{margin-right:4px}.bsp_custom-org-tree[data-v-1045f482] .ivu-radio-inner{border-color:#cee0f0}.bsp_custom-org-tree[data-v-1045f482] .ivu-radio-checked .ivu-radio-inner{border-color:#2b5fda}.bsp_custom-org-tree[data-v-1045f482] .ivu-radio-checked .ivu-radio-inner:after{background-color:#2b5fda}.bsp_custom-org-tree[data-v-1045f482] .ivu-tree .ivu-checkbox-wrapper{margin-right:0}.bsp_custom-org-tree[data-v-1045f482] .ivu-checkbox-checked .ivu-checkbox-inner{border-color:#2d8cf0;background-color:#2d8cf0}.bsp-base-form .ivu-radio-inner[data-v-1045f482],.bsp_custom-org-tree[data-v-1045f482] .ivu-checkbox-inner{border-color:#cee0f0;height:16px;width:16px}.bsp_custom-org-tree[data-v-1045f482] .ivu-icon-ios-arrow-forward{cursor:pointer;color:#c0c4cc;font-weight:100;font-size:19px!important}.bsp_custom-org-tree[data-v-1045f482] .el-tree .ivu-icon,.bsp_custom-org-tree[data-v-1045f482] .ivu-tree .ivu-icon-ios-folder-outline,[data-v-1045f482] .ivu-tree .ivu-icon-ios-home-outline{font-size:20px!important;font-weight:700}.bsp_custom-org-tree[data-v-1045f482] .el-tree .el-checkbox__inner{height:16px;width:16px;border:1px solid #cee0f0}.bsp_custom-org-tree[data-v-1045f482] .el-tree .el-checkbox__inner:after{height:8px;left:5px;border:2px solid #fff;border-left:0;border-top:0}.bsp_custom-org-tree[data-v-1045f482] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#2b5fda;background-color:#2b5fda}.bsp_custom-org-tree[data-v-1045f482] .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:#f0f5ff}.bsp_custom-org-tree .bsp-scroll[data-v-1045f482]{overflow:overlay}.bsp-scroll[data-v-1045f482]::-webkit-scrollbar{width:10px;height:10px}.bsp-scroll[data-v-1045f482]::-webkit-scrollbar-thumb{border-radius:3px;background:#b7c7dd}.bsp-scroll[data-v-1045f482]::-webkit-scrollbar-track{border-radius:3px;background:#ededed}",""])},function(e,t){function r(e,t){var r=e[1]||"",o=e[3];if(!o)return r;if(t&&"function"==typeof btoa){var i=n(o);return[r].concat(o.sources.map(function(e){return"/*# sourceURL="+o.sourceRoot+e+" */"})).concat([i]).join("\n")}return[r].join("\n")}function n(e){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+" */"}e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n=r(t,e);return t[2]?"@media "+t[2]+"{"+n+"}":n}).join("")},t.i=function(e,r){"string"==typeof e&&(e=[[null,e,""]]);for(var n={},o=0;o<this.length;o++){var i=this[o][0];"number"==typeof i&&(n[i]=!0)}for(o=0;o<e.length;o++){var a=e[o];"number"==typeof a[0]&&n[a[0]]||(r&&!a[2]?a[2]=r:r&&(a[2]="("+a[2]+") and ("+r+")"),t.push(a))}},t}},function(e,t,r){function n(e){for(var t=0;t<e.length;t++){var r=e[t],n=d[r.id];if(n){n.refs++;for(var o=0;o<n.parts.length;o++)n.parts[o](r.parts[o]);for(;o<r.parts.length;o++)n.parts.push(i(r.parts[o]));n.parts.length>r.parts.length&&(n.parts.length=r.parts.length)}else{for(var a=[],o=0;o<r.parts.length;o++)a.push(i(r.parts[o]));d[r.id]={id:r.id,refs:1,parts:a}}}}function o(){var e=document.createElement("style");return e.type="text/css",u.appendChild(e),e}function i(e){var t,r,n=document.querySelector("style["+_+'~="'+e.id+'"]');if(n){if(h)return g;n.parentNode.removeChild(n)}if(b){var i=f++;n=p||(p=o()),t=a.bind(null,n,i,!1),r=a.bind(null,n,i,!0)}else n=o(),t=s.bind(null,n),r=function(){n.parentNode.removeChild(n)};return t(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;t(e=n)}else r()}}function a(e,t,r,n){var o=r?"":n.css;if(e.styleSheet)e.styleSheet.cssText=m(t,o);else{var i=document.createTextNode(o),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(i,a[t]):e.appendChild(i)}}function s(e,t){var r=t.css,n=t.media,o=t.sourceMap;if(n&&e.setAttribute("media",n),v.ssrId&&e.setAttribute(_,t.id),o&&(r+="\n/*# sourceURL="+o.sources[0]+" */",r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */"),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var c="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!c)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var l=r(10),d={},u=c&&(document.head||document.getElementsByTagName("head")[0]),p=null,f=0,h=!1,g=function(){},v=null,_="data-vue-ssr-id",b="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());e.exports=function(e,t,r,o){h=r,v=o||{};var i=l(e,t);return n(i),function(t){for(var r=[],o=0;o<i.length;o++){var a=i[o],s=d[a.id];s.refs--,r.push(s)}t?(i=l(e,t),n(i)):i=[];for(var o=0;o<r.length;o++){var s=r[o];if(0===s.refs){for(var c=0;c<s.parts.length;c++)s.parts[c]();delete d[s.id]}}}};var m=function(){var e=[];return function(t,r){return e[t]=r,e.filter(Boolean).join("\n")}}()},function(e,t){e.exports=function(e,t){for(var r=[],n={},o=0;o<t.length;o++){var i=t[o],a=i[0],s=i[1],c=i[2],l=i[3],d={id:e+":"+o,css:s,media:c,sourceMap:l};n[a]?n[a].parts.push(d):r.push(n[a]={id:a,parts:[d]})}return r}},function(e,t){e.exports=function(e,t,r,n,o,i){var a,s=e=e||{},c=typeof e.default;"object"!==c&&"function"!==c||(a=e,s=e.default);var l="function"==typeof s?s.options:s;t&&(l.render=t.render,l.staticRenderFns=t.staticRenderFns,l._compiled=!0),r&&(l.functional=!0),o&&(l._scopeId=o);var d;if(i?(d=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__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},l._ssrRegister=d):n&&(d=n),d){var u=l.functional,p=u?l.render:l.beforeCreate;u?(l._injectStyles=d,l.render=function(e,t){return d.call(t),p(e,t)}):l.beforeCreate=p?[].concat(p,d):[d]}return{esModule:a,exports:s,options:l}}},function(e,t,r){"use strict";var n=r(13),o=r(18),i=r(19);t.a={mixins:[n.a,o.a,i.a],methods:{openCustomDialog:function(){if(this.isBuild)return void(this.openStatus=!0);this.init_dialog_config()},init_dialog_config:function(){var e=this,t={mark:this.mark};this.$store.dispatch("postRequest",{url:"/bsp-com/com/fm/dialog/getDialogByMark",params:t}).then(function(t){if(t.success){var r=t.data;e.isPage=r.isPage,e.dialogTitle=r.name;try{e.pageSize=Number(r.pageSize),e.pageSizeOpts.indexOf(e.pageSize)<0&&(e.pageSizeOpts.push(e.pageSize),e.pageSizeOpts.sort(function(e,t){return e-t}))}catch(e){}e.modalWidth=Number(r.width),e.modalHeight=Number(r.height),e.isSingle=r.isSingle,e.displayField=JSON.parse(r.displayField),e.showType=r.showType;var n=JSON.parse(r.sortField);if(e.displayField.length<1)return void e.errorMsg("未配置展示字段");"0"===r.showType&&e.build_show_field(n);var o=JSON.parse(r.conditionField);o.length>0&&e.build_query_fields(o),e.build_sort_field(n),void 0!==r.pageSize&&""!==r.pageSize||(e.pageSearch=!1),e.bulid_page({},r.pageSize),e.openStatus=!0,e.isBuild=!0,e.query_data(1),e.returnField=JSON.parse(r.returnField)}else e.modal=!1,e.$Modal.error({title:"温馨提示",content:t.msg})})},build_sort_field:function(e){var t=this;e.forEach(function(e){t.orderKey.push(e.field),e.comment?t.orderType.push("asc"):t.orderType.push("desc")})}}}},function(e,t,r){"use strict";var n=r(0);t.a={mixins:[n.a],methods:{build_show_field:function(e){var t=this,r={};e&&e.length>0&&e.forEach(function(e){t.orderKey.push(e.field.toLowerCase());var n=e.comment?"asc":"desc";t.orderType.push(n),r[e.field.toLowerCase()]=n});var n=[];"0"===this.isSingle||this.isMulti?(t.showCheckbox=!0,n.push(t.checkbox_column())):n.push(t.radio_column()),n.push(t.index_column()),t.displayField.forEach(function(e,t){var o={};o.title=e.comment,o.show=!0,o.align=e.align,o.width=e.width,o.tooltip=!0,o.key=e.field.toLowerCase(),e.dicName&&""!==e.dicName&&(o.key=e.field.toLowerCase()+"Name"),r[e.field.toLowerCase()]&&(o.sortable="custom",o.sortType=r[e.field.toLowerCase()]),n.push(o)}),t.tableColumns=n},on_sort_change:function(e){var t=(e.column,e.key),r=e.order;t.indexOf("Name")>-1&&(t=t.substring(0,t.indexOf("Name")));var n=this.array_index(this.orderKey,t);n>-1&&(this.orderType.splice(n,1,r),this.query_data())},index_column:function(){return{title:"序号",type:"index",width:70,align:"center"}},checkbox_column:function(){return{type:"selection",width:60,align:"center"}},radio_column:function(){var e=this;return{title:" ",align:"center",width:50,render:function(t,r){var n=!1;return r.index===e.curIdx&&(n=!0),t("div",[t("Radio",{props:{value:n}})])}}}}}},function(e,t,r){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return c.a.apply(null,[{}].concat(e))}function o(e,t){void 0===t&&(t=h);var r=Object(l.a)(e,t),n='\n var html = (function (__data__, __modifierMap__) {\n var __str__ = "", __code__ = "";\n for(var key in __data__) {\n __str__+=("var " + key + "=__data__[\'" + key + "\'];");\n }\n eval(__str__);\n\n'+r+"\n ;return __code__;\n }(__data__, __modifierMap__));\n return html;\n";n=n.replace(/[\r]/g," ");try{var o=new Function("__data__","__modifierMap__",n);return o.toString=function(){return r},o}catch(e){throw e.temp="function anonymous(__data__, __modifierMap__) {"+n+"}",e}}function i(e,t){function r(r){r=n(g,r);try{var o=i(r,v);return o=t.compress?p(o):o}catch(t){return t.name="RenderError",t.tpl=e,t.render=i.toString(),f(t)()}}void 0===t&&(t=h),t=n(h,t);try{var i=o(e,t)}catch(t){return t.name="CompileError",t.tpl=e,t.render=t.temp,delete t.temp,f(t)}return r.toString=function(){return i.toString()},r}function a(e,t){if("string"!=typeof e)return"";var r=i(e);return"object"!==Object(s.a)(t)?r:r(t)}var s=r(1),c=r(2),l=r(16),d=r(17),u=d.a.encodeHTML,p=d.a.compress,f=d.a.handelError,h=d.a.o,g=d.a.functionMap,v=d.a.modifierMap;a.config=function(e){return d.a.config(e)},a.registerFunction=function(e,t){return d.a.registerFunction(e,t)},a.unregisterFunction=function(e){return d.a.unregisterFunction(e)},a.registerModifier=function(e,t){return d.a.registerModifier(e,t)},a.unregisterModifier=function(e){return d.a.unregisterModifier(e)},a.encodeHTML=u,a.compress=p,a.handelError=f,a.functionMap=g,a.modifierMap=v,a.__encodeHTML=u,a.__compress=p,a.__handelError=f,a.__compile=i,t.a=a},function(e,t,r){"use strict";function n(e){return"object"===Object(i.a)(e)}function o(e){return"function"===Object(i.a)(e)}r.d(t,"c",function(){return n}),r.d(t,"b",function(){return o}),r.d(t,"a",function(){return a});var i=r(1),a=o(Array.isArray)?Array.isArray:function(e){return"array"===Object(i.a)(e)}},function(e,t,r){"use strict";function n(e){e=String(e).replace(/('|")/g,"\\$1");for(var t=e.split(/\r\n|\n/),r="",n=0;n<t.length;n++)r+=';__code__ += ("'+t[n]+(n===t.length-1?'")\n':'\\n")\n');return r}function o(e,t){void 0===t&&(t=!0),e=String(e),t=!!t;var r,n,o=/^(?:=|(:.*?)=)(.*)$/;return(n=o.exec(e))?(r=n[2],';__code__ += __modifierMap__["'+(n[1]?n[1].slice(1):t?"h":"")+'"](typeof ('+r+') !== "undefined" ? ('+r+') : "")\n'):";"+e+"\n"}function i(e,t){void 0===t&&(t=s);var r=Object(a.b)({},s,t),i=r.sTag,c=r.eTag,l=r.escape;e=String(e);for(var d="",u=e.split(i),p=0,f=u.length;p<f;p++){var h=u[p].split(c);1===h.length?d+=n(h[0]):(d+=o(h[0],l),h[1]&&(d+=n(h[1])))}return d}r.d(t,"a",function(){return i});var a=r(2),s={sTag:"<%",eTag:"%>",escape:!0}},function(e,t,r){"use strict";function n(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return l.a.apply(null,[{}].concat(e))}function o(e){return e}function i(e){return String(e).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/\\/g,"\").replace(/"/g,""").replace(/'/g,"'")}function a(e,t){"undefined"!=typeof console&&console[e]&&console[e](t)}function s(){}var c=r(1),l=r(2),d={sTag:"<%",eTag:"%>",compress:!1,escape:!0,error:function(){}},u={},p={"":function(e){return o(e)},h:function(e){return i(e)},u:function(e){return encodeURI(e)}};s.config=function(e){return"object"===Object(c.a)(e)&&(d=Object(l.a)(d,e)),n(d)},s.compress=function(e){return String(e).replace(/\s+/g," ").replace(/<!--[\w\W]*?-->/g,"")},s.handelError=function(e){function t(){return"template.js error"}var r="template.js error\n\n";for(var n in e)r+="<"+n+">\n"+e[n]+"\n\n";return r+="<message>\n"+e.message+"\n\n",a("error",r),d.error(e),t.toString=function(){return'__code__ = "template.js error"'},t},s.registerFunction=function(e,t){return"string"!=typeof e?n(u):"function"!==Object(c.a)(t)?u[e]:u[e]=t},s.unregisterFunction=function(e){return"string"==typeof e&&(delete u[e],!0)},s.registerModifier=function(e,t){return"string"!=typeof e?n(p):"function"!==Object(c.a)(t)?p[e]:p[e]=t},s.unregisterModifier=function(e){return"string"==typeof e&&(delete p[e],!0)},s.encodeHTML=i,s.functionMap=u,s.modifierMap=p,s.o=d,t.a=s},function(e,t,r){"use strict";var n=r(0);t.a={mixins:[n.a],methods:{build_query_fields:function(e){for(var t=[],r=[],n=0,o=e.length;n<o;n++){var i=e[n];if(i.defaultValue){var a=Object.assign({},this.params,this.$route.query),s=this.template(i.defaultValue.trim(),{user:this.$store.getters.sessionUser,req:a});i.searchValue=s}var c=i.field.toLowerCase(),l=this.params[c];l&&(i.searchValue=l),"1"===i.defaultType?t.push(i):"2"===i.defaultType?r.push(i):l&&(i.searchValue=l,r.push(i))}t.length>0&&(this.searchShow=!0,this.conditionField=t),this.fixedQueryFields=r},on_row_click:function(e,t){"0"===this.isSingle||this.isMulti?this.$refs.table.toggleSelect(t):(this.curIdx=t,this.batch_select=[],this.batch_select.push(e))},reset_query_condis:function(){var e=this;this.queryFields.forEach(function(t){t.forEach(function(t){e.$set(t,"searchValue",t.defaultValue),e.$set(t,"start",t.startDefault),e.$set(t,"end",t.endDefault)})}),this.query_data(1)}}}},function(module,__webpack_exports__,__webpack_require__){"use strict";var __WEBPACK_IMPORTED_MODULE_0__data__=__webpack_require__(0);__webpack_exports__.a={mixins:[__WEBPACK_IMPORTED_MODULE_0__data__.a],methods:{bulid_page:function bulid_page(pageSizeOptions,pageSize){try{var option=eval("("+pageSizeOptions+")");pageSize&&(this.pageSize=parseInt(pageSize)),option.length>0&&(this.pageSizeOpts=option)}catch(e){}},change_page:function(e){this.query_data(e)},change_size:function(e){this.pageSize=e,this.query_data()}}}},function(e,t,r){"use strict";var n=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[e.$slots.func?e._t("func"):r("Input",{ref:"input",staticClass:"bsp_custom-input",attrs:{disabled:e.disabled,clearable:"",readonly:e.readonly,search:"","enter-button":e.button,placeholder:""},on:{"on-clear":e.clearData,"on-search":e.openCustomDialog},model:{value:e.txt,callback:function(t){e.txt=t},expression:"txt"}}),e._v(" "),r("Modal",{attrs:{"mask-closable":!1,closable:!1,"class-name":"bsp_custom_box",width:e.modalWidth},model:{value:e.openStatus,callback:function(t){e.openStatus=t},expression:"openStatus"}},[r("div",{staticClass:"flow-modal-title",attrs:{slot:"header"},slot:"header"},[r("span",{staticStyle:{"font-size":"17px !important"}},[e._v(e._s(e.dialogTitle))]),e._v(" "),r("span",{staticStyle:{position:"absolute",right:"6px","font-size":"32px",cursor:"pointer"},on:{click:e.cancel}},[r("i",{staticClass:"ivu-icon ivu-icon-ios-close"})])]),e._v(" "),"0"===e.showType?r("div",{staticClass:"bsp_custom_box"},[e.searchShow?r("Form",{staticClass:"formbox",attrs:{"label-width":100}},[r("div",{staticClass:"bsp_searchBox steylehang"},[e._l(e.conditionField,function(t,n){return[r("FormItem",{key:n,attrs:{label:t.comment+":"}},["02"===t.controlType?[r("s-dicgrid",{ref:"dicGrid",refInFor:!0,style:t.controlStyle?t.controlStyle:"width:220px",attrs:{dicName:t.dicName},model:{value:t.searchValue,callback:function(r){e.$set(t,"searchValue",r)},expression:"condi.searchValue"}})]:"03"===t.controlType&&"between"===t.condition?[r("el-date-picker",{style:t.controlStyle,attrs:{format:t.dateFormat,"value-format":"yyyy-MM-dd",size:"small",type:"date",placeholder:"开始日期"},model:{value:t.start,callback:function(r){e.$set(t,"start",r)},expression:"condi.start"}}),e._v("\n\t\t\t\t\t\t\t\t\t至\n\t\t\t\t\t\t\t\t\t"),r("el-date-picker",{style:t.controlStyle,attrs:{format:t.dateFormat,"value-format":"yyyy-MM-dd",size:"small",type:"date",placeholder:"结束日期"},model:{value:t.end,callback:function(r){e.$set(t,"end",r)},expression:"condi.end"}})]:"03"===t.controlType?[r("el-date-picker",{style:t.dateFormat,attrs:{format:t.format,"value-format":"yyyy-MM-dd",size:"small",type:"date",placeholder:"选择日期"},model:{value:t.searchValue,callback:function(r){e.$set(t,"searchValue",r)},expression:"condi.searchValue"}})]:"04"===t.controlType&&"between"===t.condition?[r("el-date-picker",{style:t.controlStyle,attrs:{format:t.dateFormat,"value-format":t.dateFormat,size:"small",type:"datetime",placeholder:"开始日期"},model:{value:t.start,callback:function(r){e.$set(t,"start",r)},expression:"condi.start"}}),e._v("\n\t\t\t\t\t\t\t\t\t至\n\t\t\t\t\t\t\t\t\t"),r("el-date-picker",{style:t.controlStyle,attrs:{format:t.dateFormat,"value-format":t.dateFormat,size:"small",type:"datetime",placeholder:"结束日期"},model:{value:t.end,callback:function(r){e.$set(t,"end",r)},expression:"condi.end"}})]:"04"===t.controlType?[r("el-date-picker",{style:t.dateFormat,attrs:{format:t.format,"value-format":t.dateFormat,size:"small",type:"datetime",placeholder:"选择日期"},model:{value:t.searchValue,callback:function(r){e.$set(t,"searchValue",r)},expression:"condi.searchValue"}})]:[r("Input",{style:t.controlStyle,attrs:{placeholder:""},on:{"on-enter":function(t){return e.query_data(1)}},model:{value:t.searchValue,callback:function(r){e.$set(t,"searchValue",r)},expression:"condi.searchValue"}})]],2)]}),e._v(" "),r("div",{staticClass:"bsp_custom_btnBox"},[r("Button",{staticClass:"bsp_custom_button bsp_custom_btn1",attrs:{type:"primary"},on:{click:function(t){return e.query_data(1)}}},[e._v("查 询")])],1)],2)]):e._e(),e._v(" "),r("div",{staticStyle:{width:"100%"}},[r("Table",{ref:"table",attrs:{loading:e.loading,"tooltip-theme":"light",height:e.modalHeight,width:e.modalWidth-20,columns:e.tableColumns,data:e.tableData,stripe:"",border:""},on:{"on-selection-change":e.on_batch_select,"on-sort-change":e.on_sort_change,"on-row-click":e.on_row_click}})],1),e._v(" "),"1"===e.isPage?[r("div",{staticClass:"page_box"},[e.showCheckbox?r("span",{staticClass:"page-Data"},[e._v("共选中"),r("i",[e._v(e._s(e.batch_select.length))]),e._v("条数据")]):e._e(),e._v(" "),r("div",{staticStyle:{float:"right"}},[r("Page",{staticStyle:{display:"inline-block",margin:"10px 0"},attrs:{total:e.totalNum,current:e.pageNo,"page-size":e.pageSize,"page-size-opts":e.pageSizeOpts,size:"small","show-elevator":"","show-sizer":""},on:{"on-change":e.change_page,"on-page-size-change":e.change_size}}),e._v(" "),r("span",{staticClass:"bsp_custom_Total"},[e._v("共 "+e._s(e.totalNum)+" 条 ")])],1)])]:e._e()],2):e._e(),e._v(" "),"1"===e.showType?r("div",{staticClass:"bsp_custom-org-tree",style:{width:e.modalWidth-20+"px"}},[r("div",{staticClass:"org-search-box"},[r("Input",{staticStyle:{width:"80%"},attrs:{suffix:"ios-search",placeholder:"搜索"},on:{"on-change":e.searchField},model:{value:e.searchValue,callback:function(t){e.searchValue=t},expression:"searchValue"}})],1),e._v(" "),r("div",{staticClass:"content-box bsp-scroll",staticStyle:{padding:"10px 5px 15px 0px"}},[r("el-tree",{ref:"dialogTree",attrs:{data:e.treeData,"node-key":e.displayField[0].id.toLowerCase(),"expand-on-click-node":!1,"show-checkbox":!("1"===e.isSingle),"check-strictly":!0,"highlight-current":!0,accordion:!1,"check-on-click-node":!0,"filter-node-method":e.filterNode,indent:26,"render-content":e.renderContent,"icon-class":"el-icon-arrow-right"},on:{check:e.checkChange}})],1),e._v(" "),e.loading?r("Spin",{attrs:{size:"large",fix:""}}):e._e()],1):e._e(),e._v(" "),r("div",{attrs:{slot:"footer"},slot:"footer"},[r("Button",{staticStyle:{margin:"0 15px"},attrs:{type:"error"},on:{click:e.cancel}},[e._v("取 消")]),e._v(" "),r("Button",{attrs:{type:"primary"},on:{click:e.confirm}},[e._v("确 认")])],1)])],2)},o=[],i={render:n,staticRenderFns:o};t.a=i}])});
|
|
20705
|
+
//# sourceMappingURL=sd-custom-dialog.js.map
|
|
20706
|
+
|
|
20707
|
+
/***/ }),
|
|
20708
|
+
/* 85 */
|
|
20446
20709
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
20447
20710
|
|
|
20448
20711
|
"use strict";
|
|
20449
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:"DataGrid-BOX"},[(_vm.displayQuery && _vm.searchShow && _vm.searchType === '02')?_c('Form',{staticClass:"formbox-simple",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_c('div',{staticClass:"searchBox steylehang",staticStyle:{"float":"left"}},[_vm._l((_vm.queryFields[0]),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),_vm._v(" "),_c('div',{staticClass:"btnBox"},[_c('Button',{staticClass:"button btn1",attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")])],1)],2)]):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '01')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '31%' })},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '13' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-checkbox',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '12' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-radio',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,staticStyle:{"width":"100%"},attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn2",attrs:{"type":"primary"},on:{"click":_vm.resetSearch}},[_vm._v("高级查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('div',{staticClass:"search-content"},[_c('p',{staticClass:"search-content-select"},[_c('span',[_vm._v("已筛选条件:")]),_c('Button',{attrs:{"type":"error"},on:{"click":_vm.closeAll}},[_vm._v("清空")])],1),_vm._v(" "),_c('div',{staticClass:"search-content-select-main"},[_vm._l((_vm.complexQueryConfig),function(ele,order){return _vm._l((ele.fields),function(item,index){return (item.searchValue || (item.opName == 'between' && (item.start || item.end)))?_c('p',{staticClass:"select-content",staticStyle:{"display":"flex","align-items":"center","font-size":"14px !important"},attrs:{"closable":""}},[_c('span',{staticClass:"textOverflowBsp",staticStyle:{"min-width":"80px","display":"inline-block","font-size":"14px"},attrs:{"title":item.label}},[_vm._v(_vm._s(item.label)+":"),(item.searchValue && !item.dicInfo)?_c('i',{staticStyle:{"font-size":"16px"}},[_vm._v(_vm._s(item.searchValue))]):_vm._e(),_vm._v(" "),(item.start)?_c('i',[_vm._v(" "+_vm._s(_vm.dayjs(item.start).format('YYYY-MM-DD HH:mm:ss'))+"-")]):_vm._e(),(item.end)?_c('i',[_vm._v(_vm._s(_vm.dayjs(item.end).format('YYYY-MM-DD HH:mm:ss')))]):_vm._e()]),_vm._v(" "),(item.searchValue && item.dicInfo)?_c('s-dicgrid',{attrs:{"disabled":"","multiple":item.isDicMultiple,"dicName":item.dicInfo},model:{value:(item.searchValue),callback:function ($$v) {_vm.$set(item, "searchValue", $$v)},expression:"item.searchValue"}}):_vm._e(),_vm._v("\n "),_c('Icon',{attrs:{"type":"md-close-circle"},on:{"click":function($event){return _vm.closeItem(order, index, item)}}})],1):_vm._e()})})],2)]):_vm._e(),_vm._v(" "),((_vm.quickFilter && _vm.quickFilter.length > 0) || (_vm.headOper && _vm.headOper.length > 0 && _vm.showOper))?_c('div',{class:['titleNav', _vm.quickFilter && _vm.quickFilter.length > 0 ? 'hale' : 'nohale']},[_c('div',{staticClass:"navleft"},[(_vm.customFunc && _vm.showOper)?_c('div',[_vm._t("customHeadFunc",null,{"func":_vm.funcAuth}),_vm._v(" "),_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORTKey",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:_vm._e(),_vm._v(" "),(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:_vm._e()]:_vm._e()})],2):_vm._e(),_vm._v(" "),(!_vm.customFunc && _vm.showOper)?[_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-add',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"error"},on:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'ios-trash-outline',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headRefreshOper(1)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-refresh',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORT",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:(oper.operType === 'DATAEXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()}),_vm._v(" "),(_vm.headOperBatch.length > 0)?_c('Dropdown',{attrs:{"placement":"bottom","trigger":"click","transfer":""}},[_c('Button',{staticStyle:{"font-size":"15px","margin-right":"10px","margin-top":"5px"},attrs:{"type":"info"}},[_vm._v(" 操 作"),_c('Icon',{staticStyle:{"margin-left":"2px"},attrs:{"size":"20","type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{staticClass:"data-grid-bsp",staticStyle:{"text-align":"center"},attrs:{"slot":"list"},slot:"list"},[_vm._l((_vm.headOperBatch),function(oper,idx){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headRefreshOper(1)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'EXPORT')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headExportOper()}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()})],2)],1):_vm._e()]:_vm._e()],2),_vm._v(" "),(_vm.quickFilter && _vm.quickFilter.length > 0 && _vm.rightShowTabs)?_c('div',{staticClass:"navright"},[_vm._l((_vm.quickFilter),function(filters,index){return [_c('div',{key:'filter_div' + index,staticClass:"navlist",class:{ After: index > 0 }},_vm._l((filters),function(item,idx){return _c('span',{key:'filter' + item.id,class:{ active: item.isDefault === '1' },attrs:{"match":item.groupMatchValue},on:{"click":function($event){return _vm.change_quick_filter(index, idx, item.label)}}},[_vm._v("\n "+_vm._s(item.label)),(_vm.comModel.groupStat)?[_vm._v("("+_vm._s(item.groupNum ? item.groupNum : 0)+")")]:_vm._e()],2)}),0)]})],2):_vm._e()]):_vm._e(),_vm._v(" "),(_vm.errorMsg === '')?_c('div',{staticStyle:{"width":"100%"},attrs:{"id":_vm.dataGridId}},[_c('Table',{ref:"sdtable",attrs:{"loading":_vm.loading,"tooltip-theme":"light","tooltip-max-width":300,"height":_vm.externalHeight !== null ? _vm.externalHeight : _vm.dataGridHeight ? _vm.dataGridHeight : '85px',"columns":_vm.dataGridColumns,"data":_vm.gridData,"stripe":"","border":""},on:{"on-row-dblclick":_vm.on_row_dblclick,"on-sort-change":_vm.on_sort_change,"on-row-click":_vm.on_row_click,"on-selection-change":_vm.on_batch_select},scopedSlots:_vm._u([_vm._l((_vm.slotColumn),function(sc){return {key:sc.slot,fn:function(ref){
|
|
20712
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:"DataGrid-BOX"},[(_vm.displayQuery && _vm.searchShow && _vm.searchType === '02')?_c('Form',{staticClass:"formbox-simple",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_c('div',{staticClass:"searchBox steylehang",staticStyle:{"float":"left"}},[_vm._l((_vm.queryFields[0]),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),_vm._v(" "),_c('div',{staticClass:"btnBox"},[_c('Button',{staticClass:"button btn1",attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")])],1)],2)]):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '01')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index+'zhcx',staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '31%' })},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '13' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-checkbox',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '12' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-radio',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,staticStyle:{"width":"100%"},attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1, 'cx')}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn2",attrs:{"type":"primary"},on:{"click":_vm.resetSearch}},[_vm._v("高级查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('div',{staticClass:"search-content"},[_c('p',{staticClass:"search-content-select"},[_c('span',[_vm._v("已筛选条件:")]),_c('Button',{attrs:{"type":"error"},on:{"click":_vm.closeAll}},[_vm._v("清空")])],1),_vm._v(" "),_c('div',{staticClass:"search-content-select-main"},[_vm._l((_vm.complexQueryConfig),function(ele,order){return _vm._l((ele.fields),function(item,index){return (item.searchValue || (item.opName == 'between' && (item.start || item.end)))?_c('p',{key:order,staticClass:"select-content",staticStyle:{"display":"flex","align-items":"center","font-size":"14px !important"},attrs:{"closable":""}},[_c('span',{staticClass:"textOverflowBsp",staticStyle:{"min-width":"80px","display":"inline-block","font-size":"14px"},attrs:{"title":item.label}},[_vm._v(_vm._s(item.label)+":"),(item.searchValue && !item.dicInfo)?_c('i',{staticStyle:{"font-size":"16px"}},[_vm._v(_vm._s(item.searchValue))]):_vm._e(),_vm._v(" "),(item.start)?_c('i',[_vm._v(" "+_vm._s(_vm.dayjs(item.start).format('YYYY-MM-DD HH:mm:ss'))+"-")]):_vm._e(),(item.end)?_c('i',[_vm._v(_vm._s(_vm.dayjs(item.end).format('YYYY-MM-DD HH:mm:ss')))]):_vm._e()]),_vm._v(" "),(item.searchValue && item.dicInfo)?_c('s-dicgrid',{attrs:{"disabled":"","multiple":item.isDicMultiple,"dicName":item.dicInfo},model:{value:(item.searchValue),callback:function ($$v) {_vm.$set(item, "searchValue", $$v)},expression:"item.searchValue"}}):_vm._e(),_vm._v("\n "),_c('Icon',{attrs:{"type":"md-close-circle"},on:{"click":function($event){return _vm.closeItem(order, index, item)}}})],1):_vm._e()})})],2)]):_vm._e(),_vm._v(" "),((_vm.quickFilter && _vm.quickFilter.length > 0) || (_vm.headOper && _vm.headOper.length > 0 && _vm.showOper))?_c('div',{class:['titleNav', _vm.quickFilter && _vm.quickFilter.length > 0 ? 'hale' : 'nohale']},[_c('div',{staticClass:"navleft"},[(_vm.customFunc && _vm.showOper)?_c('div',[_vm._t("customHeadFunc",null,{"func":_vm.funcAuth}),_vm._v(" "),_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORTKey",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:_vm._e(),_vm._v(" "),(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:_vm._e()]:_vm._e()})],2):_vm._e(),_vm._v(" "),(!_vm.customFunc && _vm.showOper)?[_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-add',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"error"},on:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'ios-trash-outline',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headRefreshOper(1)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-refresh',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORT",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:(oper.operType === 'DATAEXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()}),_vm._v(" "),(_vm.headOperBatch.length > 0)?_c('Dropdown',{attrs:{"placement":"bottom","trigger":"click","transfer":""}},[_c('Button',{staticStyle:{"font-size":"15px","margin-right":"10px","margin-top":"5px"},attrs:{"type":"info"}},[_vm._v(" 操 作"),_c('Icon',{staticStyle:{"margin-left":"2px"},attrs:{"size":"20","type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{staticClass:"data-grid-bsp",staticStyle:{"text-align":"center"},attrs:{"slot":"list"},slot:"list"},[_vm._l((_vm.headOperBatch),function(oper,idx){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headRefreshOper(1)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'EXPORT')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headExportOper()}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()})],2)],1):_vm._e()]:_vm._e()],2),_vm._v(" "),(_vm.quickFilter && _vm.quickFilter.length > 0 && _vm.rightShowTabs)?_c('div',{staticClass:"navright"},[_vm._l((_vm.quickFilter),function(filters,index){return [_c('div',{key:'filter_div' + index,staticClass:"navlist",class:{ After: index > 0 }},_vm._l((filters),function(item,idx){return _c('span',{key:'filter' + item.id,class:{ active: item.isDefault === '1' },attrs:{"match":item.groupMatchValue},on:{"click":function($event){return _vm.change_quick_filter(index, idx, item.label)}}},[_vm._v("\n "+_vm._s(item.label)),(_vm.comModel.groupStat)?[_vm._v("("+_vm._s(item.groupNum ? item.groupNum : 0)+")")]:_vm._e()],2)}),0)]})],2):_vm._e()]):_vm._e(),_vm._v(" "),(_vm.errorMsg === '')?_c('div',{ref:"scrollWrapper",staticClass:"scroll-wrapper",staticStyle:{"width":"100%"},attrs:{"id":_vm.dataGridId}},[_c('Table',{ref:"sdtable",attrs:{"loading":_vm.loading,"tooltip-theme":"light","tooltip-max-width":300,"height":_vm.externalHeight !== null ? _vm.externalHeight : _vm.dataGridHeight ? _vm.dataGridHeight : '440px',"columns":_vm.dataGridColumns,"data":_vm.gridData,"stripe":"","border":""},on:{"on-row-dblclick":_vm.on_row_dblclick,"on-sort-change":_vm.on_sort_change,"on-row-click":_vm.on_row_click,"on-selection-change":_vm.on_batch_select},scopedSlots:_vm._u([_vm._l((_vm.slotColumn),function(sc){return {key:sc.slot,fn:function(ref){
|
|
20450
20713
|
var row = ref.row;
|
|
20451
20714
|
var index = ref.index;
|
|
20452
20715
|
return [_vm._t('slot_' + sc.slot,null,{"row":row,"index":index})]}}}),{key:"action",fn:function(ref){
|
|
20453
20716
|
var row = ref.row;
|
|
20454
20717
|
var index = ref.index;
|
|
20455
|
-
return [(_vm.customFunc && _vm.showOper)?_vm._t("customRowFunc",null,{"func":_vm.funcAuth,"row":row,"index":index}):_vm._e(),_vm._v(" "),(!_vm.customFunc && _vm.showOper)?[_vm._l((_vm.rowOper),function(oper){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"row":row,"index":index,"oper":oper}):(oper.operType === 'ADD')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"size":"small"},on:{"click":function($event){return _vm.rowAddOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"type":"error","size":"small"},on:{"click":function($event){return _vm.rowDeleteOper(row, index, oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'MODIFY')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"type":"primary","size":"small"},on:{"click":function($event){return _vm.rowModifyOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DETAIL')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"size":"small","type":"primary"},on:{"click":function($event){return _vm.rowDetailOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"size":"small","type":"primary"},on:{"click":function($event){return _vm.rowDealFunction(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]]:_vm._e()}),_vm._v(" "),(_vm.rowOperBatch.length > 0)?_c('Dropdown',{attrs:{"trigger":"click","transfer":"","placement":index > 5 ? 'top' : 'bottom'}},[_c('Button',{attrs:{"type":"info","size":"small"}},[_vm._v(" 操 作"),_c('Icon',{attrs:{"type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{staticClass:"data-grid-bsp",attrs:{"slot":"list"},slot:"list"},[_vm._l((_vm.rowOperBatch),function(oper,idx){return [(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"row":row,"index":idx,"oper":oper}):(oper.operType === 'ADD')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowAddOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowDeleteOper(row, index, oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'MODIFY')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowModifyOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"1\n ")],1)]:(oper.operType === 'DETAIL')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowDetailOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowDealFunction(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]})],2)],1):_vm._e()]:_vm._e()]}}],null,true)})],1):(_vm.errorMsg !== '')?_c('div',{staticStyle:{"text-align":"center"}},[_vm._v("\n "+_vm._s(_vm.errorMsg)+"\n ")]):_vm._e(),_vm._v(" "),(_vm.dataGridLoad)?[_c('div',{staticClass:"page_box"},[(_vm.showCheckbox)?_c('span',{staticClass:"page-Data"},[_vm._v("共选中"),_c('i',[_vm._v(_vm._s(_vm.batch_select.length))]),_vm._v("条数据")]):_vm._e(),_vm._v(" "),_c('div',{staticStyle:{"float":"right"}},[(_vm.pageSearch)?_c('Page',{staticStyle:{"display":"inline-block","margin":"10px 0"},attrs:{"total":_vm.totalNum,"current":_vm.pageNo,"page-size":_vm.pageSize,"page-size-opts":_vm.pageSizeOpts,"size":"small","show-elevator":"","show-sizer":""},on:{"on-change":_vm.change_page,"on-page-size-change":_vm.change_aage_size}}):_vm._e(),_vm._v(" "),_c('span',{staticClass:"Total"},[_vm._v("共 "+_vm._s(_vm.totalNum)+" 条 ")]),_vm._v(" "),(_vm.comModel.customShowField)?_c('span',{staticClass:"page-btn custom",on:{"click":_vm.multi_col_sort}},[_c('span',[_vm._v("自定义列")]),_vm._v(" "),_c('Modal',{attrs:{"width":600,"closable":false,"mask-closable":false,"class-name":"user-selector-modal"},model:{value:(_vm.showModal),callback:function ($$v) {_vm.showModal=$$v},expression:"showModal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px !important"}},[_vm._v("自定义列"),_c('span',{staticStyle:{"font-size":"14px","padding-left":"15px"}},[_vm._v("勾选需要显示的列,拖动列名进行排序")])]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","font-size":"32px","cursor":"pointer"},on:{"click":_vm.handleCancel}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),_c('div',[_c('ul',{staticClass:"list"},_vm._l((_vm.customShowList),function(item,index){return _c('li',{key:item.label,staticClass:"list-item",attrs:{"draggable":""},on:{"dragenter":function($event){return _vm.dragenter($event, index)},"dragover":function($event){return _vm.dragover($event, index)},"dragstart":function($event){return _vm.dragstart(index)}}},[_c('div',{staticClass:"ele1"},[_vm._v(_vm._s(index + 1))]),_vm._v(" "),_c('div',{staticClass:"ele2",style:({ color: item.require ? '#999999' : '#3E4E66' })},[_c('Checkbox',{attrs:{"disabled":item.require},model:{value:(item.check),callback:function ($$v) {_vm.$set(item, "check", $$v)},expression:"item.check"}},[_vm._v(_vm._s(item.label)+" ")])],1),_vm._v(" "),_c('div',{staticClass:"ele3"},[_vm._v(_vm._s(item.require ? '(必选)' : ''))])])}),0)]),_vm._v(" "),_c('div',{staticClass:"footer-container",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{staticClass:"cancle-button",staticStyle:{"background":"#fff"},on:{"click":_vm.handleSet}},[_vm._v("恢复默认")]),_vm._v(" "),_c('Button',{staticClass:"set-button",attrs:{"type":"error"},on:{"click":_vm.handleCancel}},[_vm._v("关 闭")]),_vm._v(" "),_c('Button',{staticClass:"submit-button",attrs:{"type":"primary"},on:{"click":_vm.handleSubmit}},[_vm._v("保 存")])],1)])],1):_vm._e(),_vm._v(" "),_c('span',{staticClass:"page-btn",on:{"click":function($event){return _vm.multi_col_set()}}},[_c('span',[_vm._v("多列筛选")]),_vm._v(" "),(_vm.multiColSetShow)?_c('div',{staticClass:"ulnavlist",on:{"mouseleave":function($event){_vm.multiColSetShow = false}}},[_c('ul',{staticStyle:{"width":"100%","height":"258px","overflow-y":"auto"}},_vm._l((_vm.column),function(col,index){return _c('li',{directives:[{name:"show",rawName:"v-show",value:(col.isColumnFiltering === '1'),expression:"col.isColumnFiltering === '1'"}],key:'col_' + index,class:{ active: col.show },attrs:{"title":col.title},on:{"click":function($event){$event.stopPropagation();return _vm.multi_col_change(index)}}},[_c('i',{staticClass:"iconlist"}),_vm._v("\n "+_vm._s(col.title)+"\n ")])}),0),_vm._v(" "),_c('div',{staticStyle:{"text-align":"center","margin-top":"16px","bottom":"1px"}},[_c('Button',{staticClass:"saveBtn-dlsx",attrs:{"type":"primary","shape":"circle"},on:{"click":function($event){$event.stopPropagation();return _vm.saveCustom()}}},[_vm._v("保 存")]),_vm._v(" \n "),_c('Button',{staticClass:"saveBtn-dlsx",attrs:{"shape":"circle"},on:{"click":function($event){$event.stopPropagation();return _vm.resetCustom()}}},[_vm._v("重 置")])],1)]):_vm._e()]),_vm._v(" "),(_vm.$store.getters.isSAdmin)?_c('span',{staticClass:"page-set",staticStyle:{"cursor":"pointer","margin-right":"-10px"},attrs:{"title":"列表设置"},on:{"click":function($event){return _vm.openSetPage(_vm.$store.getters.token)}}},[_c('Icon',{attrs:{"type":"ios-settings","size":"22"}})],1):_vm._e(),_vm._v(" "),(_vm.showDicManage)?_c('span',{staticClass:"page-set",staticStyle:{"cursor":"pointer","margin-right":"-10px"},attrs:{"title":"字典代码管理"},on:{"click":function($event){return _vm.openDicManage(_vm.$store.getters.token)}}},[_c('Divider',{attrs:{"type":"vertical"}}),_vm._v(" "),_c('Icon',{attrs:{"type":"ios-construct","size":"22"}})],1):_vm._e()],1)])]:_vm._e()],2),_vm._v(" "),(_vm.modalStatus)?_c('div',[_c(_vm.iframeComponent,{tag:"component",attrs:{"modalWidth":_vm.modalWidth,"modalHeight":_vm.modalHeight,"title":_vm.modalTitle,"iframeUrl":_vm.iframeUrl,"modalId":_vm.modalId},on:{"closeModal":_vm.closeModal}})],1):_vm._e(),_vm._v(" "),(_vm.gridExportOptStatus)?_c('grid-export-opt',{attrs:{"gridAllShowFields":_vm.modelShowFields,"modalWidth":_vm.modalWidth,"selectedRows":_vm.batch_select,"rowMark":_vm.comModelProps.rowMark,"gridRequestParams":_vm.gridExportDataRequestParams,"pageSize":_vm.pageSize,"exportMaxCount":_vm.exportMaxCount},on:{"closeModal":_vm.closeExportOptModal}}):_vm._e(),_vm._v(" "),(_vm.gridExportDataStatus)?_c('grid-data-opt',{attrs:{"gridRequestParams":_vm.gridDataRequestParams,"rowMark":_vm.comModelProps.rowMark,"modalWidth":_vm.modalWidth},on:{"closeModal":_vm.closeDataOptModal}}):_vm._e(),_vm._v(" "),(_vm.gridPrintOptStatus)?_c('grid-print-opt',{attrs:{"gridAllShowFields":_vm.modelShowFields,"modalWidth":_vm.modalWidth,"selectedRows":_vm.batch_select,"rowMark":_vm.comModelProps.rowMark,"modelName":_vm.comModel.name,"gridRequestParams":_vm.gridPrintDataRequestParams,"pageSize":_vm.pageSize,"exportMaxCount":_vm.exportMaxCount},on:{"closeModal":_vm.closePrintOptModal}}):_vm._e(),_vm._v(" "),_c('Modal',{attrs:{"mask-closable":false,"closable":true,"width":"80%","title":_vm.dicModalTitle,"footer-hide":true,"scrollable":true},model:{value:(_vm.openDicModal),callback:function ($$v) {_vm.openDicModal=$$v},expression:"openDicModal"}},[(_vm.openDicModal)?_c('dic-manage',{attrs:{"dicNames":_vm.comModelProps.dicNames,"isRefApp":_vm.comModelProps.dicRefApp}}):_vm._e()],1),_vm._v(" "),_c('girdMoreSearch',{ref:"girdMoreSearch",attrs:{"complexQueryConfig":_vm.complexQueryConfig,"comModelProps":_vm.comModelProps,"labelWidth":_vm.labelWidth},on:{"confirmSearch":_vm.confirmSearch}})],1)}
|
|
20718
|
+
return [(_vm.customFunc && _vm.showOper)?_vm._t("customRowFunc",null,{"func":_vm.funcAuth,"row":row,"index":index}):_vm._e(),_vm._v(" "),(!_vm.customFunc && _vm.showOper)?[_vm._l((_vm.rowOper),function(oper){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"row":row,"index":index,"oper":oper}):(oper.operType === 'ADD')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"size":"small"},on:{"click":function($event){return _vm.rowAddOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"type":"error","size":"small"},on:{"click":function($event){return _vm.rowDeleteOper(row, index, oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'MODIFY')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"type":"primary","size":"small"},on:{"click":function($event){return _vm.rowModifyOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DETAIL')?[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"size":"small","type":"primary"},on:{"click":function($event){return _vm.rowDetailOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:[_c('Button',{key:oper.id,staticStyle:{"margin-right":"4px"},attrs:{"size":"small","type":"primary"},on:{"click":function($event){return _vm.rowDealFunction(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{attrs:{"type":oper.iconPath,"size":"15"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]]:_vm._e()}),_vm._v(" "),(_vm.rowOperBatch.length > 0)?_c('Dropdown',{attrs:{"trigger":"click","transfer":"","placement":index > 5 ? 'top' : 'bottom'}},[_c('Button',{attrs:{"type":"info","size":"small"}},[_vm._v(" 操 作"),_c('Icon',{attrs:{"type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{staticClass:"data-grid-bsp",attrs:{"slot":"list"},slot:"list"},[_vm._l((_vm.rowOperBatch),function(oper,idx){return [(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"row":row,"index":idx,"oper":oper}):(oper.operType === 'ADD')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowAddOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v("\n "+_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowDeleteOper(row, index, oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'MODIFY')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowModifyOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"1\n ")],1)]:(oper.operType === 'DETAIL')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowDetailOper(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0,"disabled":_vm.isAuth(oper.auth)},nativeOn:{"click":function($event){return _vm.rowDealFunction(row, index, oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]})],2)],1):_vm._e()]:_vm._e()]}}],null,true)})],1):(_vm.errorMsg !== '')?_c('div',{staticStyle:{"text-align":"center"}},[_vm._v("\n "+_vm._s(_vm.errorMsg)+"\n ")]):_vm._e(),_vm._v(" "),(_vm.dataGridLoad)?[_c('div',{staticClass:"page_box"},[(_vm.showCheckbox)?_c('span',{staticClass:"page-Data"},[_vm._v("共选中"),_c('i',[_vm._v(_vm._s(_vm.batch_select.length))]),_vm._v("条数据")]):_vm._e(),_vm._v(" "),_c('div',{staticStyle:{"float":"right"}},[(_vm.pageSearch)?_c('Page',{staticStyle:{"display":"inline-block","margin":"10px 0"},attrs:{"total":_vm.totalNum,"current":_vm.pageNo,"page-size":_vm.pageSize,"page-size-opts":_vm.pageSizeOpts,"size":"small","show-elevator":"","show-sizer":""},on:{"on-change":_vm.change_page,"on-page-size-change":_vm.change_aage_size}}):_vm._e(),_vm._v(" "),_c('span',{staticClass:"Total"},[_vm._v("共 "+_vm._s(_vm.totalNum)+" 条 ")]),_vm._v(" "),(_vm.comModel.customShowField)?_c('span',{staticClass:"page-btn custom",on:{"click":_vm.multi_col_sort}},[_c('span',[_vm._v("自定义列")]),_vm._v(" "),_c('Modal',{attrs:{"width":600,"closable":false,"mask-closable":false,"class-name":"user-selector-modal"},model:{value:(_vm.showModal),callback:function ($$v) {_vm.showModal=$$v},expression:"showModal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px !important"}},[_vm._v("自定义列"),_c('span',{staticStyle:{"font-size":"14px","padding-left":"15px"}},[_vm._v("勾选需要显示的列,拖动列名进行排序")])]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","font-size":"32px","cursor":"pointer"},on:{"click":_vm.handleCancel}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),_c('div',[_c('ul',{staticClass:"list"},_vm._l((_vm.customShowList),function(item,index){return _c('li',{key:item.label,staticClass:"list-item",attrs:{"draggable":""},on:{"dragenter":function($event){return _vm.dragenter($event, index)},"dragover":function($event){return _vm.dragover($event, index)},"dragstart":function($event){return _vm.dragstart(index)}}},[_c('div',{staticClass:"ele1"},[_vm._v(_vm._s(index + 1))]),_vm._v(" "),_c('div',{staticClass:"ele2",style:({ color: item.require ? '#999999' : '#3E4E66' })},[_c('Checkbox',{attrs:{"disabled":item.require},model:{value:(item.check),callback:function ($$v) {_vm.$set(item, "check", $$v)},expression:"item.check"}},[_vm._v(_vm._s(item.label)+" ")])],1),_vm._v(" "),_c('div',{staticClass:"ele3"},[_vm._v(_vm._s(item.require ? '(必选)' : ''))])])}),0)]),_vm._v(" "),_c('div',{staticClass:"footer-container",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{staticClass:"cancle-button",staticStyle:{"background":"#fff"},on:{"click":_vm.handleSet}},[_vm._v("恢复默认")]),_vm._v(" "),_c('Button',{staticClass:"set-button",attrs:{"type":"error"},on:{"click":_vm.handleCancel}},[_vm._v("关 闭")]),_vm._v(" "),_c('Button',{staticClass:"submit-button",attrs:{"type":"primary"},on:{"click":_vm.handleSubmit}},[_vm._v("保 存")])],1)])],1):_vm._e(),_vm._v(" "),_c('span',{staticClass:"page-btn",on:{"click":function($event){return _vm.multi_col_set()}}},[_c('span',[_vm._v("多列筛选")]),_vm._v(" "),(_vm.multiColSetShow)?_c('div',{staticClass:"ulnavlist",on:{"mouseleave":function($event){_vm.multiColSetShow = false}}},[_c('ul',{staticStyle:{"width":"100%","height":"258px","overflow-y":"auto"}},_vm._l((_vm.column),function(col,index){return _c('li',{directives:[{name:"show",rawName:"v-show",value:(col.isColumnFiltering === '1'),expression:"col.isColumnFiltering === '1'"}],key:'col_' + index,class:{ active: col.show },attrs:{"title":col.title},on:{"click":function($event){$event.stopPropagation();return _vm.multi_col_change(index)}}},[_c('i',{staticClass:"iconlist"}),_vm._v("\n "+_vm._s(col.title)+"\n ")])}),0),_vm._v(" "),_c('div',{staticStyle:{"text-align":"center","margin-top":"16px","bottom":"1px"}},[_c('Button',{staticClass:"saveBtn-dlsx",attrs:{"type":"primary","shape":"circle"},on:{"click":function($event){$event.stopPropagation();return _vm.saveCustom()}}},[_vm._v("保 存")]),_vm._v(" \n "),_c('Button',{staticClass:"saveBtn-dlsx",attrs:{"shape":"circle"},on:{"click":function($event){$event.stopPropagation();return _vm.resetCustom()}}},[_vm._v("重 置")])],1)]):_vm._e()]),_vm._v(" "),(_vm.$store.getters.isSAdmin)?_c('span',{staticClass:"page-set",staticStyle:{"cursor":"pointer","margin-right":"-10px"},attrs:{"title":"列表设置"},on:{"click":function($event){return _vm.openSetPage(_vm.$store.getters.token)}}},[_c('Icon',{attrs:{"type":"ios-settings","size":"22"}})],1):_vm._e(),_vm._v(" "),(_vm.showDicManage)?_c('span',{staticClass:"page-set",staticStyle:{"cursor":"pointer","margin-right":"-10px"},attrs:{"title":"字典代码管理"},on:{"click":function($event){return _vm.openDicManage(_vm.$store.getters.token)}}},[_c('Divider',{attrs:{"type":"vertical"}}),_vm._v(" "),_c('Icon',{attrs:{"type":"ios-construct","size":"22"}})],1):_vm._e()],1)])]:_vm._e()],2),_vm._v(" "),(_vm.modalStatus)?_c('div',[_c(_vm.iframeComponent,{tag:"component",attrs:{"modalWidth":_vm.modalWidth,"modalHeight":_vm.modalHeight,"title":_vm.modalTitle,"iframeUrl":_vm.iframeUrl,"modalId":_vm.modalId},on:{"closeModal":_vm.closeModal}})],1):_vm._e(),_vm._v(" "),(_vm.gridExportOptStatus)?_c('grid-export-opt',{attrs:{"gridAllShowFields":_vm.modelShowFields,"modalWidth":_vm.modalWidth,"selectedRows":_vm.batch_select,"rowMark":_vm.comModelProps.rowMark,"gridRequestParams":_vm.gridExportDataRequestParams,"pageSize":_vm.pageSize,"exportMaxCount":_vm.exportMaxCount},on:{"closeModal":_vm.closeExportOptModal}}):_vm._e(),_vm._v(" "),(_vm.gridExportDataStatus)?_c('grid-data-opt',{attrs:{"gridRequestParams":_vm.gridDataRequestParams,"rowMark":_vm.comModelProps.rowMark,"modalWidth":_vm.modalWidth},on:{"closeModal":_vm.closeDataOptModal}}):_vm._e(),_vm._v(" "),(_vm.gridPrintOptStatus)?_c('grid-print-opt',{attrs:{"gridAllShowFields":_vm.modelShowFields,"modalWidth":_vm.modalWidth,"selectedRows":_vm.batch_select,"rowMark":_vm.comModelProps.rowMark,"modelName":_vm.comModel.name,"gridRequestParams":_vm.gridPrintDataRequestParams,"pageSize":_vm.pageSize,"exportMaxCount":_vm.exportMaxCount},on:{"closeModal":_vm.closePrintOptModal}}):_vm._e(),_vm._v(" "),_c('Modal',{attrs:{"mask-closable":false,"closable":true,"width":"80%","title":_vm.dicModalTitle,"footer-hide":true,"scrollable":true},model:{value:(_vm.openDicModal),callback:function ($$v) {_vm.openDicModal=$$v},expression:"openDicModal"}},[(_vm.openDicModal)?_c('dic-manage',{attrs:{"dicNames":_vm.comModelProps.dicNames,"isRefApp":_vm.comModelProps.dicRefApp}}):_vm._e()],1),_vm._v(" "),_c('girdMoreSearch',{ref:"girdMoreSearch",attrs:{"complexQueryConfig":_vm.complexQueryConfig,"comModelProps":_vm.comModelProps,"labelWidth":_vm.labelWidth},on:{"confirmSearch":_vm.confirmSearch}}),_vm._v(" "),_c('s-dialog',{directives:[{name:"show",rawName:"v-show",value:(_vm.sDialogShow),expression:"sDialogShow"}],ref:"sDialog",attrs:{"dialogMark":_vm.dialogMark,"params":_vm.paramsDialog},scopedSlots:_vm._u([{key:"func",fn:function(){return undefined},proxy:true}])})],1)}
|
|
20456
20719
|
var staticRenderFns = []
|
|
20457
20720
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
20458
20721
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|