sd-data-grid 1.2.69 → 1.2.70
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 +245 -101
- package/dist/sd-data-grid.js.map +1 -1
- package/package.json +1 -1
package/dist/sd-data-grid.js
CHANGED
|
@@ -584,18 +584,53 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
584
584
|
scrollContainer: null, // 存储Table内部滚动容器
|
|
585
585
|
dialogMark: '', //'resource_all',
|
|
586
586
|
paramsDialog: {},
|
|
587
|
-
operObjWidth: 100
|
|
587
|
+
operObjWidth: 100,
|
|
588
|
+
autoGridHeight: 440 // 未配置高度时的自适应高度
|
|
588
589
|
};
|
|
589
590
|
},
|
|
590
591
|
|
|
591
592
|
mixins: [__WEBPACK_IMPORTED_MODULE_0__methods__["a" /* default */]],
|
|
593
|
+
computed: {
|
|
594
|
+
// 列表高度:配置了高度走配置,未配置则自适应
|
|
595
|
+
gridHeight: function gridHeight() {
|
|
596
|
+
// 外部传入的高度优先
|
|
597
|
+
if (this.externalHeight !== null && this.externalHeight !== undefined && this.externalHeight !== '') {
|
|
598
|
+
return this.externalHeight;
|
|
599
|
+
}
|
|
600
|
+
// 配置了有效高度则走配置
|
|
601
|
+
var configHeight = Number(this.dataGridHeight);
|
|
602
|
+
if (!isNaN(configHeight) && configHeight > 0) {
|
|
603
|
+
return configHeight;
|
|
604
|
+
}
|
|
605
|
+
// 未配置则自适应
|
|
606
|
+
return this.autoGridHeight;
|
|
607
|
+
}
|
|
608
|
+
},
|
|
592
609
|
methods: {
|
|
610
|
+
// 计算列表自适应高度(撑满剩余可视区域)
|
|
611
|
+
calcAutoGridHeight: function calcAutoGridHeight() {
|
|
612
|
+
var _this = this;
|
|
613
|
+
|
|
614
|
+
this.$nextTick(function () {
|
|
615
|
+
var wrapper = _this.$refs.scrollWrapper;
|
|
616
|
+
if (!wrapper || !wrapper.getBoundingClientRect) {
|
|
617
|
+
return;
|
|
618
|
+
}
|
|
619
|
+
var top = wrapper.getBoundingClientRect().top;
|
|
620
|
+
var bottomReserve = 70; // 预留分页区域及底部间距
|
|
621
|
+
var height = window.innerHeight - top - bottomReserve;
|
|
622
|
+
if (height < 200) {
|
|
623
|
+
height = 200;
|
|
624
|
+
}
|
|
625
|
+
_this.autoGridHeight = height;
|
|
626
|
+
});
|
|
627
|
+
},
|
|
593
628
|
plog: function plog(title, endtime, starttime) {
|
|
594
629
|
if (!starttime) starttime = this.startTime;
|
|
595
630
|
console.log('[\u6027\u80FD] ' + title + ': ' + (endtime - starttime).toFixed(2) + 'ms');
|
|
596
631
|
},
|
|
597
632
|
query_grid_data: function query_grid_data(pageNo, Tag) {
|
|
598
|
-
var
|
|
633
|
+
var _this2 = this;
|
|
599
634
|
|
|
600
635
|
this.renderData = [];
|
|
601
636
|
this.currentStart = 0;
|
|
@@ -612,29 +647,29 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
612
647
|
params: params
|
|
613
648
|
}).then(function (resp) {
|
|
614
649
|
if (resp.success) {
|
|
615
|
-
|
|
650
|
+
_this2.plog('数据接收耗时', performance.now());
|
|
616
651
|
var renderStart = performance.now();
|
|
617
652
|
var onRenderComplete = function onRenderComplete() {
|
|
618
|
-
|
|
619
|
-
|
|
653
|
+
_this2.plog('渲染耗时', performance.now(), renderStart);
|
|
654
|
+
_this2.plog('总耗时', performance.now());
|
|
620
655
|
};
|
|
621
656
|
|
|
622
657
|
// 回调
|
|
623
|
-
|
|
624
|
-
if (
|
|
625
|
-
|
|
658
|
+
_this2.$emit('returnParamsSuccess', params, resp, _this2.returnParams);
|
|
659
|
+
if (_this2.beforeRender) {
|
|
660
|
+
_this2.beforeRender(resp).then(function (data) {
|
|
626
661
|
if (data.success) {
|
|
627
|
-
|
|
662
|
+
_this2.initRenderData(data.rows, data.total, onRenderComplete);
|
|
628
663
|
}
|
|
629
664
|
});
|
|
630
665
|
} else {
|
|
631
|
-
|
|
666
|
+
_this2.initRenderData(resp.rows, resp.total, onRenderComplete);
|
|
632
667
|
}
|
|
633
668
|
|
|
634
669
|
//分组统计
|
|
635
|
-
if (
|
|
670
|
+
if (_this2.comModel.groupStat && _this2.comModel.groupStatField && resp.group && _this2.quickFilter) {
|
|
636
671
|
try {
|
|
637
|
-
|
|
672
|
+
_this2.quickFilter[0].forEach(function (qf) {
|
|
638
673
|
//基于分组字段统计
|
|
639
674
|
if (!qf.groupStatType || qf.groupStatType == '0') {
|
|
640
675
|
var statFields = qf.groupStatField.split('|');
|
|
@@ -662,13 +697,13 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
662
697
|
|
|
663
698
|
//异步下载
|
|
664
699
|
if (resp.asyncExportTotal) {
|
|
665
|
-
|
|
700
|
+
_this2.asyncExportTotal = resp.asyncExportTotal;
|
|
666
701
|
}
|
|
667
702
|
}
|
|
668
703
|
});
|
|
669
704
|
},
|
|
670
705
|
getGridRequestParams: function getGridRequestParams(Tag) {
|
|
671
|
-
var
|
|
706
|
+
var _this3 = this;
|
|
672
707
|
|
|
673
708
|
var params = {
|
|
674
709
|
modelId: this.comModel.mark,
|
|
@@ -696,7 +731,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
696
731
|
var _orderKey = [];
|
|
697
732
|
if (this.orderKey.length > 0) {
|
|
698
733
|
this.orderKey.forEach(function (item) {
|
|
699
|
-
var _key =
|
|
734
|
+
var _key = _this3.chineseSort[item];
|
|
700
735
|
if (_key) {
|
|
701
736
|
_orderKey.push(_key);
|
|
702
737
|
} else {
|
|
@@ -749,25 +784,25 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
749
784
|
|
|
750
785
|
// 2. 核心:获取Table内部滚动容器(ivu-table-overflowY)
|
|
751
786
|
initScrollContainer: function initScrollContainer() {
|
|
752
|
-
var
|
|
787
|
+
var _this4 = this;
|
|
753
788
|
|
|
754
789
|
setTimeout(function () {
|
|
755
790
|
// 等待Table渲染完成后再获取滚动容器
|
|
756
791
|
var collection = document.getElementsByClassName("ivu-table-overflowY");
|
|
757
792
|
console.log(collection, "成功绑定Table滚动容器");
|
|
758
793
|
if (collection.length > 0) {
|
|
759
|
-
|
|
794
|
+
_this4.scrollContainer = collection[0];
|
|
760
795
|
// 绑定滚动事件
|
|
761
|
-
|
|
762
|
-
|
|
796
|
+
_this4.scrollContainer.addEventListener("scroll", _this4.handleTableScroll);
|
|
797
|
+
_this4.resetScrollTop();
|
|
763
798
|
console.log("成功绑定Table滚动容器");
|
|
764
799
|
} else {
|
|
765
800
|
// 兜底:若首次获取失败,延时重试(兼容Table渲染慢的场景)
|
|
766
801
|
setTimeout(function () {
|
|
767
802
|
var retryCollection = document.getElementsByClassName("ivu-table-overflowY");
|
|
768
803
|
if (retryCollection.length > 0) {
|
|
769
|
-
|
|
770
|
-
|
|
804
|
+
_this4.scrollContainer = retryCollection[0];
|
|
805
|
+
_this4.scrollContainer.addEventListener("scroll", _this4.handleTableScroll);
|
|
771
806
|
} else {
|
|
772
807
|
console.warn("未找到Table滚动容器:ivu-table-overflowY");
|
|
773
808
|
}
|
|
@@ -795,46 +830,46 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
795
830
|
|
|
796
831
|
// 4. 加载下一批数据(从全量数据中截取)
|
|
797
832
|
loadMoreData: function loadMoreData() {
|
|
798
|
-
var
|
|
833
|
+
var _this5 = this;
|
|
799
834
|
|
|
800
835
|
this.loading = false;
|
|
801
836
|
// 模拟加载延迟(真实接口可去掉)
|
|
802
837
|
setTimeout(function () {
|
|
803
838
|
// 计算本次加载的结束索引
|
|
804
|
-
var endIndex =
|
|
839
|
+
var endIndex = _this5.currentStart + 100;
|
|
805
840
|
// 截取要追加的部分数据
|
|
806
|
-
var newData =
|
|
841
|
+
var newData = _this5.gridData.slice(_this5.currentStart, endIndex);
|
|
807
842
|
|
|
808
843
|
// 追加到渲染列表(只渲染部分数据)
|
|
809
|
-
|
|
844
|
+
_this5.renderData = [].concat(_toConsumableArray(_this5.renderData), _toConsumableArray(newData));
|
|
810
845
|
// console.log(this.renderData,'this.renderData')
|
|
811
846
|
// 更新起始索引
|
|
812
|
-
|
|
847
|
+
_this5.currentStart = endIndex;
|
|
813
848
|
|
|
814
849
|
// 判断是否加载完所有数据
|
|
815
|
-
if (
|
|
816
|
-
|
|
850
|
+
if (_this5.renderData.length >= _this5.gridData.length) {
|
|
851
|
+
_this5.noMoreData = true;
|
|
817
852
|
} else {
|
|
818
|
-
|
|
853
|
+
_this5.noMoreData = false;
|
|
819
854
|
}
|
|
820
|
-
|
|
855
|
+
_this5.loading = false;
|
|
821
856
|
}, 200);
|
|
822
857
|
},
|
|
823
858
|
|
|
824
859
|
// 4. 重置滚动容器到顶部
|
|
825
860
|
resetScrollTop: function resetScrollTop() {
|
|
826
|
-
var
|
|
861
|
+
var _this6 = this;
|
|
827
862
|
|
|
828
863
|
this.$nextTick(function () {
|
|
829
864
|
// 确保DOM更新后再操作滚动条
|
|
830
|
-
if (
|
|
831
|
-
|
|
865
|
+
if (_this6.scrollContainer) {
|
|
866
|
+
_this6.scrollContainer.scrollTop = 0; // 滚动条置顶
|
|
832
867
|
} else {
|
|
833
868
|
// 兜底:重新获取滚动容器并置顶
|
|
834
869
|
var collection = document.getElementsByClassName("ivu-table-overflowY");
|
|
835
870
|
if (collection.length > 0) {
|
|
836
|
-
|
|
837
|
-
|
|
871
|
+
_this6.scrollContainer = collection[0];
|
|
872
|
+
_this6.scrollContainer.scrollTop = 0;
|
|
838
873
|
}
|
|
839
874
|
}
|
|
840
875
|
// this.initScrollContainer()
|
|
@@ -863,7 +898,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
863
898
|
|
|
864
899
|
// condis参数
|
|
865
900
|
build_query_condis: function build_query_condis(Tag) {
|
|
866
|
-
var
|
|
901
|
+
var _this7 = this;
|
|
867
902
|
|
|
868
903
|
//console.log(Tag, 'Tag', Tag && Tag != 'cx')
|
|
869
904
|
var queryParams = [];
|
|
@@ -873,7 +908,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
873
908
|
queryFields.forEach(function (item) {
|
|
874
909
|
if (item.fields && item.fields.length > 0) {
|
|
875
910
|
item.fields.forEach(function (ele) {
|
|
876
|
-
|
|
911
|
+
_this7.queryFields.forEach(function (filesChild) {
|
|
877
912
|
filesChild.forEach(function (dd) {
|
|
878
913
|
if (ele.name == dd.name) {
|
|
879
914
|
dd = Object.assign(dd, ele);
|
|
@@ -890,7 +925,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
890
925
|
queryFieldsDefault.forEach(function (item) {
|
|
891
926
|
if (item.fields && item.fields.length > 0) {
|
|
892
927
|
item.fields.forEach(function (ele) {
|
|
893
|
-
|
|
928
|
+
_this7.queryFields.forEach(function (filesChild) {
|
|
894
929
|
queryFieldsGj.push(ele);
|
|
895
930
|
filesChild.forEach(function (dd) {
|
|
896
931
|
if (ele.name == dd.name) {
|
|
@@ -2205,6 +2240,8 @@ module.exports = {
|
|
|
2205
2240
|
//
|
|
2206
2241
|
//
|
|
2207
2242
|
//
|
|
2243
|
+
//
|
|
2244
|
+
//
|
|
2208
2245
|
|
|
2209
2246
|
|
|
2210
2247
|
|
|
@@ -2483,6 +2520,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
2483
2520
|
//
|
|
2484
2521
|
//
|
|
2485
2522
|
//
|
|
2523
|
+
//
|
|
2486
2524
|
|
|
2487
2525
|
|
|
2488
2526
|
|
|
@@ -2554,6 +2592,8 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
2554
2592
|
title: '导出数据',
|
|
2555
2593
|
totalCount: 0,
|
|
2556
2594
|
modal_loading: false,
|
|
2595
|
+
checkAll: true,
|
|
2596
|
+
checkAllIndeterminate: false,
|
|
2557
2597
|
ruleValidate: {
|
|
2558
2598
|
fileName: [{ required: true, message: '文件名称不能为空', trigger: 'blur,change' }],
|
|
2559
2599
|
pageRange: [{ validator: this.validatePageRange, trigger: 'blur,change' }],
|
|
@@ -2622,6 +2662,40 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
2622
2662
|
});
|
|
2623
2663
|
(_exportOption$exportF = this.exportOption.exportFields).push.apply(_exportOption$exportF, _toConsumableArray(allowExportFieldNames));
|
|
2624
2664
|
}
|
|
2665
|
+
// 默认全选,同步全选框状态
|
|
2666
|
+
this.updateCheckAllStatus();
|
|
2667
|
+
},
|
|
2668
|
+
handleCheckAll: function handleCheckAll() {
|
|
2669
|
+
if (this.checkAllIndeterminate) {
|
|
2670
|
+
this.checkAll = false;
|
|
2671
|
+
} else {
|
|
2672
|
+
this.checkAll = !this.checkAll;
|
|
2673
|
+
}
|
|
2674
|
+
this.checkAllIndeterminate = false;
|
|
2675
|
+
if (this.checkAll) {
|
|
2676
|
+
this.exportOption.exportFields = this.allowExportFields.map(function (e) {
|
|
2677
|
+
return e.name;
|
|
2678
|
+
});
|
|
2679
|
+
} else {
|
|
2680
|
+
this.exportOption.exportFields = [];
|
|
2681
|
+
}
|
|
2682
|
+
},
|
|
2683
|
+
handleCheckGroupChange: function handleCheckGroupChange() {
|
|
2684
|
+
this.updateCheckAllStatus();
|
|
2685
|
+
},
|
|
2686
|
+
updateCheckAllStatus: function updateCheckAllStatus() {
|
|
2687
|
+
var selectedCount = this.exportOption.exportFields.length;
|
|
2688
|
+
var totalCount = this.allowExportFields.length;
|
|
2689
|
+
if (selectedCount === 0) {
|
|
2690
|
+
this.checkAll = false;
|
|
2691
|
+
this.checkAllIndeterminate = false;
|
|
2692
|
+
} else if (selectedCount === totalCount) {
|
|
2693
|
+
this.checkAll = true;
|
|
2694
|
+
this.checkAllIndeterminate = false;
|
|
2695
|
+
} else {
|
|
2696
|
+
this.checkAll = false;
|
|
2697
|
+
this.checkAllIndeterminate = true;
|
|
2698
|
+
}
|
|
2625
2699
|
},
|
|
2626
2700
|
validatePageRange: function validatePageRange(rule, value, callback) {
|
|
2627
2701
|
if (!value || !value.fromPageNo || !value.toPageNo) {
|
|
@@ -4249,7 +4323,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
|
4249
4323
|
"use strict";
|
|
4250
4324
|
/* 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);
|
|
4251
4325
|
/* unused harmony namespace reexport */
|
|
4252
|
-
/* harmony import */ var
|
|
4326
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bd385e28_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);
|
|
4253
4327
|
function injectStyle (ssrContext) {
|
|
4254
4328
|
__webpack_require__(26)
|
|
4255
4329
|
}
|
|
@@ -4264,12 +4338,12 @@ var __vue_template_functional__ = false
|
|
|
4264
4338
|
/* styles */
|
|
4265
4339
|
var __vue_styles__ = injectStyle
|
|
4266
4340
|
/* scopeId */
|
|
4267
|
-
var __vue_scopeId__ = "data-v-
|
|
4341
|
+
var __vue_scopeId__ = "data-v-bd385e28"
|
|
4268
4342
|
/* moduleIdentifier (server only) */
|
|
4269
4343
|
var __vue_module_identifier__ = null
|
|
4270
4344
|
var Component = normalizeComponent(
|
|
4271
4345
|
__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 */],
|
|
4272
|
-
|
|
4346
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bd385e28_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 */],
|
|
4273
4347
|
__vue_template_functional__,
|
|
4274
4348
|
__vue_styles__,
|
|
4275
4349
|
__vue_scopeId__,
|
|
@@ -4290,7 +4364,7 @@ var content = __webpack_require__(27);
|
|
|
4290
4364
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
4291
4365
|
if(content.locals) module.exports = content.locals;
|
|
4292
4366
|
// add the styles to the DOM
|
|
4293
|
-
var update = __webpack_require__(2)("
|
|
4367
|
+
var update = __webpack_require__(2)("5a18b352", content, true);
|
|
4294
4368
|
|
|
4295
4369
|
/***/ }),
|
|
4296
4370
|
/* 27 */
|
|
@@ -4301,7 +4375,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
4301
4375
|
|
|
4302
4376
|
|
|
4303
4377
|
// module
|
|
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}", ""]);
|
|
4378
|
+
exports.push([module.i, ".list[data-v-bd385e28]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-bd385e28],.list .list-item[data-v-bd385e28]{text-align:center;width:60px}.ele2[data-v-bd385e28],.list .list-item[data-v-bd385e28]{text-align:left;flex:1}.ele3[data-v-bd385e28],.list .list-item[data-v-bd385e28]{text-align:center;width:80px}.list .list-item[data-v-bd385e28]{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-bd385e28]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-bd385e28]:hover{background:#f0f5ff}[data-v-bd385e28].ivu-checkbox-wrapper{font-size:16px}[data-v-bd385e28].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-bd385e28]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-bd385e28].ivu-checkbox-checked:focus{box-shadow:none}[data-v-bd385e28].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-bd385e28]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-bd385e28].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-bd385e28].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-bd385e28].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-bd385e28].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-bd385e28].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-bd385e28].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-bd385e28].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-bd385e28].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-bd385e28]{text-align:center}.cancle-button[data-v-bd385e28]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-bd385e28]{background:#f06060}.submit-button[data-v-bd385e28]{background:#2b5fda}.DataGrid-BOX[data-v-bd385e28]{padding:0}.DataGrid-BOX .formbox[data-v-bd385e28]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-bd385e28]{background:#2b5fd9}.ivu-btn-info[data-v-bd385e28]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-bd385e28]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-bd385e28],.DataGrid-BOX .formbox .searchBox[data-v-bd385e28]{display:flex;flex-wrap:wrap}.style2>div[data-v-bd385e28]{width:50%}.style3>div[data-v-bd385e28]{width:33.3%}.style4>div[data-v-bd385e28]{width:25%}.style5>div[data-v-bd385e28]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-bd385e28]{margin-bottom:10px!important}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-bd385e28]{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-bd385e28]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-bd385e28]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-bd385e28]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-bd385e28]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-bd385e28]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-bd385e28]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-bd385e28]{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-bd385e28]{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-bd385e28]{width:100%}.DataGrid-BOX .navleft .La[data-v-bd385e28]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-bd385e28]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-bd385e28]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-bd385e28]{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-bd385e28]{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-bd385e28]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-bd385e28]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-bd385e28]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-bd385e28]{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-bd385e28],.DataGrid-BOX .common_optation .select[data-v-bd385e28]{max-width:300px}.DataGrid-BOX .page-btn[data-v-bd385e28],.DataGrid-BOX .page-Data[data-v-bd385e28],.DataGrid-BOX .page-set[data-v-bd385e28]{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-bd385e28]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-bd385e28]{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-bd385e28]{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-bd385e28]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-bd385e28]{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-bd385e28]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-bd385e28]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-bd385e28]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-bd385e28]{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-bd385e28]{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-bd385e28]{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-bd385e28].ivu-table-row-highlight td,[data-v-bd385e28].ivu-table-row-hover td,[data-v-bd385e28].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-bd385e28],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-bd385e28]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-bd385e28]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-bd385e28]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-bd385e28]:hover,[data-v-bd385e28].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-bd385e28]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-bd385e28]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-bd385e28]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-bd385e28],.DataGrid-BOX/deep/.ivu-table-border th[data-v-bd385e28]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-bd385e28],.DataGrid-BOX/deep/.ivu-table th[data-v-bd385e28]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-bd385e28]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-bd385e28]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-bd385e28]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-bd385e28]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-bd385e28]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-bd385e28]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-bd385e28],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-bd385e28]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-bd385e28]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-bd385e28]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-bd385e28]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-bd385e28]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-bd385e28],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-bd385e28],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-bd385e28]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-bd385e28]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-bd385e28],.DataGrid-BOX/deep/.el-input[data-v-bd385e28]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-bd385e28]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-bd385e28]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-bd385e28]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-bd385e28]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-bd385e28]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-bd385e28]::-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-bd385e28]::-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-bd385e28]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-bd385e28]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-bd385e28],.ivu-btn-info[disabled][data-v-bd385e28],.ivu-btn-primary.disabled[data-v-bd385e28],.ivu-btn-primary[disabled][data-v-bd385e28]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-bd385e28],.timeTextzhi[data-v-bd385e28]{display:flex;justify-content:center}.timeTextzhi[data-v-bd385e28]{align-items:center}.data-grid-bsp[data-v-bd385e28]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-bd385e28],.data-grid-bsp/deep/div[data-v-bd385e28]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-bd385e28]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-bd385e28]{margin-left:-4px!important}.search-content-select[data-v-bd385e28]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-bd385e28]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-bd385e28]{display:flex;flex-wrap:wrap}.select-content[data-v-bd385e28]{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-bd385e28]{font-style:normal}.select-content/deep/.sp-base[data-v-bd385e28],.select-content/deep/.sp-selected-tag[data-v-bd385e28]{background:transparent!important;border:none!important;color:#fff!important}.select-content/deep/.sp-button[data-v-bd385e28]{display:none!important}.textOverflowBsp[data-v-bd385e28]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
|
|
4305
4379
|
|
|
4306
4380
|
// exports
|
|
4307
4381
|
|
|
@@ -4432,12 +4506,25 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4432
4506
|
if (this.scrollContainer) {
|
|
4433
4507
|
this.scrollContainer.removeEventListener("scroll", this.handleTableScroll);
|
|
4434
4508
|
}
|
|
4509
|
+
// 移除窗口缩放监听
|
|
4510
|
+
if (this._onGridResize) {
|
|
4511
|
+
window.removeEventListener('resize', this._onGridResize);
|
|
4512
|
+
}
|
|
4435
4513
|
},
|
|
4436
4514
|
mounted: function mounted() {
|
|
4515
|
+
var _this = this;
|
|
4516
|
+
|
|
4437
4517
|
this.initId();
|
|
4438
4518
|
this.init_grid();
|
|
4439
4519
|
// 2. 初始化:获取Table滚动容器 + 绑定滚动事件
|
|
4440
4520
|
// this.initScrollContainer();
|
|
4521
|
+
|
|
4522
|
+
// 未配置高度时列表自适应:初始计算 + 监听窗口缩放
|
|
4523
|
+
this.calcAutoGridHeight();
|
|
4524
|
+
this._onGridResize = function () {
|
|
4525
|
+
return _this.calcAutoGridHeight();
|
|
4526
|
+
};
|
|
4527
|
+
window.addEventListener('resize', this._onGridResize);
|
|
4441
4528
|
},
|
|
4442
4529
|
|
|
4443
4530
|
watch: {
|
|
@@ -4458,8 +4545,9 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4458
4545
|
}
|
|
4459
4546
|
},
|
|
4460
4547
|
methods: {
|
|
4548
|
+
customSearch: function customSearch() {},
|
|
4461
4549
|
closeItem: function closeItem(order, index, item) {
|
|
4462
|
-
var
|
|
4550
|
+
var _this2 = this;
|
|
4463
4551
|
|
|
4464
4552
|
// console.log(order, index, item,'(order, index, item)',this.queryFields,',condi')
|
|
4465
4553
|
|
|
@@ -4470,7 +4558,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4470
4558
|
if (ele && ele.length > 0) {
|
|
4471
4559
|
ele.forEach(function (eleChild, eleChildIndex) {
|
|
4472
4560
|
if (item.field == eleChild.field) {
|
|
4473
|
-
|
|
4561
|
+
_this2.$set(_this2.queryFields[eleIndex][eleChildIndex], 'searchValue', '');
|
|
4474
4562
|
}
|
|
4475
4563
|
});
|
|
4476
4564
|
}
|
|
@@ -4482,15 +4570,15 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4482
4570
|
}
|
|
4483
4571
|
},
|
|
4484
4572
|
closeAll: function closeAll() {
|
|
4485
|
-
var
|
|
4573
|
+
var _this3 = this;
|
|
4486
4574
|
|
|
4487
4575
|
this.complexQueryConfig.forEach(function (ele) {
|
|
4488
4576
|
ele.fields.forEach(function (item) {
|
|
4489
4577
|
if (item.searchValue) {
|
|
4490
|
-
|
|
4578
|
+
_this3.$set(item, 'searchValue', '');
|
|
4491
4579
|
} else if (item.opName == 'between') {
|
|
4492
|
-
|
|
4493
|
-
|
|
4580
|
+
_this3.$set(item, 'start', '');
|
|
4581
|
+
_this3.$set(item, 'end', '');
|
|
4494
4582
|
}
|
|
4495
4583
|
});
|
|
4496
4584
|
});
|
|
@@ -4498,7 +4586,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4498
4586
|
this.queryFields.forEach(function (ele, eleIndex) {
|
|
4499
4587
|
if (ele && ele.length > 0) {
|
|
4500
4588
|
ele.forEach(function (eleChild, eleChildIndex) {
|
|
4501
|
-
|
|
4589
|
+
_this3.$set(_this3.queryFields[eleIndex][eleChildIndex], 'searchValue', '');
|
|
4502
4590
|
});
|
|
4503
4591
|
}
|
|
4504
4592
|
});
|
|
@@ -4558,7 +4646,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4558
4646
|
}
|
|
4559
4647
|
},
|
|
4560
4648
|
getZhcxArr: function getZhcxArr(data) {
|
|
4561
|
-
var
|
|
4649
|
+
var _this4 = this;
|
|
4562
4650
|
|
|
4563
4651
|
this.queryFieldsZH = [];
|
|
4564
4652
|
if (data.length > 0 && this.complexQueryConfig.length > 0) {
|
|
@@ -4568,19 +4656,19 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4568
4656
|
data.forEach(function (eleItem) {
|
|
4569
4657
|
if (ele.field == eleItem.name && ele.isDefault) {
|
|
4570
4658
|
ele = Object.assign(ele, eleItem);
|
|
4571
|
-
|
|
4659
|
+
_this4.queryFieldsZH.push(ele);
|
|
4572
4660
|
}
|
|
4573
4661
|
});
|
|
4574
4662
|
});
|
|
4575
4663
|
}
|
|
4576
4664
|
});
|
|
4577
4665
|
this.$nextTick(function () {
|
|
4578
|
-
|
|
4666
|
+
_this4.build_query_fields(_this4.queryFieldsZH);
|
|
4579
4667
|
});
|
|
4580
4668
|
}
|
|
4581
4669
|
},
|
|
4582
4670
|
init: function init(resp) {
|
|
4583
|
-
var
|
|
4671
|
+
var _this5 = this;
|
|
4584
4672
|
|
|
4585
4673
|
this.returnParams = resp;
|
|
4586
4674
|
this.comModel = resp.comModel;
|
|
@@ -4638,10 +4726,10 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4638
4726
|
// 添加可配置默认标签配置判断
|
|
4639
4727
|
if (this.params && this.params.isDefaultTitle && resp.quickFilter && resp.quickFilter.length > 0) {
|
|
4640
4728
|
resp.quickFilter.forEach(function (item) {
|
|
4641
|
-
if (item.label ==
|
|
4642
|
-
|
|
4729
|
+
if (item.label == _this5.params.isDefaultTitle) {
|
|
4730
|
+
_this5.$set(item, 'isDefault', '1');
|
|
4643
4731
|
} else {
|
|
4644
|
-
|
|
4732
|
+
_this5.$set(item, 'isDefault', '0');
|
|
4645
4733
|
}
|
|
4646
4734
|
});
|
|
4647
4735
|
}
|
|
@@ -4663,12 +4751,14 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4663
4751
|
erd.listenTo(document.getElementById(this.dataGridId), function (element) {
|
|
4664
4752
|
that.$nextTick(function () {
|
|
4665
4753
|
that.dataGridWidth = element.offsetWidth;
|
|
4754
|
+
// 布局变化时重新计算自适应高度
|
|
4755
|
+
that.calcAutoGridHeight();
|
|
4666
4756
|
});
|
|
4667
4757
|
});
|
|
4668
4758
|
}
|
|
4669
4759
|
},
|
|
4670
4760
|
init_grid_config: function init_grid_config(mark) {
|
|
4671
|
-
var
|
|
4761
|
+
var _this6 = this;
|
|
4672
4762
|
|
|
4673
4763
|
var params = {
|
|
4674
4764
|
mark: mark
|
|
@@ -4680,15 +4770,15 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4680
4770
|
url: '/bsp-com/com/datagrid/viewGrid',
|
|
4681
4771
|
params: params
|
|
4682
4772
|
}).then(function (resp) {
|
|
4683
|
-
|
|
4773
|
+
_this6.dataGridLoad = true;
|
|
4684
4774
|
if (resp.success) {
|
|
4685
|
-
|
|
4686
|
-
|
|
4775
|
+
_this6.dbType = resp.dbType;
|
|
4776
|
+
_this6.init(resp);
|
|
4687
4777
|
}
|
|
4688
4778
|
});
|
|
4689
4779
|
},
|
|
4690
4780
|
init_func_config: function init_func_config(mark) {
|
|
4691
|
-
var
|
|
4781
|
+
var _this7 = this;
|
|
4692
4782
|
|
|
4693
4783
|
var params = {
|
|
4694
4784
|
mark: mark
|
|
@@ -4701,9 +4791,9 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4701
4791
|
params: params
|
|
4702
4792
|
}).then(function (resp) {
|
|
4703
4793
|
if (resp.success) {
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4794
|
+
_this7.errorMsg = '';
|
|
4795
|
+
_this7.dataGridLoad = true;
|
|
4796
|
+
_this7.exportMaxCount = resp.exportMaxCount;
|
|
4707
4797
|
var headOper = [];
|
|
4708
4798
|
var headOperBatch = [];
|
|
4709
4799
|
var rowOper = [];
|
|
@@ -4727,7 +4817,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4727
4817
|
}
|
|
4728
4818
|
} else if (item.dispPos === '2') {
|
|
4729
4819
|
// 行操作
|
|
4730
|
-
|
|
4820
|
+
_this7.hasRowOper = true;
|
|
4731
4821
|
if (item.batch) {
|
|
4732
4822
|
rowOperBatch.push(item);
|
|
4733
4823
|
} else {
|
|
@@ -4737,22 +4827,22 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4737
4827
|
});
|
|
4738
4828
|
}
|
|
4739
4829
|
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4830
|
+
_this7.funcAuth = funcMark;
|
|
4831
|
+
_this7.headOper = headOper;
|
|
4832
|
+
_this7.headOperBatch = headOperBatch;
|
|
4833
|
+
_this7.rowOper = rowOper;
|
|
4834
|
+
_this7.rowOperBatch = rowOperBatch;
|
|
4835
|
+
_this7.dbType = resp.dbType;
|
|
4836
|
+
_this7.init(resp);
|
|
4747
4837
|
} else {
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4838
|
+
_this7.loading = false;
|
|
4839
|
+
_this7.dataGridLoad = false;
|
|
4840
|
+
_this7.errorMsg = resp.msg;
|
|
4751
4841
|
}
|
|
4752
4842
|
});
|
|
4753
4843
|
},
|
|
4754
4844
|
getCustomFields: function getCustomFields(mark) {
|
|
4755
|
-
var
|
|
4845
|
+
var _this8 = this;
|
|
4756
4846
|
|
|
4757
4847
|
if (this.loading || this.showModal) {
|
|
4758
4848
|
return;
|
|
@@ -4765,7 +4855,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4765
4855
|
url: '/bsp-com/com/datagrid/getCustomShowFields',
|
|
4766
4856
|
params: params
|
|
4767
4857
|
}).then(function (resp) {
|
|
4768
|
-
|
|
4858
|
+
_this8.loading = false;
|
|
4769
4859
|
if (resp.success) {
|
|
4770
4860
|
var datas = resp.data;
|
|
4771
4861
|
var fieldList = [];
|
|
@@ -4781,10 +4871,10 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4781
4871
|
require: item.require
|
|
4782
4872
|
});
|
|
4783
4873
|
});
|
|
4784
|
-
|
|
4785
|
-
|
|
4874
|
+
_this8.customShowList = fieldList;
|
|
4875
|
+
_this8.showModal = true;
|
|
4786
4876
|
} else {
|
|
4787
|
-
|
|
4877
|
+
_this8.$Modal.warning({
|
|
4788
4878
|
title: '温馨提示',
|
|
4789
4879
|
content: resp.msg
|
|
4790
4880
|
});
|
|
@@ -4795,7 +4885,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4795
4885
|
this.showModal = false;
|
|
4796
4886
|
},
|
|
4797
4887
|
handleSet: function handleSet() {
|
|
4798
|
-
var
|
|
4888
|
+
var _this9 = this;
|
|
4799
4889
|
|
|
4800
4890
|
this.$Modal.confirm({
|
|
4801
4891
|
title: '温馨提示',
|
|
@@ -4803,13 +4893,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4803
4893
|
loading: true,
|
|
4804
4894
|
okText: '确定',
|
|
4805
4895
|
onOk: function onOk() {
|
|
4806
|
-
|
|
4896
|
+
_this9.saveCustomReset();
|
|
4807
4897
|
}
|
|
4808
4898
|
});
|
|
4809
4899
|
// resetShowFields
|
|
4810
4900
|
},
|
|
4811
4901
|
handleSubmit: function handleSubmit() {
|
|
4812
|
-
var
|
|
4902
|
+
var _this10 = this;
|
|
4813
4903
|
|
|
4814
4904
|
var arr = [];
|
|
4815
4905
|
this.customShowList.forEach(function (item, index) {
|
|
@@ -4828,13 +4918,13 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4828
4918
|
params: params
|
|
4829
4919
|
}).then(function (resp) {
|
|
4830
4920
|
if (resp.success) {
|
|
4831
|
-
|
|
4832
|
-
|
|
4921
|
+
_this10.showModal = false;
|
|
4922
|
+
_this10.init_grid();
|
|
4833
4923
|
} else {}
|
|
4834
4924
|
});
|
|
4835
4925
|
},
|
|
4836
4926
|
saveCustomReset: function saveCustomReset() {
|
|
4837
|
-
var
|
|
4927
|
+
var _this11 = this;
|
|
4838
4928
|
|
|
4839
4929
|
var params = {
|
|
4840
4930
|
mark: this.dataGridId
|
|
@@ -4843,9 +4933,9 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4843
4933
|
url: '/bsp-com/com/datagrid/resetShowFields',
|
|
4844
4934
|
params: params
|
|
4845
4935
|
}).then(function (resp) {
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
4936
|
+
_this11.showModal = false;
|
|
4937
|
+
_this11.init_grid();
|
|
4938
|
+
_this11.$Modal.remove();
|
|
4849
4939
|
});
|
|
4850
4940
|
},
|
|
4851
4941
|
multi_col_sort: function multi_col_sort() {
|
|
@@ -5193,6 +5283,58 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
5193
5283
|
})]);
|
|
5194
5284
|
}
|
|
5195
5285
|
},
|
|
5286
|
+
multi_col_change_vxe: function multi_col_change_vxe(index) {
|
|
5287
|
+
this.column[index].show = !this.column[index].show;
|
|
5288
|
+
var _that = this;
|
|
5289
|
+
var dataGridColumns = [];
|
|
5290
|
+
// 排序
|
|
5291
|
+
// if (_that.comModelProps.showRownumbers) {
|
|
5292
|
+
// _that.dataGridColumns.push(_that.index_column())
|
|
5293
|
+
// dataGridColumns.push(_that.index_column())
|
|
5294
|
+
// }
|
|
5295
|
+
// // 复选框
|
|
5296
|
+
// if (this.comModelProps.showCheckbox) {
|
|
5297
|
+
// _that.dataGridColumns.push(this.checkbox_colimn())
|
|
5298
|
+
// dataGridColumns.push(_that.checkbox_colimn())
|
|
5299
|
+
// }
|
|
5300
|
+
var wid = _that.dataGridWidth - _that.usedWidth;
|
|
5301
|
+
_that.column.forEach(function (item) {
|
|
5302
|
+
if (item.show) {
|
|
5303
|
+
if (item.swidth) {
|
|
5304
|
+
var width = _that.cal_col_width(wid, item.swidth);
|
|
5305
|
+
_that.$set(item, 'width', width);
|
|
5306
|
+
}
|
|
5307
|
+
|
|
5308
|
+
dataGridColumns.push(item);
|
|
5309
|
+
}
|
|
5310
|
+
});
|
|
5311
|
+
if (this.showOper && this.hasRowOper) {
|
|
5312
|
+
var operObj = {
|
|
5313
|
+
title: '操作',
|
|
5314
|
+
slot: 'action',
|
|
5315
|
+
align: 'center'
|
|
5316
|
+
};
|
|
5317
|
+
if (this.comModelProps.isFixed) {
|
|
5318
|
+
operObj.fixed = 'right';
|
|
5319
|
+
}
|
|
5320
|
+
if (this.is_real_num(this.comModelProps.operColumnWidth)) {
|
|
5321
|
+
operObj.width = this.comModelProps.operColumnWidth;
|
|
5322
|
+
}
|
|
5323
|
+
// dataGridColumns.push(operObj)
|
|
5324
|
+
// this.usedWidth += this.comModelProps.operColumnWidth
|
|
5325
|
+
//alert(this.usedWidth)
|
|
5326
|
+
}
|
|
5327
|
+
_that.dataGridColumns = dataGridColumns;
|
|
5328
|
+
if (_that.slotColumn.length > 0) {
|
|
5329
|
+
_that.slotColumn.forEach(function (item) {
|
|
5330
|
+
_that.dataGridColumns.forEach(function (col) {
|
|
5331
|
+
if (col.key == item.key) {
|
|
5332
|
+
Object.assign(col, item);
|
|
5333
|
+
}
|
|
5334
|
+
});
|
|
5335
|
+
}).push(_that.slotColumn);
|
|
5336
|
+
}
|
|
5337
|
+
},
|
|
5196
5338
|
multi_col_change: function multi_col_change(index) {
|
|
5197
5339
|
this.column[index].show = !this.column[index].show;
|
|
5198
5340
|
var _that = this;
|
|
@@ -6071,11 +6213,13 @@ runtime.o = o;
|
|
|
6071
6213
|
},
|
|
6072
6214
|
headExportOper: function headExportOper() {
|
|
6073
6215
|
this.gridExportOptStatus = true;
|
|
6074
|
-
|
|
6216
|
+
// 高级查询(searchType === '03')需传入Tag,使condis携带高级查询条件
|
|
6217
|
+
this.gridExportDataRequestParams = this.getGridRequestParams(this.searchType === '03' ? true : undefined);
|
|
6075
6218
|
},
|
|
6076
6219
|
headPrintOper: function headPrintOper() {
|
|
6077
6220
|
this.gridPrintOptStatus = true;
|
|
6078
|
-
|
|
6221
|
+
// 高级查询(searchType === '03')需传入Tag,使condis携带高级查询条件
|
|
6222
|
+
this.gridPrintDataRequestParams = this.getGridRequestParams(this.searchType === '03' ? true : undefined);
|
|
6079
6223
|
},
|
|
6080
6224
|
|
|
6081
6225
|
// 导出数据下载
|
|
@@ -6105,9 +6249,9 @@ runtime.o = o;
|
|
|
6105
6249
|
});
|
|
6106
6250
|
}
|
|
6107
6251
|
// this.gridDataRequestParams ={}
|
|
6108
|
-
_this2.gridDataRequestParams = Object.assign(obj, _this2.getGridRequestParams());
|
|
6252
|
+
_this2.gridDataRequestParams = Object.assign(obj, _this2.getGridRequestParams(_this2.searchType === '03' ? true : undefined));
|
|
6109
6253
|
} else {
|
|
6110
|
-
_this2.gridDataRequestParams = _this2.getGridRequestParams();
|
|
6254
|
+
_this2.gridDataRequestParams = _this2.getGridRequestParams(_this2.searchType === '03' ? true : undefined);
|
|
6111
6255
|
}
|
|
6112
6256
|
_this2.gridExportDataStatus = true;
|
|
6113
6257
|
});
|
|
@@ -8114,7 +8258,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
8114
8258
|
"use strict";
|
|
8115
8259
|
/* 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_export_opt_vue__ = __webpack_require__(12);
|
|
8116
8260
|
/* unused harmony namespace reexport */
|
|
8117
|
-
/* harmony import */ var
|
|
8261
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_89878158_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_export_opt_vue__ = __webpack_require__(60);
|
|
8118
8262
|
function injectStyle (ssrContext) {
|
|
8119
8263
|
__webpack_require__(56)
|
|
8120
8264
|
}
|
|
@@ -8129,12 +8273,12 @@ var __vue_template_functional__ = false
|
|
|
8129
8273
|
/* styles */
|
|
8130
8274
|
var __vue_styles__ = injectStyle
|
|
8131
8275
|
/* scopeId */
|
|
8132
|
-
var __vue_scopeId__ = "data-v-
|
|
8276
|
+
var __vue_scopeId__ = "data-v-89878158"
|
|
8133
8277
|
/* moduleIdentifier (server only) */
|
|
8134
8278
|
var __vue_module_identifier__ = null
|
|
8135
8279
|
var Component = normalizeComponent(
|
|
8136
8280
|
__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_export_opt_vue__["a" /* default */],
|
|
8137
|
-
|
|
8281
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_89878158_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_export_opt_vue__["a" /* default */],
|
|
8138
8282
|
__vue_template_functional__,
|
|
8139
8283
|
__vue_styles__,
|
|
8140
8284
|
__vue_scopeId__,
|
|
@@ -8155,7 +8299,7 @@ var content = __webpack_require__(57);
|
|
|
8155
8299
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
8156
8300
|
if(content.locals) module.exports = content.locals;
|
|
8157
8301
|
// add the styles to the DOM
|
|
8158
|
-
var update = __webpack_require__(2)("
|
|
8302
|
+
var update = __webpack_require__(2)("425db63e", content, true);
|
|
8159
8303
|
|
|
8160
8304
|
/***/ }),
|
|
8161
8305
|
/* 57 */
|
|
@@ -8166,7 +8310,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
8166
8310
|
|
|
8167
8311
|
|
|
8168
8312
|
// module
|
|
8169
|
-
exports.push([module.i, "[data-v-
|
|
8313
|
+
exports.push([module.i, "[data-v-89878158].export-modal .ivu-modal-body,[data-v-89878158].export-modal .ivu-modal-header{padding:0!important}[data-v-89878158].ivu-modal-body{max-height:440px;overflow-y:auto}[data-v-89878158].export-modal .ivu-modal-footer{padding:8px 18px}[data-v-89878158].export-modal .ivu-icon-ios-close{font-size:32px;line-height:40px}[data-v-89878158].export-modal .ivu-modal-footer{background:#f7faff;border-color:#cee0f0}.export-modal .model-footer/deep/.ivu-btn-primary[data-v-89878158]{font-size:16px;min-width:80px;height:36px;opacity:1;background:#2b5fd9;border-radius:2px;margin:0 8px}.export-modal .flow-modal-title[data-v-89878158]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}.export-modal .model-footer button[data-v-89878158]{font-size:16px;min-width:80px;height:36px;opacity:1;border-radius:2px;margin:0 8px}[data-v-89878158].ivu-checkbox-group-item{width:160px;font-size:16px}[data-v-89878158].ivu-form-item-content,[data-v-89878158].ivu-form .ivu-form-item-label{font-size:16px}[data-v-89878158].export-modal ::-webkit-scrollbar{width:10px;height:10px}[data-v-89878158].export-modal ::-webkit-scrollbar-thumb{border-radius:3px;background:#b7c7dd}[data-v-89878158].export-modal ::-webkit-scrollbar-track{border-radius:3px;background:#ededed}", ""]);
|
|
8170
8314
|
|
|
8171
8315
|
// exports
|
|
8172
8316
|
|
|
@@ -8582,7 +8726,7 @@ module.exports = function (str, opts) {
|
|
|
8582
8726
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8583
8727
|
|
|
8584
8728
|
"use strict";
|
|
8585
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_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:"form"},[_c('Form',{ref:"exportOptionForm",attrs:{"label-width":150,"model":_vm.exportOption,"rules":_vm.ruleValidate,"label-colon":""}},[_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"文件类型","prop":"fileType"}},[_c('RadioGroup',{attrs:{"size":"large"},model:{value:(_vm.exportOption.fileType),callback:function ($$v) {_vm.$set(_vm.exportOption, "fileType", $$v)},expression:"exportOption.fileType"}},[_c('Radio',{attrs:{"label":"0"}},[_vm._v("Excel文档")]),_vm._v(" \n "),_c('Radio',{attrs:{"label":"1"}},[_vm._v("XML文档")])],1)],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"导出文件名称","prop":"fileName"}},[_c('Input',{attrs:{"maxlength":"50","show-word-limit":""},model:{value:(_vm.exportOption.fileName),callback:function ($$v) {_vm.$set(_vm.exportOption, "fileName", $$v)},expression:"exportOption.fileName"}})],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"选择导出字段","prop":"exportFields"}},[_c('CheckboxGroup',{attrs:{"size":"large"},model:{value:(_vm.exportOption.exportFields),callback:function ($$v) {_vm.$set(_vm.exportOption, "exportFields", $$v)},expression:"exportOption.exportFields"}},_vm._l((_vm.allowExportFields),function(item){return _c('Checkbox',{key:item.name,attrs:{"label":item.name}},[_vm._v(_vm._s(item.description))])}),1)],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',[_c('FormItem',{attrs:{"label":"导出数据页设置","prop":"pageRange"}},[_vm._v("\n 从 \n "),_c('InputNumber',{staticStyle:{"width":"100px"},attrs:{"min":1,"max":_vm.pageCount,"precision":0},model:{value:(_vm.exportOption.pageRange.fromPageNo),callback:function ($$v) {_vm.$set(_vm.exportOption.pageRange, "fromPageNo", $$v)},expression:"exportOption.pageRange.fromPageNo"}}),_vm._v("\n 页 至 \n "),_c('InputNumber',{staticStyle:{"width":"100px"},attrs:{"min":1,"max":_vm.pageCount,"precision":0},model:{value:(_vm.exportOption.pageRange.toPageNo),callback:function ($$v) {_vm.$set(_vm.exportOption.pageRange, "toPageNo", $$v)},expression:"exportOption.pageRange.toPageNo"}}),_vm._v(" 页 ( 共 "+_vm._s(_vm.pageCount)+" 页)\n ")],1)],1)],1)],1)],1),_vm._v(" "),_c('div',{staticClass:"model-footer",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{attrs:{"size":"large"},on:{"click":_vm.closeModal}},[_vm._v("取消")]),_vm._v(" "),_c('Button',{attrs:{"type":"primary","size":"large","loading":_vm.modal_loading},on:{"click":_vm.confirmExport}},[_vm._v("确定")])],1)])],1)}
|
|
8729
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_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:"form"},[_c('Form',{ref:"exportOptionForm",attrs:{"label-width":150,"model":_vm.exportOption,"rules":_vm.ruleValidate,"label-colon":""}},[_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"文件类型","prop":"fileType"}},[_c('RadioGroup',{attrs:{"size":"large"},model:{value:(_vm.exportOption.fileType),callback:function ($$v) {_vm.$set(_vm.exportOption, "fileType", $$v)},expression:"exportOption.fileType"}},[_c('Radio',{attrs:{"label":"0"}},[_vm._v("Excel文档")]),_vm._v(" \n "),_c('Radio',{attrs:{"label":"1"}},[_vm._v("XML文档")])],1)],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"导出文件名称","prop":"fileName"}},[_c('Input',{attrs:{"maxlength":"50","show-word-limit":""},model:{value:(_vm.exportOption.fileName),callback:function ($$v) {_vm.$set(_vm.exportOption, "fileName", $$v)},expression:"exportOption.fileName"}})],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"选择导出字段","prop":"exportFields"}},[_c('Checkbox',{attrs:{"indeterminate":_vm.checkAllIndeterminate,"value":_vm.checkAll,"size":"large"},nativeOn:{"click":function($event){$event.preventDefault();return _vm.handleCheckAll.apply(null, arguments)}}},[_vm._v("全选")]),_vm._v(" "),_c('CheckboxGroup',{attrs:{"size":"large"},on:{"on-change":_vm.handleCheckGroupChange},model:{value:(_vm.exportOption.exportFields),callback:function ($$v) {_vm.$set(_vm.exportOption, "exportFields", $$v)},expression:"exportOption.exportFields"}},_vm._l((_vm.allowExportFields),function(item){return _c('Checkbox',{key:item.name,attrs:{"label":item.name}},[_vm._v(_vm._s(item.description))])}),1)],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',[_c('FormItem',{attrs:{"label":"导出数据页设置","prop":"pageRange"}},[_vm._v("\n 从 \n "),_c('InputNumber',{staticStyle:{"width":"100px"},attrs:{"min":1,"max":_vm.pageCount,"precision":0},model:{value:(_vm.exportOption.pageRange.fromPageNo),callback:function ($$v) {_vm.$set(_vm.exportOption.pageRange, "fromPageNo", $$v)},expression:"exportOption.pageRange.fromPageNo"}}),_vm._v("\n 页 至 \n "),_c('InputNumber',{staticStyle:{"width":"100px"},attrs:{"min":1,"max":_vm.pageCount,"precision":0},model:{value:(_vm.exportOption.pageRange.toPageNo),callback:function ($$v) {_vm.$set(_vm.exportOption.pageRange, "toPageNo", $$v)},expression:"exportOption.pageRange.toPageNo"}}),_vm._v(" 页 ( 共 "+_vm._s(_vm.pageCount)+" 页)\n ")],1)],1)],1)],1)],1),_vm._v(" "),_c('div',{staticClass:"model-footer",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{attrs:{"size":"large"},on:{"click":_vm.closeModal}},[_vm._v("取消")]),_vm._v(" "),_c('Button',{attrs:{"type":"primary","size":"large","loading":_vm.modal_loading},on:{"click":_vm.confirmExport}},[_vm._v("确定")])],1)])],1)}
|
|
8586
8730
|
var staticRenderFns = []
|
|
8587
8731
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
8588
8732
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -20709,7 +20853,7 @@ function n(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function o(){re
|
|
|
20709
20853
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
20710
20854
|
|
|
20711
20855
|
"use strict";
|
|
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){
|
|
20856
|
+
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 + '_' + index,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.gridHeight,"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){
|
|
20713
20857
|
var row = ref.row;
|
|
20714
20858
|
var index = ref.index;
|
|
20715
20859
|
return [_vm._t('slot_' + sc.slot,null,{"row":row,"index":index})]}}}),{key:"action",fn:function(ref){
|