sd-prison-select 1.0.16 → 1.0.18
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
CHANGED
|
@@ -598,27 +598,15 @@ module.exports = function normalizeComponent (
|
|
|
598
598
|
//分组统计
|
|
599
599
|
if (_this.comModel.groupStat && _this.comModel.groupStatField && resp.group && _this.quickFilter) {
|
|
600
600
|
try {
|
|
601
|
-
// let groupStatFields = this.comModel.groupStatField.split('|')
|
|
602
|
-
// console.log(groupStatFields)
|
|
603
|
-
// console.log(this.quickFilter)
|
|
604
|
-
// groupStatFields.forEach(field => {
|
|
605
|
-
// this.quickFilter[0].forEach(qf => {
|
|
606
|
-
// if(qf.groupStatField) {
|
|
607
|
-
// if(qf.groupStatField == field && resp.group[field]) {
|
|
608
|
-
// qf.groupNum = resp.group[field][qf.groupMatchValue] || 0
|
|
609
|
-
// }
|
|
610
|
-
// else{
|
|
611
|
-
// qf.groupNum = 0
|
|
612
|
-
// }
|
|
613
|
-
// }
|
|
614
|
-
// })
|
|
615
|
-
// })
|
|
616
601
|
_this.quickFilter[0].forEach(function (qf) {
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
602
|
+
var statFields = qf.groupStatField.split('|');
|
|
603
|
+
var statValues = qf.groupMatchValue.split('|');
|
|
604
|
+
qf.groupNum = 0;
|
|
605
|
+
for (var i = 0; i < statFields.length; i++) {
|
|
606
|
+
var statField = statFields[i];
|
|
607
|
+
var statValue = statValues[i];
|
|
608
|
+
if (resp.group[statField] && resp.group[statField][statValue]) {
|
|
609
|
+
qf.groupNum += resp.group[statField][statValue];
|
|
622
610
|
}
|
|
623
611
|
}
|
|
624
612
|
});
|
|
@@ -2624,6 +2612,14 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
2624
2612
|
//
|
|
2625
2613
|
//
|
|
2626
2614
|
//
|
|
2615
|
+
//
|
|
2616
|
+
//
|
|
2617
|
+
//
|
|
2618
|
+
//
|
|
2619
|
+
//
|
|
2620
|
+
//
|
|
2621
|
+
//
|
|
2622
|
+
//
|
|
2627
2623
|
|
|
2628
2624
|
|
|
2629
2625
|
|
|
@@ -2678,6 +2674,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
2678
2674
|
default: function _default() {
|
|
2679
2675
|
return {
|
|
2680
2676
|
isPrintTitle: '0',
|
|
2677
|
+
isPrintSn: '1',
|
|
2681
2678
|
printTitle: '',
|
|
2682
2679
|
printFields: [],
|
|
2683
2680
|
pageRange: {
|
|
@@ -2802,13 +2799,13 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
|
|
|
2802
2799
|
confirmPrint: function confirmPrint() {
|
|
2803
2800
|
var _this2 = this;
|
|
2804
2801
|
|
|
2805
|
-
console.log(121212, this.printMaxCount, this.pageCount, this.rowMark, 'this.selectedRows.length');
|
|
2806
2802
|
this.$refs['printOptionForm'].validate(function (valid) {
|
|
2807
2803
|
if (valid) {
|
|
2808
2804
|
_this2.modal_loading = true;
|
|
2809
2805
|
var opts = _this2.printOption;
|
|
2810
2806
|
var params = _extends({}, _this2.gridRequestParams);
|
|
2811
2807
|
params.isPrintTitle = opts.isPrintTitle;
|
|
2808
|
+
params.isPrintSn = opts.isPrintSn;
|
|
2812
2809
|
params.printTitle = opts.printTitle || '';
|
|
2813
2810
|
params.printFields = opts.printFields.join(',');
|
|
2814
2811
|
params.fromPageNo = opts.pageRange.fromPageNo;
|
|
@@ -2966,7 +2963,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
|
2966
2963
|
"use strict";
|
|
2967
2964
|
/* 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);
|
|
2968
2965
|
/* unused harmony namespace reexport */
|
|
2969
|
-
/* harmony import */ var
|
|
2966
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_278463ef_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__(68);
|
|
2970
2967
|
function injectStyle (ssrContext) {
|
|
2971
2968
|
__webpack_require__(20)
|
|
2972
2969
|
}
|
|
@@ -2981,12 +2978,12 @@ var __vue_template_functional__ = false
|
|
|
2981
2978
|
/* styles */
|
|
2982
2979
|
var __vue_styles__ = injectStyle
|
|
2983
2980
|
/* scopeId */
|
|
2984
|
-
var __vue_scopeId__ = "data-v-
|
|
2981
|
+
var __vue_scopeId__ = "data-v-278463ef"
|
|
2985
2982
|
/* moduleIdentifier (server only) */
|
|
2986
2983
|
var __vue_module_identifier__ = null
|
|
2987
2984
|
var Component = normalizeComponent(
|
|
2988
2985
|
__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 */],
|
|
2989
|
-
|
|
2986
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_278463ef_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 */],
|
|
2990
2987
|
__vue_template_functional__,
|
|
2991
2988
|
__vue_styles__,
|
|
2992
2989
|
__vue_scopeId__,
|
|
@@ -3007,7 +3004,7 @@ var content = __webpack_require__(21);
|
|
|
3007
3004
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
3008
3005
|
if(content.locals) module.exports = content.locals;
|
|
3009
3006
|
// add the styles to the DOM
|
|
3010
|
-
var update = __webpack_require__(1)("
|
|
3007
|
+
var update = __webpack_require__(1)("38307a8e", content, true);
|
|
3011
3008
|
|
|
3012
3009
|
/***/ }),
|
|
3013
3010
|
/* 21 */
|
|
@@ -3018,7 +3015,7 @@ exports = module.exports = __webpack_require__(0)(false);
|
|
|
3018
3015
|
|
|
3019
3016
|
|
|
3020
3017
|
// module
|
|
3021
|
-
exports.push([module.i, ".list[data-v-e6e91536]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-e6e91536],.list .list-item[data-v-e6e91536]{text-align:center;width:60px}.ele2[data-v-e6e91536],.list .list-item[data-v-e6e91536]{text-align:left;flex:1}.ele3[data-v-e6e91536],.list .list-item[data-v-e6e91536]{text-align:center;width:80px}.list .list-item[data-v-e6e91536]{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-e6e91536]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-e6e91536]:hover{background:#f0f5ff}[data-v-e6e91536].ivu-checkbox-wrapper{font-size:16px}[data-v-e6e91536].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-e6e91536]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-e6e91536].ivu-checkbox-checked:focus{box-shadow:none}[data-v-e6e91536].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-e6e91536]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-e6e91536].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-e6e91536].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-e6e91536].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-e6e91536].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-e6e91536].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-e6e91536].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-e6e91536].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-e6e91536].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-e6e91536]{text-align:center}.cancle-button[data-v-e6e91536]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-e6e91536]{background:#f06060}.submit-button[data-v-e6e91536]{background:#2b5fda}.DataGrid-BOX[data-v-e6e91536]{padding:0}.DataGrid-BOX .formbox[data-v-e6e91536]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-e6e91536]{background:#2b5fd9}.ivu-btn-info[data-v-e6e91536]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-e6e91536]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-e6e91536],.DataGrid-BOX .formbox .searchBox[data-v-e6e91536]{display:flex;flex-wrap:wrap}.style2>div[data-v-e6e91536]{width:50%}.style3>div[data-v-e6e91536]{width:33.3%}.style4>div[data-v-e6e91536]{width:25%}.style5>div[data-v-e6e91536]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-e6e91536]{margin-bottom:5px}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-e6e91536]{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-e6e91536]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-e6e91536]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-e6e91536]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-e6e91536]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-e6e91536]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-e6e91536]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-e6e91536]{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-e6e91536]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:-10px;line-height:50px;min-height:2px}.DataGrid-BOX .hale>div[data-v-e6e91536]{width:50%}.DataGrid-BOX .nohale>div[data-v-e6e91536]{width:100%}.DataGrid-BOX .navleft .La[data-v-e6e91536]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-e6e91536]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-e6e91536]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-e6e91536]{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-e6e91536]{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-e6e91536]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-e6e91536]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-e6e91536]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-e6e91536]{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-e6e91536],.DataGrid-BOX .common_optation .select[data-v-e6e91536]{max-width:300px}.DataGrid-BOX .page-btn[data-v-e6e91536],.DataGrid-BOX .page-Data[data-v-e6e91536],.DataGrid-BOX .page-set[data-v-e6e91536]{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-e6e91536]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-e6e91536]{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-e6e91536]{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-e6e91536]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-e6e91536]{list-style:none;border:1px solid #0394f9;position:absolute;left:-78px;width:150px;bottom:100%;background:#fff;z-index:1000;height:310px;overflow-y:auto;-webkit-box-shadow:0 0 5px 0 #bebef3;box-shadow:0 0 5px 0 #bebef3}.DataGrid-BOX .ulnavlist li[data-v-e6e91536]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-e6e91536]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-e6e91536]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-e6e91536]{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-e6e91536]{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-e6e91536]{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-e6e91536].ivu-table-row-highlight td,[data-v-e6e91536].ivu-table-row-hover td,[data-v-e6e91536].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-e6e91536],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-e6e91536]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-e6e91536]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-e6e91536]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-e6e91536]:hover,[data-v-e6e91536].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-e6e91536]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-e6e91536]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-e6e91536]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-e6e91536],.DataGrid-BOX/deep/.ivu-table-border th[data-v-e6e91536]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-e6e91536],.DataGrid-BOX/deep/.ivu-table th[data-v-e6e91536]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-e6e91536]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-e6e91536]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-e6e91536]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-e6e91536]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-e6e91536]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-e6e91536]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-e6e91536],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-e6e91536]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-e6e91536]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-e6e91536]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-e6e91536]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-e6e91536]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-e6e91536],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-e6e91536],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-e6e91536]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-e6e91536]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-e6e91536],.DataGrid-BOX/deep/.el-input[data-v-e6e91536]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-e6e91536]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-e6e91536]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-e6e91536]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-e6e91536]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-e6e91536]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-e6e91536]::-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-e6e91536]::-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-e6e91536]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-e6e91536]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-e6e91536],.ivu-btn-info[disabled][data-v-e6e91536],.ivu-btn-primary.disabled[data-v-e6e91536],.ivu-btn-primary[disabled][data-v-e6e91536]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-e6e91536],.timeTextzhi[data-v-e6e91536]{display:flex;justify-content:center}.timeTextzhi[data-v-e6e91536]{align-items:center}", ""]);
|
|
3018
|
+
exports.push([module.i, ".list[data-v-278463ef]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-278463ef],.list .list-item[data-v-278463ef]{text-align:center;width:60px}.ele2[data-v-278463ef],.list .list-item[data-v-278463ef]{text-align:left;flex:1}.ele3[data-v-278463ef],.list .list-item[data-v-278463ef]{text-align:center;width:80px}.list .list-item[data-v-278463ef]{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-278463ef]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-278463ef]:hover{background:#f0f5ff}[data-v-278463ef].ivu-checkbox-wrapper{font-size:16px}[data-v-278463ef].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-278463ef]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-278463ef].ivu-checkbox-checked:focus{box-shadow:none}[data-v-278463ef].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-278463ef]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-278463ef].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-278463ef].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-278463ef].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-278463ef].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-278463ef].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-278463ef].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-278463ef].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-278463ef].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-278463ef]{text-align:center}.cancle-button[data-v-278463ef]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-278463ef]{background:#f06060}.submit-button[data-v-278463ef]{background:#2b5fda}.DataGrid-BOX[data-v-278463ef]{padding:0}.DataGrid-BOX .formbox[data-v-278463ef]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-278463ef]{background:#2b5fd9}.ivu-btn-info[data-v-278463ef]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-278463ef]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-278463ef],.DataGrid-BOX .formbox .searchBox[data-v-278463ef]{display:flex;flex-wrap:wrap}.style2>div[data-v-278463ef]{width:50%}.style3>div[data-v-278463ef]{width:33.3%}.style4>div[data-v-278463ef]{width:25%}.style5>div[data-v-278463ef]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-278463ef]{margin-bottom:5px}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-278463ef]{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-278463ef]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-278463ef]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-278463ef]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-278463ef]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-278463ef]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-278463ef]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-278463ef]{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-278463ef]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:-10px;line-height:50px;min-height:2px}.DataGrid-BOX .hale>div[data-v-278463ef]{width:50%}.DataGrid-BOX .nohale>div[data-v-278463ef]{width:100%}.DataGrid-BOX .navleft .La[data-v-278463ef]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-278463ef]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-278463ef]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-278463ef]{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-278463ef]{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-278463ef]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-278463ef]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-278463ef]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-278463ef]{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-278463ef],.DataGrid-BOX .common_optation .select[data-v-278463ef]{max-width:300px}.DataGrid-BOX .page-btn[data-v-278463ef],.DataGrid-BOX .page-Data[data-v-278463ef],.DataGrid-BOX .page-set[data-v-278463ef]{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-278463ef]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-278463ef]{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-278463ef]{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-278463ef]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-278463ef]{list-style:none;border:1px solid #0394f9;position:absolute;left:-78px;width:150px;bottom:100%;background:#fff;z-index:1000;height:310px;overflow-y:auto;-webkit-box-shadow:0 0 5px 0 #bebef3;box-shadow:0 0 5px 0 #bebef3}.DataGrid-BOX .ulnavlist li[data-v-278463ef]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-278463ef]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-278463ef]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-278463ef]{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-278463ef]{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-278463ef]{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-278463ef].ivu-table-row-highlight td,[data-v-278463ef].ivu-table-row-hover td,[data-v-278463ef].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-278463ef],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-278463ef]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-278463ef]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-278463ef]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-278463ef]:hover,[data-v-278463ef].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-278463ef]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-278463ef]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-278463ef]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-278463ef],.DataGrid-BOX/deep/.ivu-table-border th[data-v-278463ef]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-278463ef],.DataGrid-BOX/deep/.ivu-table th[data-v-278463ef]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-278463ef]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-278463ef]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-278463ef]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-278463ef]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-278463ef]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-278463ef]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-278463ef],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-278463ef]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-278463ef]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-278463ef]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-278463ef]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-278463ef]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-278463ef],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-278463ef],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-278463ef]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-278463ef]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-278463ef],.DataGrid-BOX/deep/.el-input[data-v-278463ef]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-278463ef]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-278463ef]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-278463ef]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-278463ef]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-278463ef]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-278463ef]::-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-278463ef]::-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-278463ef]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-278463ef]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-278463ef],.ivu-btn-info[disabled][data-v-278463ef],.ivu-btn-primary.disabled[data-v-278463ef],.ivu-btn-primary[disabled][data-v-278463ef]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-278463ef],.timeTextzhi[data-v-278463ef]{display:flex;justify-content:center}.timeTextzhi[data-v-278463ef]{align-items:center}", ""]);
|
|
3022
3019
|
|
|
3023
3020
|
// exports
|
|
3024
3021
|
|
|
@@ -3125,6 +3122,10 @@ module.exports = function listToStyles (parentId, list) {
|
|
|
3125
3122
|
type: Boolean,
|
|
3126
3123
|
default: true
|
|
3127
3124
|
},
|
|
3125
|
+
rightShowTabs: {
|
|
3126
|
+
type: Boolean,
|
|
3127
|
+
default: true
|
|
3128
|
+
},
|
|
3128
3129
|
customFunc: false
|
|
3129
3130
|
},
|
|
3130
3131
|
mounted: function mounted() {
|
|
@@ -3220,6 +3221,7 @@ module.exports = function listToStyles (parentId, list) {
|
|
|
3220
3221
|
}
|
|
3221
3222
|
});
|
|
3222
3223
|
}
|
|
3224
|
+
console.log(resp.quickFilter, 'resp.quickFilterresp.quickFilterresp.quickFilter');
|
|
3223
3225
|
this.build_quick_filter(resp.quickFilter);
|
|
3224
3226
|
}
|
|
3225
3227
|
// 分页
|
|
@@ -3479,15 +3481,15 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
3479
3481
|
build_show_field: function build_show_field() {
|
|
3480
3482
|
var _that = this;
|
|
3481
3483
|
var dataGridColumns = [];
|
|
3482
|
-
if (_that.comModelProps.showRownumbers) {
|
|
3483
|
-
// _that.dataGridColumns.push(_that.index_column())
|
|
3484
|
-
dataGridColumns.push(_that.index_column(1));
|
|
3485
|
-
}
|
|
3486
3484
|
if (this.comModelProps.showCheckbox) {
|
|
3487
3485
|
_that.showCheckbox = true;
|
|
3488
3486
|
// _that.dataGridColumns.push(this.checkbox_colimn())
|
|
3489
3487
|
dataGridColumns.push(_that.checkbox_colimn(1));
|
|
3490
3488
|
}
|
|
3489
|
+
if (_that.comModelProps.showRownumbers) {
|
|
3490
|
+
// _that.dataGridColumns.push(_that.index_column())
|
|
3491
|
+
dataGridColumns.push(_that.index_column(1));
|
|
3492
|
+
}
|
|
3491
3493
|
|
|
3492
3494
|
var modelsortFields = [];
|
|
3493
3495
|
_that.modelShowFields.forEach(function (item, index) {
|
|
@@ -3673,9 +3675,19 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
3673
3675
|
var clickUrl = this.comModelProps.clickUrl;
|
|
3674
3676
|
if (clickUrl) {
|
|
3675
3677
|
// clickUrl += "&loginId={{:=user.loginId}}&ajbh={{:=req.ajbh}}"
|
|
3676
|
-
clickUrl = this.template(clickUrl, {
|
|
3678
|
+
clickUrl = this.template(clickUrl, {
|
|
3679
|
+
row: row,
|
|
3680
|
+
user: this.$store.getters.sessionUser,
|
|
3681
|
+
req: this.$route.query
|
|
3682
|
+
});
|
|
3677
3683
|
window.open(clickUrl);
|
|
3678
3684
|
}
|
|
3685
|
+
console.log('onRowdblclick111', row, index);
|
|
3686
|
+
this.$emit('onRowdblclick', row, index);
|
|
3687
|
+
},
|
|
3688
|
+
on_row_click: function on_row_click(row, index) {
|
|
3689
|
+
console.log('onRowdblclick2222', row, index);
|
|
3690
|
+
this.$emit('onRowClick', row, index);
|
|
3679
3691
|
},
|
|
3680
3692
|
cal_show_field_wdith: function cal_show_field_wdith(col) {
|
|
3681
3693
|
var _that = this;
|
|
@@ -3726,24 +3738,34 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
3726
3738
|
}
|
|
3727
3739
|
var linkUrl = props.linkUrl;
|
|
3728
3740
|
if (linkUrl) {
|
|
3729
|
-
linkUrl = this.template(linkUrl, {
|
|
3741
|
+
linkUrl = this.template(linkUrl, {
|
|
3742
|
+
row: row,
|
|
3743
|
+
user: this.$store.getters.sessionUser,
|
|
3744
|
+
req: this.$route.query
|
|
3745
|
+
});
|
|
3730
3746
|
}
|
|
3731
3747
|
|
|
3732
|
-
var aObj = {
|
|
3748
|
+
var aObj = {
|
|
3749
|
+
innerHTML: '<a href=\'' + linkUrl + '\' target=\'' + _target + '\'>' + content + '</a>'
|
|
3750
|
+
};
|
|
3733
3751
|
if (ellipsis === '2') {
|
|
3734
3752
|
return h('div', [h('Tooltip', {
|
|
3735
3753
|
props: {
|
|
3736
3754
|
theme: 'light',
|
|
3737
3755
|
transfer: true
|
|
3738
3756
|
}
|
|
3739
|
-
}, [h('span', {
|
|
3757
|
+
}, [h('span', {
|
|
3758
|
+
domProps: aObj
|
|
3759
|
+
}), h('span', {
|
|
3740
3760
|
slot: 'content',
|
|
3741
3761
|
style: {
|
|
3742
3762
|
whiteSpace: 'normal'
|
|
3743
3763
|
}
|
|
3744
3764
|
}, text)])]);
|
|
3745
3765
|
} else {
|
|
3746
|
-
return h('div', [h('span', {
|
|
3766
|
+
return h('div', [h('span', {
|
|
3767
|
+
domProps: aObj
|
|
3768
|
+
})]);
|
|
3747
3769
|
}
|
|
3748
3770
|
},
|
|
3749
3771
|
multi_col_change: function multi_col_change(index) {
|
|
@@ -4771,9 +4793,9 @@ runtime.o = o;
|
|
|
4771
4793
|
this.iframeComponent = 'iframeComponent';
|
|
4772
4794
|
this.modalStatus = true;
|
|
4773
4795
|
} else if (oper.openMode === '1') {
|
|
4774
|
-
window.open(url);
|
|
4796
|
+
window.open(url, '_blank');
|
|
4775
4797
|
} else if (oper.openMode === '2') {
|
|
4776
|
-
window.
|
|
4798
|
+
window.open(url, '_self');
|
|
4777
4799
|
}
|
|
4778
4800
|
},
|
|
4779
4801
|
closeModal: function closeModal() {
|
|
@@ -7224,7 +7246,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
7224
7246
|
"use strict";
|
|
7225
7247
|
/* 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_print_opt_vue__ = __webpack_require__(15);
|
|
7226
7248
|
/* unused harmony namespace reexport */
|
|
7227
|
-
/* harmony import */ var
|
|
7249
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_16996421_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_print_opt_vue__ = __webpack_require__(66);
|
|
7228
7250
|
function injectStyle (ssrContext) {
|
|
7229
7251
|
__webpack_require__(61)
|
|
7230
7252
|
}
|
|
@@ -7239,12 +7261,12 @@ var __vue_template_functional__ = false
|
|
|
7239
7261
|
/* styles */
|
|
7240
7262
|
var __vue_styles__ = injectStyle
|
|
7241
7263
|
/* scopeId */
|
|
7242
|
-
var __vue_scopeId__ = "data-v-
|
|
7264
|
+
var __vue_scopeId__ = "data-v-16996421"
|
|
7243
7265
|
/* moduleIdentifier (server only) */
|
|
7244
7266
|
var __vue_module_identifier__ = null
|
|
7245
7267
|
var Component = normalizeComponent(
|
|
7246
7268
|
__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_print_opt_vue__["a" /* default */],
|
|
7247
|
-
|
|
7269
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_16996421_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_grid_print_opt_vue__["a" /* default */],
|
|
7248
7270
|
__vue_template_functional__,
|
|
7249
7271
|
__vue_styles__,
|
|
7250
7272
|
__vue_scopeId__,
|
|
@@ -7265,7 +7287,7 @@ var content = __webpack_require__(62);
|
|
|
7265
7287
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
7266
7288
|
if(content.locals) module.exports = content.locals;
|
|
7267
7289
|
// add the styles to the DOM
|
|
7268
|
-
var update = __webpack_require__(1)("
|
|
7290
|
+
var update = __webpack_require__(1)("1f7ed4e3", content, true);
|
|
7269
7291
|
|
|
7270
7292
|
/***/ }),
|
|
7271
7293
|
/* 62 */
|
|
@@ -7276,7 +7298,7 @@ exports = module.exports = __webpack_require__(0)(false);
|
|
|
7276
7298
|
|
|
7277
7299
|
|
|
7278
7300
|
// module
|
|
7279
|
-
exports.push([module.i, "[data-v-
|
|
7301
|
+
exports.push([module.i, "[data-v-16996421].export-modal .ivu-modal-body,[data-v-16996421].export-modal .ivu-modal-header{padding:0!important}[data-v-16996421].ivu-modal-body{max-height:440px;overflow-y:auto}[data-v-16996421].export-modal .ivu-modal-footer{padding:8px 18px}[data-v-16996421].export-modal .ivu-icon-ios-close{font-size:32px;line-height:40px}[data-v-16996421].export-modal .ivu-modal-footer{background:#f7faff;border-color:#cee0f0}.export-modal .model-footer/deep/.ivu-btn-primary[data-v-16996421]{font-size:16px;min-width:80px;height:36px;opacity:1;background:#2b5fd9;border-radius:2px;margin:0 8px}.export-modal .flow-modal-title[data-v-16996421]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}.export-modal .model-footer button[data-v-16996421]{font-size:16px;min-width:80px;height:36px;opacity:1;border-radius:2px;margin:0 8px}[data-v-16996421].ivu-checkbox-group-item{width:160px;font-size:16px}[data-v-16996421].ivu-form-item-content,[data-v-16996421].ivu-form .ivu-form-item-label{font-size:16px}[data-v-16996421].export-modal ::-webkit-scrollbar{width:10px;height:10px}[data-v-16996421].export-modal ::-webkit-scrollbar-thumb{border-radius:3px;background:#b7c7dd}[data-v-16996421].export-modal ::-webkit-scrollbar-track{border-radius:3px;background:#ededed}", ""]);
|
|
7280
7302
|
|
|
7281
7303
|
// exports
|
|
7282
7304
|
|
|
@@ -7450,7 +7472,7 @@ module.exports = v4;
|
|
|
7450
7472
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7451
7473
|
|
|
7452
7474
|
"use strict";
|
|
7453
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('Modal',{attrs:{"width":_vm.modalWidth,"class-name":"export-modal","closable":false,"mask-closable":false},model:{value:(_vm.modal),callback:function ($$v) {_vm.modal=$$v},expression:"modal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px"}},[_vm._v(_vm._s(_vm.title))]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","cursor":"pointer"},on:{"click":function($event){return _vm.closeModal()}}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),_c('div',{staticClass:"form"},[_c('Form',{ref:"printOptionForm",attrs:{"label-width":150,"model":_vm.printOption,"rules":_vm.ruleValidate,"label-colon":""}},[_c('Row',[_c('Col',{attrs:{"span":"
|
|
7475
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('Modal',{attrs:{"width":_vm.modalWidth,"class-name":"export-modal","closable":false,"mask-closable":false},model:{value:(_vm.modal),callback:function ($$v) {_vm.modal=$$v},expression:"modal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px"}},[_vm._v(_vm._s(_vm.title))]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","cursor":"pointer"},on:{"click":function($event){return _vm.closeModal()}}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),_c('div',{staticClass:"form"},[_c('Form',{ref:"printOptionForm",attrs:{"label-width":150,"model":_vm.printOption,"rules":_vm.ruleValidate,"label-colon":""}},[_c('Row',{staticStyle:{"padding-top":"10px"}},[_c('Col',{attrs:{"span":"11"}},[_c('FormItem',{attrs:{"label":"是否打印标题","prop":"isPrintTitle"}},[_c('RadioGroup',{attrs:{"size":"large"},model:{value:(_vm.printOption.isPrintTitle),callback:function ($$v) {_vm.$set(_vm.printOption, "isPrintTitle", $$v)},expression:"printOption.isPrintTitle"}},[_c('Radio',{attrs:{"label":"0"}},[_vm._v("否")]),_vm._v(" \n "),_c('Radio',{attrs:{"label":"1"}},[_vm._v("是")])],1)],1)],1),_vm._v(" "),_c('Col',{attrs:{"span":"11"}},[_c('FormItem',{attrs:{"label":"是否打印序号","prop":"isPrintSn"}},[_c('RadioGroup',{attrs:{"size":"large"},model:{value:(_vm.printOption.isPrintSn),callback:function ($$v) {_vm.$set(_vm.printOption, "isPrintSn", $$v)},expression:"printOption.isPrintSn"}},[_c('Radio',{attrs:{"label":"0"}},[_vm._v("否")]),_vm._v(" \n "),_c('Radio',{attrs:{"label":"1"}},[_vm._v("是")])],1)],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"标题","prop":"printTitle","rules":{ required: _vm.printOption.isPrintTitle == '1' ? true : false, message: '标题不能为空', trigger: 'blur,change' }}},[_c('Input',{attrs:{"maxlength":"50","show-word-limit":""},model:{value:(_vm.printOption.printTitle),callback:function ($$v) {_vm.$set(_vm.printOption, "printTitle", $$v)},expression:"printOption.printTitle"}})],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',{attrs:{"span":"22"}},[_c('FormItem',{attrs:{"label":"选择打印字段","prop":"printFields"}},[_c('CheckboxGroup',{attrs:{"size":"large"},model:{value:(_vm.printOption.printFields),callback:function ($$v) {_vm.$set(_vm.printOption, "printFields", $$v)},expression:"printOption.printFields"}},_vm._l((_vm.allowPrintFields),function(item){return _c('Checkbox',{key:item.name,attrs:{"label":item.name}},[_vm._v(_vm._s(item.description))])}),1)],1)],1)],1),_vm._v(" "),_c('Row',[_c('Col',[_c('FormItem',{attrs:{"label":"打印数据页设置","prop":"pageRange"}},[_vm._v("\n 从 \n "),_c('InputNumber',{staticStyle:{"width":"100px"},attrs:{"min":1,"max":_vm.pageCount,"precision":0},model:{value:(_vm.printOption.pageRange.fromPageNo),callback:function ($$v) {_vm.$set(_vm.printOption.pageRange, "fromPageNo", $$v)},expression:"printOption.pageRange.fromPageNo"}}),_vm._v("\n 页 至 \n "),_c('InputNumber',{staticStyle:{"width":"100px"},attrs:{"min":1,"max":_vm.pageCount,"precision":0},model:{value:(_vm.printOption.pageRange.toPageNo),callback:function ($$v) {_vm.$set(_vm.printOption.pageRange, "toPageNo", $$v)},expression:"printOption.pageRange.toPageNo"}}),_vm._v(" 页 ( 共 "+_vm._s(_vm.pageCount)+" 页)\n ")],1)],1)],1)],1)],1),_vm._v(" "),_c('div',{staticClass:"model-footer",attrs:{"slot":"footer"},slot:"footer"},[_c('Button',{attrs:{"size":"large"},on:{"click":_vm.closeModal}},[_vm._v("取消")]),_vm._v(" "),_c('Button',{attrs:{"type":"primary","size":"large","loading":_vm.modal_loading},on:{"click":_vm.confirmPrint}},[_vm._v("确定")])],1)])],1)}
|
|
7454
7476
|
var staticRenderFns = []
|
|
7455
7477
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
7456
7478
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -16312,8 +16334,8 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
16312
16334
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
16313
16335
|
|
|
16314
16336
|
"use strict";
|
|
16315
|
-
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.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 + '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.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.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\t\t\t\t\t\t\t")],1),_vm._v(" "),_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\t\t\t\t\t\t\t")],1)]:_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\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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)+"\n\t\t\t\t\t\t\t")],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)+"\n\t\t\t\t\t\t\t")],1),_vm._v(" "),_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\t\t\t\t\t\t\t")],1)]:(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)+"\n\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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("\n\t\t\t\t\t\t\t操 作"),_c('Icon',{staticStyle:{"margin-left":"2px"},attrs:{"size":"20","type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],1)]]:_vm._e()})],2)],1):_vm._e()]:_vm._e()],2),_vm._v(" "),(_vm.quickFilter && _vm.quickFilter.length > 0)?_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\t\t\t\t\t\t\t"+_vm._s(item.label)),(_vm.comModel.groupStat)?[_vm._v("("+_vm._s(item.groupNum ? item.groupNum :
|
|
16316
|
-
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.gridData && _vm.gridData.length > 0 ? _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-selection-change":_vm.on_batch_select},scopedSlots:_vm._u([_vm._l((_vm.slotColumn),function(sc){return {key:sc.slot,fn:function(ref){
|
|
16337
|
+
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.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 + '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.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.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\t\t\t\t\t\t\t")],1),_vm._v(" "),_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\t\t\t\t\t\t\t")],1)]:_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\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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)+"\n\t\t\t\t\t\t\t")],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)+"\n\t\t\t\t\t\t\t")],1),_vm._v(" "),_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\t\t\t\t\t\t\t")],1)]:(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)+"\n\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t")],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("\n\t\t\t\t\t\t\t操 作"),_c('Icon',{staticStyle:{"margin-left":"2px"},attrs:{"size":"20","type":"ios-arrow-down"}})],1),_vm._v(" "),_c('DropdownMenu',{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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t\t\t")],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\t\t\t\t\t\t\t"+_vm._s(item.label)),(_vm.comModel.groupStat)?[_vm._v("("+_vm._s(item.groupNum ? item.groupNum :
|
|
16338
|
+
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.gridData && _vm.gridData.length > 0 ? _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){
|
|
16317
16339
|
var row = ref.row;
|
|
16318
16340
|
var index = ref.index;
|
|
16319
16341
|
return [_vm._t('slot_' + sc.slot,null,{"row":row,"index":index})]}}}),{key:"action",fn:function(ref){
|