sd-data-grid 1.2.57 → 1.2.58

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.
@@ -675,7 +675,10 @@ module.exports = function normalizeComponent (
675
675
  if (Object.keys(this.extendParams).length > 0) {
676
676
  params.extendParams = JSON.stringify(this.extendParams);
677
677
  } else if (Object.keys(this.params).length > 0) {
678
- params.extendParams = JSON.stringify(this.params);
678
+ var paramsAll = Object.assign(this.$route.query, this.params);
679
+ params.extendParams = JSON.stringify(paramsAll);
680
+ } else {
681
+ params.extendParams = JSON.stringify(this.$route.query);
679
682
  }
680
683
  return params;
681
684
  },
@@ -1692,49 +1695,49 @@ module.exports = {
1692
1695
  // import DicManage from '@/components/dic-manage/dic-manage.vue'
1693
1696
 
1694
1697
  /* harmony default export */ __webpack_exports__["a"] = ({
1695
- mixins: [__WEBPACK_IMPORTED_MODULE_0__dataGrid__["a" /* default */]],
1696
- components: {
1697
- 'iframeComponent': __WEBPACK_IMPORTED_MODULE_1__iframeComponent_vue__["a" /* default */],
1698
- 'gridExportOpt': __WEBPACK_IMPORTED_MODULE_2__grid_export_opt_vue__["a" /* default */],
1699
- 'gridDataOpt': __WEBPACK_IMPORTED_MODULE_3__grid_data_opt_vue__["a" /* default */],
1700
- 'gridPrintOpt': __WEBPACK_IMPORTED_MODULE_4__grid_print_opt_vue__["a" /* default */],
1701
- 'dicManage': __WEBPACK_IMPORTED_MODULE_5_sd_dic_manage__["dicManage"]
1702
- },
1703
- computed: {
1704
- pickerOptions: function pickerOptions() {
1705
- var that = this;
1706
- return function (condi, type) {
1707
- return {
1708
- disabledDate: function disabledDate(time) {
1709
- if (1 === type) {
1710
- if (condi.end) {
1711
- var licenseEnd = new Date(condi.end);
1712
- licenseEnd.setDate(licenseEnd.getDate());
1713
- return time.getTime() >= licenseEnd;
1714
- } else {
1715
- return false;
1716
- }
1717
- } else {
1718
- if (condi.start) {
1719
- var licenseStart = new Date(condi.start);
1720
- licenseStart.setDate(licenseStart.getDate() - 1);
1721
- return time.getTime() <= licenseStart;
1722
- } else {
1723
- return false;
1724
- }
1725
- }
1726
- }
1727
- };
1728
- };
1729
- }
1730
- }
1731
- // beforeDestroy() {
1732
- // // 组件销毁前取消所有请求
1733
- // this.cancelTokens.forEach(source => {
1734
- // source.cancel('组件销毁,取消请求');
1735
- // });
1736
- // this.cancelTokens = [];
1737
- // }
1698
+ mixins: [__WEBPACK_IMPORTED_MODULE_0__dataGrid__["a" /* default */]],
1699
+ components: {
1700
+ 'iframeComponent': __WEBPACK_IMPORTED_MODULE_1__iframeComponent_vue__["a" /* default */],
1701
+ 'gridExportOpt': __WEBPACK_IMPORTED_MODULE_2__grid_export_opt_vue__["a" /* default */],
1702
+ 'gridDataOpt': __WEBPACK_IMPORTED_MODULE_3__grid_data_opt_vue__["a" /* default */],
1703
+ 'gridPrintOpt': __WEBPACK_IMPORTED_MODULE_4__grid_print_opt_vue__["a" /* default */],
1704
+ 'dicManage': __WEBPACK_IMPORTED_MODULE_5_sd_dic_manage__["dicManage"]
1705
+ },
1706
+ computed: {
1707
+ pickerOptions: function pickerOptions() {
1708
+ var that = this;
1709
+ return function (condi, type) {
1710
+ return {
1711
+ disabledDate: function disabledDate(time) {
1712
+ if (type === 1) {
1713
+ if (condi.end) {
1714
+ var licenseEnd = new Date(condi.end);
1715
+ licenseEnd.setDate(licenseEnd.getDate());
1716
+ return time.getTime() >= licenseEnd;
1717
+ } else {
1718
+ return false;
1719
+ }
1720
+ } else {
1721
+ if (condi.start) {
1722
+ var licenseStart = new Date(condi.start);
1723
+ licenseStart.setDate(licenseStart.getDate() - 1);
1724
+ return time.getTime() <= licenseStart;
1725
+ } else {
1726
+ return false;
1727
+ }
1728
+ }
1729
+ }
1730
+ };
1731
+ };
1732
+ }
1733
+ }
1734
+ // beforeDestroy() {
1735
+ // // 组件销毁前取消所有请求
1736
+ // this.cancelTokens.forEach(source => {
1737
+ // source.cancel('组件销毁,取消请求');
1738
+ // });
1739
+ // this.cancelTokens = [];
1740
+ // }
1738
1741
  });
1739
1742
 
1740
1743
  /***/ }),
@@ -3018,7 +3021,7 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
3018
3021
  "use strict";
3019
3022
  /* 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);
3020
3023
  /* unused harmony namespace reexport */
3021
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_766f174f_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);
3024
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_9e2e6eca_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);
3022
3025
  function injectStyle (ssrContext) {
3023
3026
  __webpack_require__(20)
3024
3027
  }
@@ -3033,12 +3036,12 @@ var __vue_template_functional__ = false
3033
3036
  /* styles */
3034
3037
  var __vue_styles__ = injectStyle
3035
3038
  /* scopeId */
3036
- var __vue_scopeId__ = "data-v-766f174f"
3039
+ var __vue_scopeId__ = "data-v-9e2e6eca"
3037
3040
  /* moduleIdentifier (server only) */
3038
3041
  var __vue_module_identifier__ = null
3039
3042
  var Component = normalizeComponent(
3040
3043
  __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 */],
3041
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_766f174f_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 */],
3044
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_9e2e6eca_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 */],
3042
3045
  __vue_template_functional__,
3043
3046
  __vue_styles__,
3044
3047
  __vue_scopeId__,
@@ -3059,7 +3062,7 @@ var content = __webpack_require__(21);
3059
3062
  if(typeof content === 'string') content = [[module.i, content, '']];
3060
3063
  if(content.locals) module.exports = content.locals;
3061
3064
  // add the styles to the DOM
3062
- var update = __webpack_require__(1)("7ecb9301", content, true);
3065
+ var update = __webpack_require__(1)("34fb8b26", content, true);
3063
3066
 
3064
3067
  /***/ }),
3065
3068
  /* 21 */
@@ -3070,7 +3073,7 @@ exports = module.exports = __webpack_require__(0)(false);
3070
3073
 
3071
3074
 
3072
3075
  // module
3073
- exports.push([module.i, ".list[data-v-766f174f]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-766f174f],.list .list-item[data-v-766f174f]{text-align:center;width:60px}.ele2[data-v-766f174f],.list .list-item[data-v-766f174f]{text-align:left;flex:1}.ele3[data-v-766f174f],.list .list-item[data-v-766f174f]{text-align:center;width:80px}.list .list-item[data-v-766f174f]{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-766f174f]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-766f174f]:hover{background:#f0f5ff}[data-v-766f174f].ivu-checkbox-wrapper{font-size:16px}[data-v-766f174f].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-766f174f]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-766f174f].ivu-checkbox-checked:focus{box-shadow:none}[data-v-766f174f].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-766f174f]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-766f174f].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-766f174f].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-766f174f].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-766f174f].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-766f174f].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-766f174f].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-766f174f].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-766f174f].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-766f174f]{text-align:center}.cancle-button[data-v-766f174f]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-766f174f]{background:#f06060}.submit-button[data-v-766f174f]{background:#2b5fda}.DataGrid-BOX[data-v-766f174f]{padding:0}.DataGrid-BOX .formbox[data-v-766f174f]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-766f174f]{background:#2b5fd9}.ivu-btn-info[data-v-766f174f]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-766f174f]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-766f174f],.DataGrid-BOX .formbox .searchBox[data-v-766f174f]{display:flex;flex-wrap:wrap}.style2>div[data-v-766f174f]{width:50%}.style3>div[data-v-766f174f]{width:33.3%}.style4>div[data-v-766f174f]{width:25%}.style5>div[data-v-766f174f]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-766f174f]{margin-bottom:5px}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-766f174f]{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-766f174f]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-766f174f]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-766f174f]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-766f174f]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-766f174f]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-766f174f]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-766f174f]{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-766f174f]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:-10px;line-height:50px;min-height:2px}.DataGrid-BOX .hale>div[data-v-766f174f]{width:50%}.DataGrid-BOX .nohale>div[data-v-766f174f]{width:100%}.DataGrid-BOX .navleft .La[data-v-766f174f]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-766f174f]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-766f174f]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-766f174f]{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-766f174f]{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-766f174f]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-766f174f]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-766f174f]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-766f174f]{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-766f174f],.DataGrid-BOX .common_optation .select[data-v-766f174f]{max-width:300px}.DataGrid-BOX .page-btn[data-v-766f174f],.DataGrid-BOX .page-Data[data-v-766f174f],.DataGrid-BOX .page-set[data-v-766f174f]{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-766f174f]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-766f174f]{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-766f174f]{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-766f174f]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-766f174f]{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-766f174f]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-766f174f]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-766f174f]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-766f174f]{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-766f174f]{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-766f174f]{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-766f174f].ivu-table-row-highlight td,[data-v-766f174f].ivu-table-row-hover td,[data-v-766f174f].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-766f174f],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-766f174f]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-766f174f]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-766f174f]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-766f174f]:hover,[data-v-766f174f].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-766f174f]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-766f174f]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-766f174f]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-766f174f],.DataGrid-BOX/deep/.ivu-table-border th[data-v-766f174f]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-766f174f],.DataGrid-BOX/deep/.ivu-table th[data-v-766f174f]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-766f174f]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-766f174f]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-766f174f]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-766f174f]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-766f174f]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-766f174f]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-766f174f],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-766f174f]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-766f174f]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-766f174f]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-766f174f]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-766f174f]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-766f174f],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-766f174f],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-766f174f]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-766f174f]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-766f174f],.DataGrid-BOX/deep/.el-input[data-v-766f174f]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-766f174f]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-766f174f]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-766f174f]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-766f174f]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-766f174f]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-766f174f]::-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-766f174f]::-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-766f174f]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-766f174f]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-766f174f],.ivu-btn-info[disabled][data-v-766f174f],.ivu-btn-primary.disabled[data-v-766f174f],.ivu-btn-primary[disabled][data-v-766f174f]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-766f174f],.timeTextzhi[data-v-766f174f]{display:flex;justify-content:center}.timeTextzhi[data-v-766f174f]{align-items:center}.data-grid-bsp[data-v-766f174f]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-766f174f],.data-grid-bsp/deep/div[data-v-766f174f]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-766f174f]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-766f174f]{margin-left:-4px!important}", ""]);
3076
+ exports.push([module.i, ".list[data-v-9e2e6eca]{list-style:none;border-left:1px solid #cee0f0;border-right:1px solid #cee0f0}.ele1[data-v-9e2e6eca],.list .list-item[data-v-9e2e6eca]{text-align:center;width:60px}.ele2[data-v-9e2e6eca],.list .list-item[data-v-9e2e6eca]{text-align:left;flex:1}.ele3[data-v-9e2e6eca],.list .list-item[data-v-9e2e6eca]{text-align:center;width:80px}.list .list-item[data-v-9e2e6eca]{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-9e2e6eca]:first-child{border-top:1px solid #cee0f0}.list .list-item[data-v-9e2e6eca]:hover{background:#f0f5ff}[data-v-9e2e6eca].ivu-checkbox-wrapper{font-size:16px}[data-v-9e2e6eca].ivu-checkbox-checked .ivu-checkbox-inner{background-color:#2b5fd9;border-color:#2b5fd9}.list/deep/.ivu-checkbox-disabled .ivu-checkbox-inner[data-v-9e2e6eca]{background-color:#b4bccc;border-color:#b4bccc;color:#fff}[data-v-9e2e6eca].ivu-checkbox-checked:focus{box-shadow:none}[data-v-9e2e6eca].ivu-checkbox-disabled.ivu-checkbox-checked .ivu-checkbox-inner:after{border-color:#fff}.user-selector-modal .flow-modal-title[data-v-9e2e6eca]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}[data-v-9e2e6eca].user-selector-modal .ivu-modal-body::-webkit-scrollbar{width:10px;height:10px}[data-v-9e2e6eca].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}[data-v-9e2e6eca].user-selector-modal .ivu-modal-body::-webkit-scrollbar-track{border-radius:10px;background:#ededed}[data-v-9e2e6eca].user-selector-modal .ivu-modal-body::-webkit-scrollbar-thumb:hover{background-color:#b6c0d9;cursor:pointer}[data-v-9e2e6eca].user-selector-modal .ivu-modal-body::-webkit-scrollbar-button{height:2px;width:2px}[data-v-9e2e6eca].user-selector-modal .ivu-modal-body{height:600px;max-height:600px;overflow-y:auto;padding:16px!important}[data-v-9e2e6eca].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-9e2e6eca].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}.footer-container[data-v-9e2e6eca]{text-align:center}.cancle-button[data-v-9e2e6eca]{background:#fff;border:1px solid #2b5fda;color:#2b5fda}.set-button[data-v-9e2e6eca]{background:#f06060}.submit-button[data-v-9e2e6eca]{background:#2b5fda}.DataGrid-BOX[data-v-9e2e6eca]{padding:0}.DataGrid-BOX .formbox[data-v-9e2e6eca]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;border:1px solid #cee0f0}.ivu-btn-primary[data-v-9e2e6eca]{background:#2b5fd9}.ivu-btn-info[data-v-9e2e6eca]{background:#316cf5}.DataGrid-BOX .formbox-simple[data-v-9e2e6eca]{background:#f7f9fc;padding:20px 20px 10px;margin-bottom:10px;overflow:hidden;border:1px solid #cee0f0}.DataGrid-BOX .formbox-simple .searchBox[data-v-9e2e6eca],.DataGrid-BOX .formbox .searchBox[data-v-9e2e6eca]{display:flex;flex-wrap:wrap}.style2>div[data-v-9e2e6eca]{width:50%}.style3>div[data-v-9e2e6eca]{width:33.3%}.style4>div[data-v-9e2e6eca]{width:25%}.style5>div[data-v-9e2e6eca]{width:20%}.DataGrid-BOX/deep/.ivu-form-item[data-v-9e2e6eca]{margin-bottom:5px}.DataGrid-BOX/deep/.ivu-form .ivu-form-item-label[data-v-9e2e6eca]{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-9e2e6eca]{padding-top:10px}.DataGrid-BOX .titleNav .navleft/deep/.ivu-btn[data-v-9e2e6eca]{margin-right:10px;font-size:15px;line-height:30px}.DataGrid-BOX .button[data-v-9e2e6eca]{margin:10px;border-radius:4px}.DataGrid-BOX .btn[data-v-9e2e6eca]{color:#2b5fd9;border:1px solid #2b5fd9;background:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn1[data-v-9e2e6eca]{background:#2b5fd9;color:#fff;width:56px;line-height:30px}.DataGrid-BOX .btn2[data-v-9e2e6eca]{background:#17b0fc;color:#fff}.DataGrid-BOX .navleft>span[data-v-9e2e6eca]{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-9e2e6eca]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:-10px;line-height:50px;min-height:2px}.DataGrid-BOX .hale>div[data-v-9e2e6eca]{width:50%}.DataGrid-BOX .nohale>div[data-v-9e2e6eca]{width:100%}.DataGrid-BOX .navleft .La[data-v-9e2e6eca]{background:#3179f5}.DataGrid-BOX .navleft .Lv[data-v-9e2e6eca]{background:#11c28a}.DataGrid-BOX .navleft .Hong[data-v-9e2e6eca]{background:#f06060}.DataGrid-BOX .titleNav>div.navright[data-v-9e2e6eca]{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-9e2e6eca]{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-9e2e6eca]:hover{background:#eff6ff}.DataGrid-BOX .navright .active[data-v-9e2e6eca]{border-bottom:3px solid #3179f5;color:#2372fa}.DataGrid-BOX .navright .active-a[data-v-9e2e6eca]{margin-right:40px;position:relative}.DataGrid-BOX .i-data[data-v-9e2e6eca]{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-9e2e6eca],.DataGrid-BOX .common_optation .select[data-v-9e2e6eca]{max-width:300px}.DataGrid-BOX .page-btn[data-v-9e2e6eca],.DataGrid-BOX .page-Data[data-v-9e2e6eca],.DataGrid-BOX .page-set[data-v-9e2e6eca]{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-9e2e6eca]{font-style:normal;color:#2b5fd9;margin:0 5px;font-weight:700}.DataGrid-BOX .page-btn[data-v-9e2e6eca]{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-9e2e6eca]{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-9e2e6eca]{font-size:24px;color:blue;position:absolute;margin-top:2px;left:-5px}.DataGrid-BOX .ulnavlist[data-v-9e2e6eca]{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-9e2e6eca]{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.DataGrid-BOX .navlist[data-v-9e2e6eca]{position:relative;padding:0 10px;font-size:15px}.DataGrid-BOX .After[data-v-9e2e6eca]:after{content:\"\";width:2px;height:24px;background:#d5d5d6;position:absolute;top:16px;left:0}.DataGrid-BOX .iconlist[data-v-9e2e6eca]{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-9e2e6eca]{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-9e2e6eca]{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-9e2e6eca].ivu-table-row-highlight td,[data-v-9e2e6eca].ivu-table-row-hover td,[data-v-9e2e6eca].ivu-table-row:hover td{background-color:#dae5ff!important}.ivu-table-stripe .ivu-table-body tr:nth-child(2n) td[data-v-9e2e6eca],.ivu-table-stripe .ivu-table-fixed-body tr:nth-child(2n) td[data-v-9e2e6eca]{background:#f7f9fc!important}.DataGrid-BOX/deep/.ivu-table-border tr td[data-v-9e2e6eca]{font-family:Microsoft YaHei;font-weight:400;font-size:16px;color:#475066}.DataGrid-BOX/deep/.ivu-table-wrapper[data-v-9e2e6eca]{overflow:initial}.DataGrid-BOX/deep/.ivu-table-filter i[data-v-9e2e6eca]:hover,[data-v-9e2e6eca].ivu-table-sort i.on{color:#2b5fd9}.DataGrid-BOX .page_box[data-v-9e2e6eca]{border:1px solid #ddd;border-top:none;padding:0 20px;height:42px}.DataGrid-BOX/deep/.ivu-table th[data-v-9e2e6eca]{background:#dee9fc;font-family:Microsoft YaHei;font-weight:700;font-size:16px;color:#1f2533}.DataGrid-BOX/deep/.ivu-table[data-v-9e2e6eca]{font-size:16px;color:#2b3646}.DataGrid-BOX/deep/.ivu-table-border td[data-v-9e2e6eca],.DataGrid-BOX/deep/.ivu-table-border th[data-v-9e2e6eca]{border-right:1px solid #f5f7fa}.DataGrid-BOX/deep/.ivu-table td[data-v-9e2e6eca],.DataGrid-BOX/deep/.ivu-table th[data-v-9e2e6eca]{height:40px}.DataGrid-BOX .steylehang .btnBox .button[data-v-9e2e6eca]{margin:1px 0 0 20px;font-size:16px;padding:0 12px}.DataGrid-BOX .head-btn[data-v-9e2e6eca]{font-size:15px}.DataGrid-BOX/deep/.ivu-table td a[data-v-9e2e6eca]{color:#2c2cf9;text-decoration:none;border-bottom:1px solid;cursor:pointer}.DataGrid-BOX/deep/.ivu-page-item[data-v-9e2e6eca]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active[data-v-9e2e6eca]{background-color:#2b5fd9!important}.DataGrid-BOX/deep/.ivu-page-options-elevator input[data-v-9e2e6eca]{font-size:15px}.DataGrid-BOX/deep/.ivu-page-item-active:hover>a[data-v-9e2e6eca],.DataGrid-BOX/deep/.ivu-page-item-active>a[data-v-9e2e6eca]{color:#fff!important}.DataGrid-BOX/deep/.ivu-input[data-v-9e2e6eca]{font-size:15px;border-color:#cee0f0}.DataGrid-BOX/deep/.el-input--small .el-input__inner[data-v-9e2e6eca]:focus,.DataGrid-BOX/deep/.ivu-input[data-v-9e2e6eca]:focus{border-color:#2b5fd9;box-shadow:inset 0 0 0 1000px #fff!important}.DataGrid-BOX/deep/.el-input__inner[data-v-9e2e6eca]{border-color:#cee0f0}.DataGrid-BOX/deep/.ivu-select-item[data-v-9e2e6eca],.DataGrid-BOX/deep/.ivu-select-placeholder[data-v-9e2e6eca],.DataGrid-BOX/deep/.ivu-select-selected-value[data-v-9e2e6eca]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-page-options-elevator[data-v-9e2e6eca]{font-size:15px}.DataGrid-BOX/deep/.el-date-table[data-v-9e2e6eca],.DataGrid-BOX/deep/.el-input[data-v-9e2e6eca]{font-size:15px!important}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-9e2e6eca]::-webkit-scrollbar,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-9e2e6eca]::-webkit-scrollbar{width:10px;height:10px}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-9e2e6eca]::-webkit-scrollbar-thumb,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-9e2e6eca]::-webkit-scrollbar-thumb{border-radius:10px;background:#d3daeb}.DataGrid-BOX/deep/.ivu-table-overflowX[data-v-9e2e6eca]::-webkit-scrollbar-track,.DataGrid-BOX/deep/.ivu-table-overflowY[data-v-9e2e6eca]::-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-9e2e6eca]::-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-9e2e6eca]::-webkit-scrollbar-button{height:2px;width:2px}.DataGrid-BOX/deep/.ivu-table-cell[data-v-9e2e6eca]{padding-left:8px;padding-right:8px}.ivu-btn-info.disabled[data-v-9e2e6eca],.ivu-btn-info[disabled][data-v-9e2e6eca],.ivu-btn-primary.disabled[data-v-9e2e6eca],.ivu-btn-primary[disabled][data-v-9e2e6eca]{color:#c5c8ce;background-color:#f7f7f7!important;border-color:#dcdee2}.DataGrid-BOX .btnBox[data-v-9e2e6eca],.timeTextzhi[data-v-9e2e6eca]{display:flex;justify-content:center}.timeTextzhi[data-v-9e2e6eca]{align-items:center}.data-grid-bsp[data-v-9e2e6eca]{display:flex;justify-content:space-between;flex-wrap:wrap;padding:0 10%;width:120px}.data-grid-bsp/deep/.ivu-btn[data-v-9e2e6eca],.data-grid-bsp/deep/div[data-v-9e2e6eca]{width:100%!important;margin-bottom:5px}.saveBtn-dlsx[data-v-9e2e6eca]{width:55px;font-size:14px;line-height:33px;margin-bottom:5px}.saveBtn-dlsx/deep/span[data-v-9e2e6eca]{margin-left:-4px!important}", ""]);
3074
3077
 
3075
3078
  // exports
3076
3079
 
@@ -3181,7 +3184,17 @@ module.exports = function listToStyles (parentId, list) {
3181
3184
  type: Boolean,
3182
3185
  default: true
3183
3186
  },
3184
- customFunc: false
3187
+ customFunc: false,
3188
+ showFieldsParams: {
3189
+ type: Object,
3190
+ default: function _default() {
3191
+ return {};
3192
+ }
3193
+ },
3194
+ externalHeight: {
3195
+ type: [String, Number],
3196
+ default: null
3197
+ }
3185
3198
  },
3186
3199
  mounted: function mounted() {
3187
3200
  this.initId();
@@ -3205,7 +3218,7 @@ module.exports = function listToStyles (parentId, list) {
3205
3218
  this.dataGridId = this.$route.query.mark;
3206
3219
  } else if (serverConfig['APP_PREFIX'] && serverConfig['APP_PREFIX'] == true && serverConfig['APP_CODE']) {
3207
3220
  if (!this.dataGridId.startsWith(serverConfig['APP_CODE']) && !this.dataGridId.startsWith('bsp:')) {
3208
- this.dataGridId = serverConfig['APP_CODE'] + ":" + this.dataGridId;
3221
+ this.dataGridId = serverConfig['APP_CODE'] + ':' + this.dataGridId;
3209
3222
  }
3210
3223
  }
3211
3224
  },
@@ -3257,6 +3270,36 @@ module.exports = function listToStyles (parentId, list) {
3257
3270
  this.showDicManage = true;
3258
3271
  }
3259
3272
  this.modelShowFields = resp.showFields;
3273
+
3274
+ // 根据showFieldsParams属性过滤showFields
3275
+ if (this.showFieldsParams && resp.showFields) {
3276
+ try {
3277
+ // 解析JSON对象格式的showFieldsParams
3278
+ var fieldConfig = JSON.parse(this.showFieldsParams);
3279
+ // 如果是数组格式的配置
3280
+ if (Array.isArray(fieldConfig)) {
3281
+ // 提取字段名并按orderId排序
3282
+ var sortedFields = fieldConfig.sort(function (a, b) {
3283
+ return (a.orderId || 0) - (b.orderId || 0);
3284
+ }).map(function (item) {
3285
+ return item.fieldName;
3286
+ });
3287
+
3288
+ this.modelShowFields = resp.showFields.filter(function (field) {
3289
+ return sortedFields.includes(field.name);
3290
+ }).sort(function (a, b) {
3291
+ return sortedFields.indexOf(a.name) - sortedFields.indexOf(b.name);
3292
+ });
3293
+ } else {
3294
+ this.modelShowFields = resp.showFields;
3295
+ }
3296
+ } catch (e) {
3297
+ console.error('Failed to parse showFieldsParams:', e);
3298
+ this.modelShowFields = resp.showFields;
3299
+ }
3300
+ } else {
3301
+ this.modelShowFields = resp.showFields;
3302
+ }
3260
3303
  // 查询条件
3261
3304
  if (this.comModel.isSearch && this.comModel.isSearch === '1' && resp.queryFields) {
3262
3305
  if (this.comModelProps.searchType) {
@@ -3343,7 +3386,6 @@ module.exports = function listToStyles (parentId, list) {
3343
3386
  var funcMark = [];
3344
3387
  if (resp.oper && resp.oper.length > 0) {
3345
3388
  resp.oper.forEach(function (item) {
3346
- // debugger
3347
3389
  if (item.attachProps && item.attachProps !== '') {
3348
3390
  var props = JSON.parse(item.attachProps);
3349
3391
  Object.assign(item, props);
@@ -3440,7 +3482,7 @@ module.exports = function listToStyles (parentId, list) {
3440
3482
  _this5.saveCustomReset();
3441
3483
  }
3442
3484
  });
3443
- //resetShowFields
3485
+ // resetShowFields
3444
3486
  },
3445
3487
  handleSubmit: function handleSubmit() {
3446
3488
  var _this6 = this;
@@ -3448,14 +3490,14 @@ module.exports = function listToStyles (parentId, list) {
3448
3490
  var arr = [];
3449
3491
  this.customShowList.forEach(function (item, index) {
3450
3492
  if (item.check) {
3451
- arr.push(item.name + ":1");
3493
+ arr.push(item.name + ':1');
3452
3494
  } else {
3453
- arr.push(item.name + ":0");
3495
+ arr.push(item.name + ':0');
3454
3496
  }
3455
3497
  });
3456
3498
  var params = {
3457
3499
  mark: this.dataGridId,
3458
- fields: arr.join(",").toUpperCase()
3500
+ fields: arr.join(',').toUpperCase()
3459
3501
  };
3460
3502
  this.$store.dispatch('postRequest', {
3461
3503
  url: '/bsp-com/com/datagrid/saveCustomShowFields',
@@ -3484,15 +3526,15 @@ module.exports = function listToStyles (parentId, list) {
3484
3526
  },
3485
3527
  multi_col_sort: function multi_col_sort() {
3486
3528
  this.getCustomFields(this.dataGridId);
3487
- //this.showModal = true
3529
+ // this.showModal = true
3488
3530
  // console.log(this.column, '7777')
3489
3531
  },
3490
3532
  openSetPage: function openSetPage(token) {
3491
3533
  var modelSettingPath = '/#/setting/grid';
3492
- if ('menu' === serverConfig.MODEL_SETTING_TYPE) {
3534
+ if (serverConfig.MODEL_SETTING_TYPE === 'menu') {
3493
3535
  modelSettingPath = '/#/app/public/model';
3494
3536
  }
3495
- var path = (serverConfig['BSP_URL'] ? serverConfig.BSP_URL : '') + modelSettingPath + '?appId=' + this.comModel.appId + '&id=' + this.comModel.id + "&singleSignOnToken=" + token;
3537
+ var path = (serverConfig['BSP_URL'] ? serverConfig.BSP_URL : '') + modelSettingPath + '?appId=' + this.comModel.appId + '&id=' + this.comModel.id + '&singleSignOnToken=' + token;
3496
3538
  window.open(path);
3497
3539
  },
3498
3540
  openDicManage: function openDicManage() {
@@ -3737,11 +3779,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
3737
3779
  });
3738
3780
  window.open(clickUrl);
3739
3781
  }
3740
- console.log('onRowdblclick111', row, index);
3782
+ //console.log('onRowdblclick111', row, index)
3741
3783
  this.$emit('onRowdblclick', row, index);
3742
3784
  },
3743
3785
  on_row_click: function on_row_click(row, index) {
3744
- console.log('onRowdblclick2222', row, index);
3786
+ //console.log('onRowdblclick2222', row, index)
3745
3787
  this.$emit('onRowClick', row, index);
3746
3788
  },
3747
3789
  cal_show_field_wdith: function cal_show_field_wdith(col) {
@@ -4709,7 +4751,9 @@ runtime.o = o;
4709
4751
  }).then(function (resp) {
4710
4752
  if (resp.success) {
4711
4753
  var user = _this2.$store.getters.sessionUser;
4712
- var obj = { userId: user.userId };
4754
+ var obj = {
4755
+ userId: user.userId
4756
+ };
4713
4757
  if (resp.queryFields && resp.queryFields.length > 0) {
4714
4758
  resp.queryFields.forEach(function (item) {
4715
4759
  if (item.name != 'MODELID' && item.defaultValue.indexOf('{{:=req') > 0) {
@@ -4833,6 +4877,7 @@ runtime.o = o;
4833
4877
  windowOpen: function windowOpen(url, oper) {
4834
4878
  // 遮罩对话框
4835
4879
  if (oper.openMode === '0') {
4880
+ // 弹窗
4836
4881
  var width = oper.pageWidth;
4837
4882
  var height = oper.pageHeight;
4838
4883
  if (width && Number(width) >= 0) {
@@ -4846,15 +4891,13 @@ runtime.o = o;
4846
4891
  this.modalId = oper.mark;
4847
4892
  this.iframeComponent = 'iframeComponent';
4848
4893
  this.modalStatus = true;
4849
- }
4850
- //新窗口
4851
- else if (oper.openMode === '1') {
4852
- window.open(url, '_blank');
4853
- }
4894
+ } else if (oper.openMode === '1') {
4895
+ // 新窗口
4896
+ window.open(url, '_blank');
4897
+ } else if (oper.openMode === '2') {
4854
4898
  //本窗口
4855
- else if (oper.openMode === '2') {
4856
- window.open(url, '_self');
4857
- }
4899
+ window.open(url, '_self');
4900
+ }
4858
4901
  },
4859
4902
  closeModal: function closeModal() {
4860
4903
  this.modalStatus = false;
@@ -16393,7 +16436,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
16393
16436
 
16394
16437
  "use strict";
16395
16438
  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(" "),(_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\t\t\t\t\t\t\t")],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\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(" "),(_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\t\t\t\t\t\t\t")],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)+"\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',{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\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 :
16396
- 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.dataGridHeight ? _vm.dataGridHeight : 440,"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){
16439
+ 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){
16397
16440
  var row = ref.row;
16398
16441
  var index = ref.index;
16399
16442
  return [_vm._t('slot_' + sc.slot,null,{"row":row,"index":index})]}}}),{key:"action",fn:function(ref){