sd-data-grid 1.2.67 → 1.2.68
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 +62 -16
- package/dist/sd-data-grid.js.map +1 -1
- package/package.json +1 -1
package/dist/sd-data-grid.js
CHANGED
|
@@ -584,8 +584,7 @@ function applyToTag (styleElement, obj) {
|
|
|
584
584
|
if (pageNo) {
|
|
585
585
|
this.pageNo = pageNo;
|
|
586
586
|
}
|
|
587
|
-
this.searchType === '03' ? true : Tag;
|
|
588
|
-
var params = this.getGridRequestParams(this.searchType === '03' ? true : Tag);
|
|
587
|
+
var params = this.getGridRequestParams(Tag == 'cx' ? Tag : this.searchType === '03' ? true : Tag);
|
|
589
588
|
this.$emit('returnParams', params);
|
|
590
589
|
this.$store.dispatch('postRequest', {
|
|
591
590
|
url: '/bsp-com/com/datagrid/getQueryPageData',
|
|
@@ -736,9 +735,10 @@ function applyToTag (styleElement, obj) {
|
|
|
736
735
|
build_query_condis: function build_query_condis(Tag) {
|
|
737
736
|
var _this3 = this;
|
|
738
737
|
|
|
738
|
+
console.log(Tag, 'Tag', Tag && Tag != 'cx');
|
|
739
739
|
var queryParams = [];
|
|
740
740
|
var queryFields = [];
|
|
741
|
-
if (Tag) {
|
|
741
|
+
if (Tag && Tag != 'cx') {
|
|
742
742
|
queryFields = this.complexQueryConfig.concat();
|
|
743
743
|
queryFields.forEach(function (item) {
|
|
744
744
|
if (item.fields && item.fields.length > 0) {
|
|
@@ -754,6 +754,25 @@ function applyToTag (styleElement, obj) {
|
|
|
754
754
|
}
|
|
755
755
|
});
|
|
756
756
|
this.$forceUpdate();
|
|
757
|
+
} else if (Tag && Tag == 'cx') {
|
|
758
|
+
var queryFieldsGj = [];
|
|
759
|
+
var queryFieldsDefault = this.complexQueryConfig.concat();
|
|
760
|
+
queryFieldsDefault.forEach(function (item) {
|
|
761
|
+
if (item.fields && item.fields.length > 0) {
|
|
762
|
+
item.fields.forEach(function (ele) {
|
|
763
|
+
_this3.queryFields.forEach(function (filesChild) {
|
|
764
|
+
queryFieldsGj.push(ele);
|
|
765
|
+
filesChild.forEach(function (dd) {
|
|
766
|
+
if (ele.name == dd.name) {
|
|
767
|
+
dd = Object.assign(ele, dd);
|
|
768
|
+
}
|
|
769
|
+
});
|
|
770
|
+
});
|
|
771
|
+
});
|
|
772
|
+
}
|
|
773
|
+
});
|
|
774
|
+
queryFields = this.queryFields.concat([queryFieldsGj]);
|
|
775
|
+
this.$forceUpdate();
|
|
757
776
|
} else {
|
|
758
777
|
queryFields = this.queryFields.concat();
|
|
759
778
|
}
|
|
@@ -786,7 +805,7 @@ function applyToTag (styleElement, obj) {
|
|
|
786
805
|
}
|
|
787
806
|
}
|
|
788
807
|
queryFields.forEach(function (itemChild) {
|
|
789
|
-
var fields = Tag ? itemChild.fields : itemChild;
|
|
808
|
+
var fields = Tag && Tag != 'cx' ? itemChild.fields : itemChild;
|
|
790
809
|
fields.forEach(function (item) {
|
|
791
810
|
if (item.controlTypeName && (item.controlTypeName == "09" || item.controlTypeName == "10")) {
|
|
792
811
|
_that.containSubordinate = item && item.containSubordinate ? item.containSubordinate : "";
|
|
@@ -3695,6 +3714,34 @@ module.exports = bytesToUuid;
|
|
|
3695
3714
|
}
|
|
3696
3715
|
}
|
|
3697
3716
|
},
|
|
3717
|
+
computed: {
|
|
3718
|
+
pickerOptions: function pickerOptions() {
|
|
3719
|
+
var that = this;
|
|
3720
|
+
return function (condi, type) {
|
|
3721
|
+
return {
|
|
3722
|
+
disabledDate: function disabledDate(time) {
|
|
3723
|
+
if (type === 1) {
|
|
3724
|
+
if (condi.end) {
|
|
3725
|
+
var licenseEnd = new Date(condi.end);
|
|
3726
|
+
licenseEnd.setDate(licenseEnd.getDate());
|
|
3727
|
+
return time.getTime() >= licenseEnd;
|
|
3728
|
+
} else {
|
|
3729
|
+
return false;
|
|
3730
|
+
}
|
|
3731
|
+
} else {
|
|
3732
|
+
if (condi.start) {
|
|
3733
|
+
var licenseStart = new Date(condi.start);
|
|
3734
|
+
licenseStart.setDate(licenseStart.getDate() - 1);
|
|
3735
|
+
return time.getTime() <= licenseStart;
|
|
3736
|
+
} else {
|
|
3737
|
+
return false;
|
|
3738
|
+
}
|
|
3739
|
+
}
|
|
3740
|
+
}
|
|
3741
|
+
};
|
|
3742
|
+
};
|
|
3743
|
+
}
|
|
3744
|
+
},
|
|
3698
3745
|
data: function data() {
|
|
3699
3746
|
return {
|
|
3700
3747
|
dayjs: __WEBPACK_IMPORTED_MODULE_0_dayjs___default.a,
|
|
@@ -3772,7 +3819,6 @@ module.exports = bytesToUuid;
|
|
|
3772
3819
|
},
|
|
3773
3820
|
mounted: function mounted() {},
|
|
3774
3821
|
|
|
3775
|
-
computed: {},
|
|
3776
3822
|
methods: {
|
|
3777
3823
|
closeItem: function closeItem(order, index, item) {
|
|
3778
3824
|
if (item.searchValue) {
|
|
@@ -4065,7 +4111,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
|
4065
4111
|
"use strict";
|
|
4066
4112
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__ = __webpack_require__(7);
|
|
4067
4113
|
/* unused harmony namespace reexport */
|
|
4068
|
-
/* harmony import */ var
|
|
4114
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_55dfd85a_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__(84);
|
|
4069
4115
|
function injectStyle (ssrContext) {
|
|
4070
4116
|
__webpack_require__(26)
|
|
4071
4117
|
}
|
|
@@ -4080,12 +4126,12 @@ var __vue_template_functional__ = false
|
|
|
4080
4126
|
/* styles */
|
|
4081
4127
|
var __vue_styles__ = injectStyle
|
|
4082
4128
|
/* scopeId */
|
|
4083
|
-
var __vue_scopeId__ = "data-v-
|
|
4129
|
+
var __vue_scopeId__ = "data-v-55dfd85a"
|
|
4084
4130
|
/* moduleIdentifier (server only) */
|
|
4085
4131
|
var __vue_module_identifier__ = null
|
|
4086
4132
|
var Component = normalizeComponent(
|
|
4087
4133
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__["a" /* default */],
|
|
4088
|
-
|
|
4134
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_55dfd85a_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_data_grid_vue__["a" /* default */],
|
|
4089
4135
|
__vue_template_functional__,
|
|
4090
4136
|
__vue_styles__,
|
|
4091
4137
|
__vue_scopeId__,
|
|
@@ -4106,7 +4152,7 @@ var content = __webpack_require__(27);
|
|
|
4106
4152
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
4107
4153
|
if(content.locals) module.exports = content.locals;
|
|
4108
4154
|
// add the styles to the DOM
|
|
4109
|
-
var update = __webpack_require__(2)("
|
|
4155
|
+
var update = __webpack_require__(2)("51dfa3c8", content, true);
|
|
4110
4156
|
|
|
4111
4157
|
/***/ }),
|
|
4112
4158
|
/* 27 */
|
|
@@ -4117,7 +4163,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
4117
4163
|
|
|
4118
4164
|
|
|
4119
4165
|
// module
|
|
4120
|
-
exports.push([module.i, ".list[data-v-2e08482a]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-2e08482a],.list .list-item[data-v-2e08482a]{text-align:center;width:60px}.ele2[data-v-2e08482a],.list .list-item[data-v-2e08482a]{text-align:left;flex:1}.ele3[data-v-2e08482a],.list .list-item[data-v-2e08482a]{text-align:center;width:80px}.list .list-item[data-v-2e08482a]{width:100%;display:flex;flex-direction:row;padding:0 8px;cursor:move;height:40px;line-height:40px;border-bottom:1px solid #cee0f0;font-size:16px}.list .list-item[data-v-2e08482a]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-2e08482a]:hover{background:#f0f5ff}[data-v-2e08482a].ivu-checkbox-wrapper{font-size:16px}[data-v-2e08482a].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-2e08482a]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-2e08482a].ivu-checkbox-checked:focus{box-shadow:none}[data-v-2e08482a].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-2e08482a]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-2e08482a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-2e08482a].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-2e08482a].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-2e08482a].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-2e08482a]{text-align:center}.cancle-button[data-v-2e08482a]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-2e08482a]{background:#f06060}.submit-button[data-v-2e08482a]{background:#2b5fda}.DataGrid-BOX[data-v-2e08482a]{padding:0}.DataGrid-BOX .formbox[data-v-2e08482a]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-2e08482a]{background:#2b5fd9}.ivu-btn-info[data-v-2e08482a]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-2e08482a]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-2e08482a],.DataGrid-BOX .formbox .searchBox[data-v-2e08482a]{display:flex;flex-wrap:wrap}.style2>div[data-v-2e08482a]{width:50%}.style3>div[data-v-2e08482a]{width:33.3%}.style4>div[data-v-2e08482a]{width:25%}.style5>div[data-v-2e08482a]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-2e08482a]{margin-bottom:10px!important}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-2e08482a]{width:60px;font-size:16px;padding:8px 2px 10px 0;color:#1a2133}.DataGrid-BOX/deep/.formbox-simple.ivu-form .ivu-form-item-label[data-v-2e08482a]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-2e08482a]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-2e08482a]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-2e08482a]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-2e08482a]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-2e08482a]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-2e08482a]{display:inline-block;padding:0 12px;color:#fff;background:#c0c4cc;height:30px;line-height:30px;margin:10px 10px 10px 0;border-radius:2px;cursor:pointer}.DataGrid-BOX .titleNav[data-v-2e08482a]{display:-webkit-box;display:-ms-flexbox;display:flex;justify-content:space-between;margin-top:-10px;line-height:50px;min-height:2px}.DataGrid-BOX .nohale>div[data-v-2e08482a]{width:100%}.DataGrid-BOX .navleft .La[data-v-2e08482a]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-2e08482a]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-2e08482a]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-2e08482a]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.DataGrid-BOX .navright span[data-v-2e08482a]{display:inline-block;height:24px;line-height:16px;margin:8px;border-radius:2px;padding:0 3px;cursor:pointer;position:relative}.DataGrid-BOX .navright span[data-v-2e08482a]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-2e08482a]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-2e08482a]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-2e08482a]{position:absolute;display:inline-block;background:#e5efff;font-style:normal;color:#666;padding:0 10px;height:20px;line-height:20px;top:6px;border-radius:50px;right:-35px}.DataGrid-BOX .common_optation .input[data-v-2e08482a],.DataGrid-BOX .common_optation .select[data-v-2e08482a]{max-width:300px}.DataGrid-BOX .page-btn[data-v-2e08482a],.DataGrid-BOX .page-Data[data-v-2e08482a],.DataGrid-BOX .page-set[data-v-2e08482a]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0 10px 10px;font-size:15px}.DataGrid-BOX .page-Data i[data-v-2e08482a]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-2e08482a]{cursor:pointer;position:relative;padding-left:20px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAOtJREFUOE9jZACDBibtuMiHDIwMMhA+keA/w5Ori5bLMzA0/GNkYPjPpB1/6y+RWrEqu7pQjZlRO+7mY5Jdgm7cf4YnjNrxN/9T4hqYXrhBVxaoEWWeTsItrOrgBvFyMTEcn6aC1zDdxFsM/3G4H8Vr6rJsDGubFbAaZp5xh+Hrj384LcIII28LXobODEkUDf7VDxjuPv2F17VYA7syWpQh2lUQrLF0+nOG7Sc/g9nYwhEWZjhjDaYJV+CiO48kg4aJi0DpamePIoNV1l2iEioVswi1Mi1VihFFNWZGSgq2/wwMT68tXC4HKtgAxxpwt8uJc1IAAAAASUVORK5CYII=\") no-repeat 0}.DataGrid-BOX .custom[data-v-2e08482a]{cursor:pointer;position:relative;padding-left:20px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAATVJREFUOE9jZACDBibtuMiHDIwMMhA+keA/w5Ori5bLMzA0/GNkYPjPpB1/6y+RWrEqu7pQjZlRO+7mY5Jdgm7cf4YnjNrxN/9js8ZOn5uhMFSEIbDmIVh6foUMw6Kd7xn2n/+K1VVYDTo7S4WBnY0Jq4afv/4xGKfdwZDDatCVBWp4g0wn4RadDCoIFWFI8BBkYGFmBNv46/d/BoeCuwz//zMwHJyozMDGChH/8/c/w4Id7xkmrH4DdxmK19C9hO4FfPKD3CCQhx0MuBmmFEiD/Q4Km9jWR2D24mo5BkZIEDFkT3jKcPACanoa5NEPi0trHS6GmSWQgqB46jMGQV5mhpo4cTA/recJw7Er37AkSCIzLTMTA8PffzgSPCjTUqUYUVSDJmEyC7b/DAxPry1cLgcq2AD6t5K3B+tq3QAAAABJRU5ErkJggg==\") no-repeat 0}.DataGrid-BOX .sx[data-v-2e08482a]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-2e08482a]{list-style:none;border:1px solid #0394f9;position:absolute;left:-78px;width:150px;bottom:100%;background:#fff;z-index:1000;height:310px;overflow-y:hidden;-webkit-box-shadow:0 0 5px 0 #bebef3;box-shadow:0 0 5px 0 #bebef3}.DataGrid-BOX .ulnavlist li[data-v-2e08482a]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-2e08482a]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-2e08482a]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-2e08482a]{font-style:normal;display:inline-block;width:18px;height:18px;border:1px solid #2b5fd9;border-radius:4px;margin:8px;vertical-align:middle}.DataGrid-BOX li.active .iconlist[data-v-2e08482a]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABeklEQVQ4ja3U3ytDcRjH8fc5+RXapoxFSrKIe60lSpILUpPQLswF90palJEa7l240FZSygUlN0YUpUm51OQfIIn9yOWmZ2abOrNs53P5/Z7n1fN8zzlfpXPqEcAKbAD9gIH/JQKcA27gqQRoA4KA6Z/QT6QBB9AH2FTAWwSWHTG8ampMvTKgFnBmf6Va1RFLpiDQNVjD7XYrC5Pm4sGpwRrmJ8xUVag4eoz5wfJShZaGMk3M2W9ifjzT1d7Ze37Q527i2NvM+qwFNWt3tNeI21mHoqSwwDtbh29/g/KwtfG7u2G7gdVpS3JtpNuAx1Wfxg4uw2zuv2pOIb9eInthyG7AO2NBTRUHHz7paq9Md3t0HWbZ90IiocVpjHxyE2HFnymwdWQw2fP4c2OaoOTwKsza7u/C07soizvPxOO5MUlJrg05J0VRmBur5eI+luwsH4bWGRYbNXWf6ZWYgHI56pWAgEvAhw6iGEsChuTrkJcLRAuApEZqbUDoC8xYY482/HjCAAAAAElFTkSuQmCC) no-repeat;background-size:100% 100%}.DataGrid-BOX .Total[data-v-2e08482a]{display:inline-block;height:24px;line-height:24px;vertical-align:top;margin:10px 0;padding:0 15px;border-radius:2px;cursor:pointer;font-size:15px}[data-v-2e08482a].ivu-table-row-highlight td,[data-v-2e08482a].ivu-table-row-hover td,[data-v-2e08482a].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-2e08482a],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-2e08482a]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-2e08482a]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-2e08482a]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-2e08482a]:hover,[data-v-2e08482a].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-2e08482a]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-2e08482a]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-2e08482a]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-table-border th[data-v-2e08482a]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-table th[data-v-2e08482a]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-2e08482a]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-2e08482a]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-2e08482a]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-2e08482a]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-2e08482a]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-2e08482a]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-2e08482a]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-2e08482a]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-2e08482a],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-2e08482a]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-2e08482a]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-2e08482a],.DataGrid-BOX/deep/.el-input[data-v-2e08482a]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-2e08482a]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-2e08482a]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-2e08482a]::-webkit-scrollbar-track{border-radius:10px;background:#ededed}.DataGrid-BOX/deep/.ivu-table-overflowY::-webkit-scrollbar-thumb:hover .DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}.DataGrid-BOX/deep/.ivu-table-overflowY::-webkit-scrollbar-button .DataGrid-BOX/deep/.ivu-table-overflowX[data-v-2e08482a]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-2e08482a]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-2e08482a],.ivu-btn-info[disabled][data-v-2e08482a],.ivu-btn-primary.disabled[data-v-2e08482a],.ivu-btn-primary[disabled][data-v-2e08482a]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-2e08482a],.timeTextzhi[data-v-2e08482a]{display:flex;justify-content:center}.timeTextzhi[data-v-2e08482a]{align-items:center}.data-grid-bsp[data-v-2e08482a]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-2e08482a],.data-grid-bsp/deep/div[data-v-2e08482a]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-2e08482a]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-2e08482a]{margin-left:-4px!important}.search-content-select[data-v-2e08482a]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-2e08482a]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-2e08482a]{display:flex;flex-wrap:wrap}.select-content[data-v-2e08482a]{background:linear-gradient(90deg,#115fc6,#56bbff);color:#fff;padding:6px 10px;margin-right:10px;margin-bottom:10px;border-radius:6px;cursor:pointer;height:42px}.select-content i[data-v-2e08482a]{font-style:normal}.select-content/deep/.sp-base[data-v-2e08482a],.select-content/deep/.sp-selected-tag[data-v-2e08482a]{background:transparent!important;border:none!important;color:#fff!important}.select-content/deep/.sp-button[data-v-2e08482a]{display:none!important}.textOverflowBsp[data-v-2e08482a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
|
|
4166
|
+
exports.push([module.i, ".list[data-v-55dfd85a]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-55dfd85a],.list .list-item[data-v-55dfd85a]{text-align:center;width:60px}.ele2[data-v-55dfd85a],.list .list-item[data-v-55dfd85a]{text-align:left;flex:1}.ele3[data-v-55dfd85a],.list .list-item[data-v-55dfd85a]{text-align:center;width:80px}.list .list-item[data-v-55dfd85a]{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-55dfd85a]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-55dfd85a]:hover{background:#f0f5ff}[data-v-55dfd85a].ivu-checkbox-wrapper{font-size:16px}[data-v-55dfd85a].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-55dfd85a]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-55dfd85a].ivu-checkbox-checked:focus{box-shadow:none}[data-v-55dfd85a].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-55dfd85a]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-55dfd85a].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-55dfd85a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-55dfd85a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-55dfd85a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-55dfd85a].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-55dfd85a].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-55dfd85a].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-55dfd85a].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-55dfd85a]{text-align:center}.cancle-button[data-v-55dfd85a]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-55dfd85a]{background:#f06060}.submit-button[data-v-55dfd85a]{background:#2b5fda}.DataGrid-BOX[data-v-55dfd85a]{padding:0}.DataGrid-BOX .formbox[data-v-55dfd85a]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-55dfd85a]{background:#2b5fd9}.ivu-btn-info[data-v-55dfd85a]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-55dfd85a]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-55dfd85a],.DataGrid-BOX .formbox .searchBox[data-v-55dfd85a]{display:flex;flex-wrap:wrap}.style2>div[data-v-55dfd85a]{width:50%}.style3>div[data-v-55dfd85a]{width:33.3%}.style4>div[data-v-55dfd85a]{width:25%}.style5>div[data-v-55dfd85a]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-55dfd85a]{margin-bottom:10px!important}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-55dfd85a]{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-55dfd85a]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-55dfd85a]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-55dfd85a]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-55dfd85a]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-55dfd85a]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-55dfd85a]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-55dfd85a]{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-55dfd85a]{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-55dfd85a]{width:100%}.DataGrid-BOX .navleft .La[data-v-55dfd85a]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-55dfd85a]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-55dfd85a]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-55dfd85a]{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-55dfd85a]{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-55dfd85a]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-55dfd85a]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-55dfd85a]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-55dfd85a]{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-55dfd85a],.DataGrid-BOX .common_optation .select[data-v-55dfd85a]{max-width:300px}.DataGrid-BOX .page-btn[data-v-55dfd85a],.DataGrid-BOX .page-Data[data-v-55dfd85a],.DataGrid-BOX .page-set[data-v-55dfd85a]{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-55dfd85a]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-55dfd85a]{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-55dfd85a]{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-55dfd85a]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-55dfd85a]{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-55dfd85a]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-55dfd85a]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-55dfd85a]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-55dfd85a]{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-55dfd85a]{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-55dfd85a]{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-55dfd85a].ivu-table-row-highlight td,[data-v-55dfd85a].ivu-table-row-hover td,[data-v-55dfd85a].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-55dfd85a],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-55dfd85a]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-55dfd85a]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-55dfd85a]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-55dfd85a]:hover,[data-v-55dfd85a].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-55dfd85a]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-55dfd85a]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-55dfd85a]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-55dfd85a],.DataGrid-BOX/deep/.ivu-table-border th[data-v-55dfd85a]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-55dfd85a],.DataGrid-BOX/deep/.ivu-table th[data-v-55dfd85a]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-55dfd85a]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-55dfd85a]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-55dfd85a]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-55dfd85a]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-55dfd85a]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-55dfd85a]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-55dfd85a],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-55dfd85a]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-55dfd85a]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-55dfd85a]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-55dfd85a]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-55dfd85a]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-55dfd85a],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-55dfd85a],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-55dfd85a]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-55dfd85a]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-55dfd85a],.DataGrid-BOX/deep/.el-input[data-v-55dfd85a]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-55dfd85a]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-55dfd85a]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-55dfd85a]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-55dfd85a]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-55dfd85a]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-55dfd85a]::-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-55dfd85a]::-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-55dfd85a]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-55dfd85a]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-55dfd85a],.ivu-btn-info[disabled][data-v-55dfd85a],.ivu-btn-primary.disabled[data-v-55dfd85a],.ivu-btn-primary[disabled][data-v-55dfd85a]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-55dfd85a],.timeTextzhi[data-v-55dfd85a]{display:flex;justify-content:center}.timeTextzhi[data-v-55dfd85a]{align-items:center}.data-grid-bsp[data-v-55dfd85a]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-55dfd85a],.data-grid-bsp/deep/div[data-v-55dfd85a]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-55dfd85a]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-55dfd85a]{margin-left:-4px!important}.search-content-select[data-v-55dfd85a]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-55dfd85a]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-55dfd85a]{display:flex;flex-wrap:wrap}.select-content[data-v-55dfd85a]{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-55dfd85a]{font-style:normal}.select-content/deep/.sp-base[data-v-55dfd85a],.select-content/deep/.sp-selected-tag[data-v-55dfd85a]{background:transparent!important;border:none!important;color:#fff!important}.select-content/deep/.sp-button[data-v-55dfd85a]{display:none!important}.textOverflowBsp[data-v-55dfd85a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
|
|
4121
4167
|
|
|
4122
4168
|
// exports
|
|
4123
4169
|
|
|
@@ -20354,7 +20400,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
20354
20400
|
"use strict";
|
|
20355
20401
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__ = __webpack_require__(19);
|
|
20356
20402
|
/* unused harmony namespace reexport */
|
|
20357
|
-
/* harmony import */ var
|
|
20403
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_330b5d38_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__ = __webpack_require__(83);
|
|
20358
20404
|
function injectStyle (ssrContext) {
|
|
20359
20405
|
__webpack_require__(79)
|
|
20360
20406
|
}
|
|
@@ -20369,12 +20415,12 @@ var __vue_template_functional__ = false
|
|
|
20369
20415
|
/* styles */
|
|
20370
20416
|
var __vue_styles__ = injectStyle
|
|
20371
20417
|
/* scopeId */
|
|
20372
|
-
var __vue_scopeId__ = "data-v-
|
|
20418
|
+
var __vue_scopeId__ = "data-v-330b5d38"
|
|
20373
20419
|
/* moduleIdentifier (server only) */
|
|
20374
20420
|
var __vue_module_identifier__ = null
|
|
20375
20421
|
var Component = normalizeComponent(
|
|
20376
20422
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__["a" /* default */],
|
|
20377
|
-
|
|
20423
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_330b5d38_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_more_search_vue__["a" /* default */],
|
|
20378
20424
|
__vue_template_functional__,
|
|
20379
20425
|
__vue_styles__,
|
|
20380
20426
|
__vue_scopeId__,
|
|
@@ -20395,7 +20441,7 @@ var content = __webpack_require__(80);
|
|
|
20395
20441
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
20396
20442
|
if(content.locals) module.exports = content.locals;
|
|
20397
20443
|
// add the styles to the DOM
|
|
20398
|
-
var update = __webpack_require__(2)("
|
|
20444
|
+
var update = __webpack_require__(2)("50ccdaf2", content, true);
|
|
20399
20445
|
|
|
20400
20446
|
/***/ }),
|
|
20401
20447
|
/* 80 */
|
|
@@ -20406,7 +20452,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
20406
20452
|
|
|
20407
20453
|
|
|
20408
20454
|
// module
|
|
20409
|
-
exports.push([module.i, ".search-content-select[data-v-
|
|
20455
|
+
exports.push([module.i, ".search-content-select[data-v-330b5d38]{display:flex;align-items:center;justify-content:space-between}.search-content-select-main[data-v-330b5d38]{display:flex;align-items:center;flex-wrap:wrap}.searchBox.style4[data-v-330b5d38]{display:flex;flex-wrap:wrap}.select-content[data-v-330b5d38]{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-330b5d38]{font-style:normal}.select-content/deep/.sp-base[data-v-330b5d38],.select-content/deep/.sp-selected-tag[data-v-330b5d38]{background:transparent!important;border:none!important;color:#fff!important;background-color:transparent!important}.select-content div.v-selectpage div.sp-input-container div.sp-inputs span.sp-selected-tag[data-v-330b5d38]{background-color:transparent!important}.select-content/deep/.sp-button[data-v-330b5d38]{display:none!important}.textOverflowBsp[data-v-330b5d38]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.ivu-form-item[data-v-330b5d38]{margin-bottom:10px!important}", ""]);
|
|
20410
20456
|
|
|
20411
20457
|
// exports
|
|
20412
20458
|
|
|
@@ -20446,7 +20492,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
20446
20492
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
20447
20493
|
|
|
20448
20494
|
"use strict";
|
|
20449
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:"DataGrid-BOX"},[(_vm.displayQuery && _vm.searchShow && _vm.searchType === '02')?_c('Form',{staticClass:"formbox-simple",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_c('div',{staticClass:"searchBox steylehang",staticStyle:{"float":"left"}},[_vm._l((_vm.queryFields[0]),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),_vm._v(" "),_c('div',{staticClass:"btnBox"},[_c('Button',{staticClass:"button btn1",attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")])],1)],2)]):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '01')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '31%' })},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '13' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-checkbox',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '12' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-radio',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,staticStyle:{"width":"100%"},attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn2",attrs:{"type":"primary"},on:{"click":_vm.resetSearch}},[_vm._v("高级查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('div',{staticClass:"search-content"},[_c('p',{staticClass:"search-content-select"},[_c('span',[_vm._v("已筛选条件:")]),_c('Button',{attrs:{"type":"error"},on:{"click":_vm.closeAll}},[_vm._v("清空")])],1),_vm._v(" "),_c('div',{staticClass:"search-content-select-main"},[_vm._l((_vm.complexQueryConfig),function(ele,order){return _vm._l((ele.fields),function(item,index){return (item.searchValue || (item.opName == 'between' && (item.start || item.end)))?_c('p',{staticClass:"select-content",staticStyle:{"display":"flex","align-items":"center","font-size":"14px !important"},attrs:{"closable":""}},[_c('span',{staticClass:"textOverflowBsp",staticStyle:{"min-width":"80px","display":"inline-block","font-size":"14px"},attrs:{"title":item.label}},[_vm._v(_vm._s(item.label)+":"),(item.searchValue && !item.dicInfo)?_c('i',{staticStyle:{"font-size":"16px"}},[_vm._v(_vm._s(item.searchValue))]):_vm._e(),_vm._v(" "),(item.start)?_c('i',[_vm._v(" "+_vm._s(_vm.dayjs(item.start).format('YYYY-MM-DD HH:mm:ss'))+"-")]):_vm._e(),(item.end)?_c('i',[_vm._v(_vm._s(_vm.dayjs(item.end).format('YYYY-MM-DD HH:mm:ss')))]):_vm._e()]),_vm._v(" "),(item.searchValue && item.dicInfo)?_c('s-dicgrid',{attrs:{"disabled":"","multiple":item.isDicMultiple,"dicName":item.dicInfo},model:{value:(item.searchValue),callback:function ($$v) {_vm.$set(item, "searchValue", $$v)},expression:"item.searchValue"}}):_vm._e(),_vm._v("\n "),_c('Icon',{attrs:{"type":"md-close-circle"},on:{"click":function($event){return _vm.closeItem(order, index, item)}}})],1):_vm._e()})})],2)]):_vm._e(),_vm._v(" "),((_vm.quickFilter && _vm.quickFilter.length > 0) || (_vm.headOper && _vm.headOper.length > 0 && _vm.showOper))?_c('div',{class:['titleNav', _vm.quickFilter && _vm.quickFilter.length > 0 ? 'hale' : 'nohale']},[_c('div',{staticClass:"navleft"},[(_vm.customFunc && _vm.showOper)?_c('div',[_vm._t("customHeadFunc",null,{"func":_vm.funcAuth}),_vm._v(" "),_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORTKey",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:_vm._e(),_vm._v(" "),(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:_vm._e()]:_vm._e()})],2):_vm._e(),_vm._v(" "),(!_vm.customFunc && _vm.showOper)?[_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-add',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"error"},on:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'ios-trash-outline',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headRefreshOper(1)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-refresh',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORT",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:(oper.operType === 'DATAEXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()}),_vm._v(" "),(_vm.headOperBatch.length > 0)?_c('Dropdown',{attrs:{"placement":"bottom","trigger":"click","transfer":""}},[_c('Button',{staticStyle:{"font-size":"15px","margin-right":"10px","margin-top":"5px"},attrs:{"type":"info"}},[_vm._v(" 操 作"),_c('Icon',{staticStyle:{"margin-left":"2px"},attrs:{"size":"20","type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{staticClass:"data-grid-bsp",staticStyle:{"text-align":"center"},attrs:{"slot":"list"},slot:"list"},[_vm._l((_vm.headOperBatch),function(oper,idx){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headRefreshOper(1)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'EXPORT')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headExportOper()}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()})],2)],1):_vm._e()]:_vm._e()],2),_vm._v(" "),(_vm.quickFilter && _vm.quickFilter.length > 0 && _vm.rightShowTabs)?_c('div',{staticClass:"navright"},[_vm._l((_vm.quickFilter),function(filters,index){return [_c('div',{key:'filter_div' + index,staticClass:"navlist",class:{ After: index > 0 }},_vm._l((filters),function(item,idx){return _c('span',{key:'filter' + item.id,class:{ active: item.isDefault === '1' },attrs:{"match":item.groupMatchValue},on:{"click":function($event){return _vm.change_quick_filter(index, idx, item.label)}}},[_vm._v("\n "+_vm._s(item.label)),(_vm.comModel.groupStat)?[_vm._v("("+_vm._s(item.groupNum ? item.groupNum : 0)+")")]:_vm._e()],2)}),0)]})],2):_vm._e()]):_vm._e(),_vm._v(" "),(_vm.errorMsg === '')?_c('div',{staticStyle:{"width":"100%"},attrs:{"id":_vm.dataGridId}},[_c('Table',{ref:"sdtable",attrs:{"loading":_vm.loading,"tooltip-theme":"light","tooltip-max-width":300,"height":_vm.externalHeight !== null ? _vm.externalHeight : _vm.dataGridHeight ? _vm.dataGridHeight : '85px',"columns":_vm.dataGridColumns,"data":_vm.gridData,"stripe":"","border":""},on:{"on-row-dblclick":_vm.on_row_dblclick,"on-sort-change":_vm.on_sort_change,"on-row-click":_vm.on_row_click,"on-selection-change":_vm.on_batch_select},scopedSlots:_vm._u([_vm._l((_vm.slotColumn),function(sc){return {key:sc.slot,fn:function(ref){
|
|
20495
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:"DataGrid-BOX"},[(_vm.displayQuery && _vm.searchShow && _vm.searchType === '02')?_c('Form',{staticClass:"formbox-simple",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_c('div',{staticClass:"searchBox steylehang",staticStyle:{"float":"left"}},[_vm._l((_vm.queryFields[0]),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width ? condi.width + 'px' : '210px' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"}},[_vm._v(" 至 ")]),_vm._v(" "),_c('Col',[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '150px' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width ? condi.width + 'px' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),_vm._v(" "),_c('div',{staticClass:"btnBox"},[_c('Button',{staticClass:"button btn1",attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")]),_vm._v(" "),_c('Button',{staticClass:"button btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")])],1)],2)]):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '01')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '100%' }),attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1)}}},[_vm._v("查询")])],1)],2):_vm._e(),_vm._v(" "),(_vm.displayQuery && _vm.searchShow && _vm.searchType === '03')?_c('Form',{staticClass:"formbox",attrs:{"label-width":_vm.labelWidth},nativeOn:{"submit":function($event){$event.preventDefault();}}},[_vm._l((_vm.queryFields),function(condis,index){return [_c('div',{key:index,staticClass:"searchBox",class:'style' + _vm.comModelProps.queryLineNums},_vm._l((condis),function(condi,idx){return _c('div',{key:idx,style:({ width: condi.width && condi.width > 1 ? condi.width + '%' : '31%' })},[_c('FormItem',{attrs:{"label":condi.description + ':'}},[(_vm.$scopedSlots[condi.queryId])?_vm._t(condi.queryId,null,{"condi":condi}):[(condi.controlTypeName === '02' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('s-dicgrid',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '02' && condi.dicType === '3')?[_c('Select',{staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"clearable":"","placeholder":"请选择"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}},_vm._l((condi.option),function(item){return _c('Option',{key:item.key,attrs:{"value":item.key}},[_vm._v(_vm._s(item.text))])}),1)]:(condi.controlTypeName === '13' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-checkbox',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '12' && (condi.dicType === '0' || condi.dicType === '1'))?[_c('data-radio',{key:idx,ref:"dicGrid",refInFor:true,staticStyle:{"width":"100%"},attrs:{"multiple":condi.isDicMultiple,"dicName":condi.dicInfo},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '03' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 1),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"开始日期"},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","picker-options":_vm.pickerOptions(condi, 2),"format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"结束日期"},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '03')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM-dd","size":"small","type":"date","placeholder":"选择日期"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '04' && condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"开始时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"结束时间"},on:{"change":function($event){return _vm.compareDateTime(condi, 2)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:(condi.controlTypeName === '04')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":condi.format,"size":"small","type":"datetime","placeholder":"选择时间"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '07')?[_c('el-date-picker',{staticStyle:{"width":"100%"},attrs:{"popper-class":"DataGrid-BOX","format":condi.format,"value-format":"yyyy-MM","size":"small","type":"month","placeholder":"选择月份"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '08')?[_c('sd-area-select-new',{ref:"refCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '09')?[_c('sd-cascader',{ref:"sdCascader",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '10')?[_c('sd-area-tree-select-new',{ref:"refSdTreeSelect",refInFor:true,staticStyle:{"width":"100%"},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.controlTypeName === '11')?[_c('sd-ay-tree-select',{ref:"refSdAyTreeSelect",refInFor:true,staticStyle:{"width":"100%"},attrs:{"ajlx":_vm.params.ajlx ? _vm.params.ajlx : '02'},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]:(condi.opName === 'between')?[_c('Row',[_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入起始值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.start),callback:function ($$v) {_vm.$set(condi, "start", $$v)},expression:"condi.start"}})],1),_vm._v(" "),_c('Col',{staticClass:"timeTextzhi",staticStyle:{"text-align":"center"},attrs:{"span":"2"}},[_vm._v("至")]),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":"输入结束值"},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},model:{value:(condi.end),callback:function ($$v) {_vm.$set(condi, "end", $$v)},expression:"condi.end"}})],1)],1)]:[_c('Input',{key:idx,staticStyle:{"width":"100%"},attrs:{"placeholder":""},on:{"on-enter":function($event){return _vm.query_grid_data(1)}},nativeOn:{"input":function($event){condi.triggerMethod == 'input' ? _vm.query_grid_data(1) : null},"change":function($event){condi.triggerMethod == 'change' ? _vm.query_grid_data(1) : null},"!blur":function($event){condi.triggerMethod == 'blur' ? _vm.query_grid_data(1) : null}},model:{value:(condi.searchValue),callback:function ($$v) {_vm.$set(condi, "searchValue", $$v)},expression:"condi.searchValue"}})]]],2)],1)}),0)]}),_vm._v(" "),_c('div',{staticClass:"btnBox",staticStyle:{"text-align":"center"}},[_c('Button',{staticClass:"button btn",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.reset_query_condis()}}},[_vm._v("重置")]),_vm._v(" "),_c('Button',{staticClass:"button btn1",staticStyle:{"font-size":"15px","padding":"0 12px"},attrs:{"type":"primary"},on:{"click":function($event){return _vm.query_grid_data(1,'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',{staticClass:"select-content",staticStyle:{"display":"flex","align-items":"center","font-size":"14px !important"},attrs:{"closable":""}},[_c('span',{staticClass:"textOverflowBsp",staticStyle:{"min-width":"80px","display":"inline-block","font-size":"14px"},attrs:{"title":item.label}},[_vm._v(_vm._s(item.label)+":"),(item.searchValue && !item.dicInfo)?_c('i',{staticStyle:{"font-size":"16px"}},[_vm._v(_vm._s(item.searchValue))]):_vm._e(),_vm._v(" "),(item.start)?_c('i',[_vm._v(" "+_vm._s(_vm.dayjs(item.start).format('YYYY-MM-DD HH:mm:ss'))+"-")]):_vm._e(),(item.end)?_c('i',[_vm._v(_vm._s(_vm.dayjs(item.end).format('YYYY-MM-DD HH:mm:ss')))]):_vm._e()]),_vm._v(" "),(item.searchValue && item.dicInfo)?_c('s-dicgrid',{attrs:{"disabled":"","multiple":item.isDicMultiple,"dicName":item.dicInfo},model:{value:(item.searchValue),callback:function ($$v) {_vm.$set(item, "searchValue", $$v)},expression:"item.searchValue"}}):_vm._e(),_vm._v("\n "),_c('Icon',{attrs:{"type":"md-close-circle"},on:{"click":function($event){return _vm.closeItem(order, index, item)}}})],1):_vm._e()})})],2)]):_vm._e(),_vm._v(" "),((_vm.quickFilter && _vm.quickFilter.length > 0) || (_vm.headOper && _vm.headOper.length > 0 && _vm.showOper))?_c('div',{class:['titleNav', _vm.quickFilter && _vm.quickFilter.length > 0 ? 'hale' : 'nohale']},[_c('div',{staticClass:"navleft"},[(_vm.customFunc && _vm.showOper)?_c('div',[_vm._t("customHeadFunc",null,{"func":_vm.funcAuth}),_vm._v(" "),_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORTKey",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:_vm._e(),_vm._v(" "),(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:_vm._e()]:_vm._e()})],2):_vm._e(),_vm._v(" "),(!_vm.customFunc && _vm.showOper)?[_vm._l((_vm.headOper),function(oper){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-add',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"error"},on:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'ios-trash-outline',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headRefreshOper(1)}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-refresh',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'EXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headExportOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1),_vm._v(" "),(_vm.asyncExportTotal > 0)?_c('Button',{key:"DATAEXPORT",staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-download',"size":"18"}}),_vm._v("导出数据下载\n ")],1):_vm._e()]:(oper.operType === 'DATAEXPORT')?[_c('Button',{key:oper.id,staticClass:"head-btn",on:{"click":function($event){return _vm.headDataExport()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-log-out',"size":"18"}}),_vm._v(_vm._s(oper.name)+" ")],1)]:(oper.operType === 'PRINT')?[_c('Button',{key:oper.id + 'key',staticClass:"head-btn",on:{"click":function($event){return _vm.headPrintOper()}}},[_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath ? oper.iconPath : 'md-print',"size":"18"}}),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('Button',{key:oper.id,staticClass:"head-btn",attrs:{"type":"primary"},on:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticClass:"Iconclass",attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()}),_vm._v(" "),(_vm.headOperBatch.length > 0)?_c('Dropdown',{attrs:{"placement":"bottom","trigger":"click","transfer":""}},[_c('Button',{staticStyle:{"font-size":"15px","margin-right":"10px","margin-top":"5px"},attrs:{"type":"info"}},[_vm._v(" 操 作"),_c('Icon',{staticStyle:{"margin-left":"2px"},attrs:{"size":"20","type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{staticClass:"data-grid-bsp",staticStyle:{"text-align":"center"},attrs:{"slot":"list"},slot:"list"},[_vm._l((_vm.headOperBatch),function(oper,idx){return (!_vm.isAuth(oper.auth))?[(_vm.$scopedSlots[oper.mark])?_vm._t(oper.mark,null,{"oper":oper}):(oper.operType === 'ADD')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headAddOper(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'DELETE')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDeleteOper(oper.mark, oper.url)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'REFRESH')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headRefreshOper(1)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:(oper.operType === 'EXPORT')?[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headExportOper()}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]:[_c('DropdownItem',{key:idx,attrs:{"divided":idx > 0},nativeOn:{"click":function($event){return _vm.headDealFunction(oper.mark)}}},[(_vm.notEmpty(oper.iconPath))?_c('Icon',{staticStyle:{"margin-right":"6px"},attrs:{"type":oper.iconPath,"size":"18"}}):_vm._e(),_vm._v(_vm._s(oper.name)+"\n ")],1)]]:_vm._e()})],2)],1):_vm._e()]:_vm._e()],2),_vm._v(" "),(_vm.quickFilter && _vm.quickFilter.length > 0 && _vm.rightShowTabs)?_c('div',{staticClass:"navright"},[_vm._l((_vm.quickFilter),function(filters,index){return [_c('div',{key:'filter_div' + index,staticClass:"navlist",class:{ After: index > 0 }},_vm._l((filters),function(item,idx){return _c('span',{key:'filter' + item.id,class:{ active: item.isDefault === '1' },attrs:{"match":item.groupMatchValue},on:{"click":function($event){return _vm.change_quick_filter(index, idx, item.label)}}},[_vm._v("\n "+_vm._s(item.label)),(_vm.comModel.groupStat)?[_vm._v("("+_vm._s(item.groupNum ? item.groupNum : 0)+")")]:_vm._e()],2)}),0)]})],2):_vm._e()]):_vm._e(),_vm._v(" "),(_vm.errorMsg === '')?_c('div',{staticStyle:{"width":"100%"},attrs:{"id":_vm.dataGridId}},[_c('Table',{ref:"sdtable",attrs:{"loading":_vm.loading,"tooltip-theme":"light","tooltip-max-width":300,"height":_vm.externalHeight !== null ? _vm.externalHeight : _vm.dataGridHeight ? _vm.dataGridHeight : '85px',"columns":_vm.dataGridColumns,"data":_vm.gridData,"stripe":"","border":""},on:{"on-row-dblclick":_vm.on_row_dblclick,"on-sort-change":_vm.on_sort_change,"on-row-click":_vm.on_row_click,"on-selection-change":_vm.on_batch_select},scopedSlots:_vm._u([_vm._l((_vm.slotColumn),function(sc){return {key:sc.slot,fn:function(ref){
|
|
20450
20496
|
var row = ref.row;
|
|
20451
20497
|
var index = ref.index;
|
|
20452
20498
|
return [_vm._t('slot_' + sc.slot,null,{"row":row,"index":index})]}}}),{key:"action",fn:function(ref){
|