centaline-data-driven 1.6.56 → 1.6.57

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.6.56",
3
+ "version": "1.6.57",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,14 @@
1
+ # v1.6.57
2
+ 2025-11-07
3
+
4
+ 优化
5
+
6
+ ActionType添加执行客户端函数ExcuteClientFunction
7
+
8
+ BUG
9
+
10
+ 列表关闭右侧会出现滚动条处理
11
+
1
12
  # v1.6.56
2
13
  2025-10-24
3
14
 
@@ -33,6 +33,7 @@
33
33
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customerquery/publiccustcalltaskreferrallist/getLayoutOfSearch'" :searchDataApi="'/customerquery/publiccustcalltaskreferrallist/getList'"></ct-searchlist> -->
34
34
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist> -->
35
35
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist> -->
36
+ <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/squareuploadlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/squareuploadlist/getList'"></ct-searchlist>
36
37
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/commissionquery/properformanceszjjbreport/getLayoutOfSearch'" :searchDataApi="'/commissionquery/properformanceszjjbreport/getList'"></ct-searchlist> -->
37
38
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/employeelist/getLayoutOfSearch'" :searchDataApi="'/employeelist/getList'"></ct-searchlist> -->
38
39
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/estatemanage/estatlist/getLayoutOfSearch'" :searchDataApi="'/estatemanage/estatlist/getList'"></ct-searchlist> -->
@@ -125,7 +126,7 @@
125
126
  <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/TrainingAllowanceTotalList/getLayoutOfSearch'" :searchDataApi="'/TrainingAllowanceTotalList/getListOfSearchModel'"></ct-searchlist> -->
126
127
 
127
128
  <!-- ibs -->
128
- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/EmployeeWorkLogList/ind/getLayoutOfSearch'" :searchDataApi="'/EmployeeWorkLogList/ind/getListOfSearchModel'"></ct-searchlist>
129
+ <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/EmployeeWorkLogList/ind/getLayoutOfSearch'" :searchDataApi="'/EmployeeWorkLogList/ind/getListOfSearchModel'"></ct-searchlist> -->
129
130
  <ct-dialog-list></ct-dialog-list>
130
131
  </div>
131
132
  </template>
@@ -140,7 +141,7 @@
140
141
  // appRootUrl:'http://10.88.22.13:6060/onecard-api/',
141
142
  appRootUrl:'',
142
143
  para:{
143
- "type":"left"
144
+
144
145
  },
145
146
  }
146
147
  },
@@ -143,7 +143,7 @@
143
143
  var dropdown = self.$refs["pop"];
144
144
  this.unwatch1=self.$watch('model.options', function (newVal, oldVal) {
145
145
  self.$nextTick(() => {
146
- if (typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
146
+ if (dropdown && typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
147
147
  dropdown.popperJS.destroy();
148
148
  dropdown.popperJS = null;
149
149
  dropdown.updatePopper();
@@ -25,6 +25,7 @@
25
25
  :style="{'height': pageHeight? pageHeight:'100%','width':sideBarWidth+'px',right:sideBarRight+'px'}"
26
26
  class="sidebar">
27
27
  <ct-Detail ref="detail" :api="sideBarApi" :apiParam="sideBarApiParam" :pageType="sideBarPageType"
28
+ :style="{'display': sideBarWidth && sideBarWidth>0 ?'block':'none'}"
28
29
  :searchConditionApi="sideBarSearchConditionApi" :searchStatsApi="sideBarSearchStatsApi" :searchDataApi="sideBarSearchDataApi" :listHeight="listHeight"
29
30
  :selectIndex="selectIndex" :rowCount="rowCount" :key="detailKey" :drowerClose="drowerClose"
30
31
  @clickNextHandler="clickNextHandler" @clickPrevHandler="clickPrevHandler" @simpleRouterclickHandler="simpleRouterclickHandler"
@@ -1541,7 +1541,7 @@ export default {
1541
1541
  }
1542
1542
  }
1543
1543
  }
1544
- else if (field.isFormPageInSideBar || field.isSearchPageInSideBar) {
1544
+ else if (field.isFormPageInSideBar || field.isSearchPageInSideBar) {
1545
1545
  self.model.flagSideBar = true;
1546
1546
  self.model.flagDefaultDisplaySideBar = true;
1547
1547
  field.actionSource = field.isFormPageInSideBar ? 'Form':'SearchList';
@@ -144,7 +144,7 @@
144
144
  var dropdown = self.$refs["pop"];
145
145
  this.unwatch=self.$watch('model.options', function (newVal, oldVal) {
146
146
  self.$nextTick(() => {
147
- if (typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
147
+ if (dropdown && typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
148
148
  dropdown.popperJS.destroy();
149
149
  dropdown.popperJS = null;
150
150
  dropdown.updatePopper();
@@ -6,7 +6,7 @@
6
6
  :screenPara="screenPara"
7
7
  @search="search"
8
8
  @clickHandler="rolRouterClickHandler"
9
- @loaded="screenload"
9
+ @loaded="screenload" style="padding-left: 11px;"
10
10
  ></ct-searchtreescreen>
11
11
  <ct-tree
12
12
  ref="tree"
@@ -102,7 +102,7 @@ const Router = function (source) {
102
102
  return source.pageStyle === Enum.PageStyle.BrowserNewTab;
103
103
  },
104
104
  get isClientFuntion() {
105
- return source.pageStyle === Enum.PageStyle.ClientFunction;
105
+ return source.pageStyle === Enum.PageStyle.ClientFunction || source.actionType === Enum.ActionType.ExcuteClientFunction;
106
106
  },
107
107
  get isSearchPageWithList() {
108
108
  return source.pageStyle === Enum.PageStyle.SearchPageWithList;
@@ -483,6 +483,11 @@ const Enum = {
483
483
  /// </summary>
484
484
  UpdateColumns: 24,
485
485
 
486
+ /**
487
+ * 执行客户端函数
488
+ */
489
+ ExcuteClientFunction:27,
490
+
486
491
  /**
487
492
  * 打开百度地图
488
493
  */
package/src/main.js CHANGED
@@ -17,13 +17,13 @@ Vue.use(centaline, {
17
17
  // baseUrl: "http://10.88.22.46:17070/max-uplink-api/",
18
18
  // baseUrl: "http://10.88.22.46:9004/max-uplink-api/",
19
19
  // baseUrl: "http://10.88.22.46:6060/onecard-api/",
20
- // baseUrl: "http://10.88.22.46:9999/service-api/",
20
+ baseUrl: "http://10.88.22.46:9999/service-api/",
21
21
  // baseUrl: "http://10.88.22.46:22324/service-api/v1/form/router",
22
22
  // baseUrl: "http://10.25.10.67:8999/service-api/v1/form/router",
23
23
  // baseUrl: "http://10.88.22.13:17070/max-uplink-api/",
24
24
  // baseUrl: "http://10.88.22.13:9004/max-uplink-api/",
25
25
  // baseUrl:"http://szamaxbusiness-api-test2.centaline.com.cn/max-uplink-api/",
26
- baseUrl: "http://10.88.22.13:7070/onecard-api/",
26
+ // baseUrl: "http://10.88.22.13:7070/onecard-api/",
27
27
  // baseUrl: "http://10.6.1.163:9000/max-uplink-api/v1/form/router",
28
28
  // baseUrl: "http://10.28.21.164:9004/max-uplink-api/",
29
29
  // baseUrl: "http://10.25.10.63:9999/service-api/",
@@ -77,8 +77,8 @@ Vue.use(centaline, {
77
77
  estateId: '',
78
78
  appinfo:'{"appId":"8F184E91-2C73-45E3-B518-889491E07CDA","appName":"%E6%95%B0%E6%8D%AE%E9%A9%B1%E5%8A%A8%E7%AE%A1%E7%90%86%E5%90%8E%E5%8F%B0"}',
79
79
 
80
- authObject: '{"currentEstate":{"estateId":"241112160400DF3DC1EB63A14A1DBBF4","estateName":"%E6%B5%8B%E8%AF%95%E6%8C%89%E7%82%B9%E4%BD%8Dhq","estDeptPath":"001.200.063.001"},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"IxHKFp","time":1760949136314,"sign":"442f7230d007ce24777be666b6db5c68","systemSource":"CCESU","empNo":"hqxtgl","empId":"2411121446336B97FBEB7FD54905A903","clientVersion":"12.5","empName":"hq%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86","roleName":"%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86%E5%91%98","deptFullName":"%E6%9C%AA%E5%8C%B9%E9%85%8DCCHR%E4%B8%ADHROC%E9%83%A8%E9%97%A8%2F%E9%9B%86%E5%9B%A2IT%2FCCES%E7%BB%84"}',
81
- AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjgyZjY5NDc0LTFlMzItNGRlYi05NDQxLWQ2MTNmZWZkMDJmMiJ9.T3fOcvd3JU9hdNeZBSgMycgY7oRFr4Fj2Fof3AUevbyPgwJ3-xgnxDq9Bjq70q0gkk_pmonV0W52HHrSx7AjQA',
80
+ authObject: '{"currentEstate":{"estateId":"241113105409757BFF2887A7472E99D2","estateName":"U%E7%89%88%E6%A5%BC%E7%9B%98%E6%8C%89%E7%82%B9%E4%BD%8D","estDeptPath":"001.200.063.001"},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"aRYECc","time":1762502469262,"sign":"3619227d847afa9c7dad6788b4b069d0","systemSource":"CCESU","empNo":"hqxtgl","empId":"2411121446336B97FBEB7FD54905A903","clientVersion":"12.5","empName":"hq%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86","roleName":"%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86%E5%91%98","deptFullName":"%E6%9C%AA%E5%8C%B9%E9%85%8DCCHR%E4%B8%ADHROC%E9%83%A8%E9%97%A8%2F%E9%9B%86%E5%9B%A2IT%2FCCES%E7%BB%84"}',
81
+ AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjdjMTVhNjcyLTI1OTAtNDJjOS05ZGY4LTlhMWZjOGU3NTc3NyJ9.l5OQ1vse_HTJrmceicNHas9HLyaLcyMHtoYqO8fQOqb8bmjMHoKlutaIjSIk_etQnWi85iF4JJh-ll2fwdkp-A',
82
82
  };
83
83
  },
84
84
  // 请求完成事件,可判断是否登录过期执行响应操作
@@ -8423,6 +8423,11 @@ var Enum = {
8423
8423
  /// </summary>
8424
8424
  UpdateColumns: 24,
8425
8425
 
8426
+ /**
8427
+ * 执行客户端函数
8428
+ */
8429
+ ExcuteClientFunction: 27,
8430
+
8426
8431
  /**
8427
8432
  * 打开百度地图
8428
8433
  */
@@ -9274,7 +9279,7 @@ var Router = function Router(source) {
9274
9279
  return source.pageStyle === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].PageStyle.BrowserNewTab;
9275
9280
  },
9276
9281
  get isClientFuntion() {
9277
- return source.pageStyle === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].PageStyle.ClientFunction;
9282
+ return source.pageStyle === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].PageStyle.ClientFunction || source.actionType === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].ActionType.ExcuteClientFunction;
9278
9283
  },
9279
9284
  get isSearchPageWithList() {
9280
9285
  return source.pageStyle === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].PageStyle.SearchPageWithList;
@@ -11302,7 +11307,7 @@ exports.default = _assign2.default || function (target) {
11302
11307
  "use strict";
11303
11308
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__ = __webpack_require__(156);
11304
11309
  /* unused harmony namespace reexport */
11305
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_dbea3a7e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(644);
11310
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_deaa955c_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(644);
11306
11311
  function injectStyle (ssrContext) {
11307
11312
  __webpack_require__(525)
11308
11313
  }
@@ -11317,12 +11322,12 @@ var __vue_template_functional__ = false
11317
11322
  /* styles */
11318
11323
  var __vue_styles__ = injectStyle
11319
11324
  /* scopeId */
11320
- var __vue_scopeId__ = "data-v-dbea3a7e"
11325
+ var __vue_scopeId__ = "data-v-deaa955c"
11321
11326
  /* moduleIdentifier (server only) */
11322
11327
  var __vue_module_identifier__ = null
11323
11328
  var Component = normalizeComponent(
11324
11329
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__["a" /* default */],
11325
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_dbea3a7e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
11330
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_deaa955c_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
11326
11331
  __vue_template_functional__,
11327
11332
  __vue_styles__,
11328
11333
  __vue_scopeId__,
@@ -19259,6 +19264,7 @@ exports.f = __webpack_require__(29) ? gOPD : function getOwnPropertyDescriptor(O
19259
19264
  //
19260
19265
  //
19261
19266
  //
19267
+ //
19262
19268
 
19263
19269
 
19264
19270
 
@@ -20898,7 +20904,7 @@ exports.f = __webpack_require__(29) ? gOPD : function getOwnPropertyDescriptor(O
20898
20904
  "use strict";
20899
20905
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__ = __webpack_require__(161);
20900
20906
  /* unused harmony namespace reexport */
20901
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ce896626_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(580);
20907
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_fbec8126_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(580);
20902
20908
  function injectStyle (ssrContext) {
20903
20909
  __webpack_require__(542)
20904
20910
  }
@@ -20918,7 +20924,7 @@ var __vue_scopeId__ = null
20918
20924
  var __vue_module_identifier__ = null
20919
20925
  var Component = normalizeComponent(
20920
20926
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__["a" /* default */],
20921
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ce896626_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
20927
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_fbec8126_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
20922
20928
  __vue_template_functional__,
20923
20929
  __vue_styles__,
20924
20930
  __vue_scopeId__,
@@ -66076,7 +66082,7 @@ var AppContainer = function AppContainer(source, apiParam, callBack) {
66076
66082
  var _this2 = this;
66077
66083
 
66078
66084
  self.$nextTick(function () {
66079
- if (typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
66085
+ if (dropdown && typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
66080
66086
  dropdown.popperJS.destroy();
66081
66087
  dropdown.popperJS = null;
66082
66088
  dropdown.updatePopper();
@@ -69127,7 +69133,7 @@ var ctSpan = {
69127
69133
  var dropdown = self.$refs["pop"];
69128
69134
  this.unwatch = self.$watch('model.options', function (newVal, oldVal) {
69129
69135
  self.$nextTick(function () {
69130
- if (typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
69136
+ if (dropdown && typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
69131
69137
  dropdown.popperJS.destroy();
69132
69138
  dropdown.popperJS = null;
69133
69139
  dropdown.updatePopper();
@@ -78038,7 +78044,7 @@ var content = __webpack_require__(526);
78038
78044
  if(typeof content === 'string') content = [[module.i, content, '']];
78039
78045
  if(content.locals) module.exports = content.locals;
78040
78046
  // add the styles to the DOM
78041
- var update = __webpack_require__(3)("c46bb2d0", content, true, {});
78047
+ var update = __webpack_require__(3)("76ca2826", content, true, {});
78042
78048
 
78043
78049
  /***/ }),
78044
78050
  /* 526 */
@@ -78049,7 +78055,7 @@ exports = module.exports = __webpack_require__(2)(false);
78049
78055
 
78050
78056
 
78051
78057
  // module
78052
- exports.push([module.i, ".sidebar[data-v-dbea3a7e]{z-index:1000;top:-1px;bottom:-1px;padding:0;width:auto;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-box-shadow:0 6px 12px rgba(0,0,0,.18);box-shadow:0 6px 12px rgba(0,0,0,.18)}", ""]);
78058
+ exports.push([module.i, ".sidebar[data-v-deaa955c]{z-index:1000;top:-1px;bottom:-1px;padding:0;width:auto;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-box-shadow:0 6px 12px rgba(0,0,0,.18);box-shadow:0 6px 12px rgba(0,0,0,.18)}", ""]);
78053
78059
 
78054
78060
  // exports
78055
78061
 
@@ -79046,7 +79052,7 @@ var content = __webpack_require__(543);
79046
79052
  if(typeof content === 'string') content = [[module.i, content, '']];
79047
79053
  if(content.locals) module.exports = content.locals;
79048
79054
  // add the styles to the DOM
79049
- var update = __webpack_require__(3)("b62dbcde", content, true, {});
79055
+ var update = __webpack_require__(3)("1b8c5b81", content, true, {});
79050
79056
 
79051
79057
  /***/ }),
79052
79058
  /* 543 */
@@ -80872,7 +80878,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
80872
80878
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
80873
80879
 
80874
80880
  "use strict";
80875
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.flagShow)?_c('div',{ref:"main",class:{'domDisabled':_vm.pageDisabled},staticStyle:{"width":"100%","height":"100%","display":"flex"}},[_c('div',{staticClass:"ct-search-list",style:({'height': _vm.pageHeightReal? _vm.pageHeightReal:'100%','width':_vm.searchWidth?_vm.searchWidth+'px':'100%'})},[(typeof _vm.title !== 'undefined' && _vm.showTitle)?_c('div',{staticClass:"clearfix",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-weight":"bold"}},[_vm._v(_vm._s(_vm.title))])]):_vm._e(),_vm._v(" "),(_vm.searchCategoryApi)?_c('ct-searchcategory',{ref:"category",attrs:{"api":_vm.searchCategoryApi},on:{"loadedCategory":_vm.categoryLoaded,"loadedCategoryError":_vm.categoryLoadedError,"changeCategory":_vm.categorychange}}):_vm._e(),_vm._v(" "),_c('ct-searchscreen',{key:_vm.reloadKeyScreen,ref:"screen",attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.screenPara,"categoryLoaded":_vm.loaded.categoryLoaded},on:{"loaded":_vm.screenLoaded,"resetSearch":function($event){_vm.resetSearch()},"search":function($event){_vm.search()},"saveShortcut":_vm.saveShortcut,"showTitle":_vm.showTitleScreenHandler}}),_vm._v(" "),_c('ct-searchtable',{key:_vm.reloadKeyTable,ref:"table",attrs:{"api":_vm.searchDataApi,"searchStatsApi":_vm.searchStatsApi,"from":_vm.from,"isIframe":_vm.isIframe,"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth,"flagPopupSearchlist":_vm.flagPopupSearchlist,"screenTop":_vm.screenTop,"flagAppMode":_vm.flagAppMode,"dragStartItem":_vm.dragStartItem,"dragStartName":_vm.dragStartName},on:{"loaded":_vm.tableLoaded,"toolbarClick":_vm.toolbarClickHandler,"refreshParent":_vm.refreshParentHandler,"searchComplate":_vm.searchComplate,"closeSideBar":_vm.closeSideBar,"rowClickHandle":_vm.rowClickHandle,"scrollHandle":_vm.scrollHandle,"refreshRowHandle":_vm.refreshRowHandle,"doClosePopoverHandle":_vm.doClosePopoverHandle,"showTitle":_vm.showTitleHandler,"popupClickHandler":_vm.popupClickHandler,"simpleRouterRefreshHandler":_vm.simpleRouterRefreshHandler,"loadedError":_vm.tableLoadedError,"drop":_vm.drop,"openSideBarHandler":_vm.openSideBarHandler,"closeSideBarHandler":_vm.closeSideBarHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"initSideBar":_vm.initSideBar}})],1),_vm._v(" "),(_vm.flagSideBar && _vm.flagSideBarOfData)?_c('div',{ref:"sidebar",staticClass:"sidebar",style:({'height': _vm.pageHeight? _vm.pageHeight:'100%','width':_vm.sideBarWidth+'px',right:_vm.sideBarRight+'px'})},[_c('ct-Detail',{key:_vm.detailKey,ref:"detail",attrs:{"api":_vm.sideBarApi,"apiParam":_vm.sideBarApiParam,"pageType":_vm.sideBarPageType,"searchConditionApi":_vm.sideBarSearchConditionApi,"searchStatsApi":_vm.sideBarSearchStatsApi,"searchDataApi":_vm.sideBarSearchDataApi,"listHeight":_vm.listHeight,"selectIndex":_vm.selectIndex,"rowCount":_vm.rowCount,"drowerClose":_vm.drowerClose},on:{"clickNextHandler":_vm.clickNextHandler,"clickPrevHandler":_vm.clickPrevHandler,"simpleRouterclickHandler":_vm.simpleRouterclickHandler,"closeSideHandler":_vm.closeSideHandler,"submit":_vm.submitHandler}}),_vm._v(" "),_c('ct-SearchSideMenu',{ref:"sideMenu",attrs:{"sideBarMenuRight":_vm.sideBarMenuRight,"sideBarStatus":_vm.sideBarStatus},on:{"sideMenuClickHandler":_vm.sideMenuClickHandler}})],1):_vm._e()]):_vm._e()}
80881
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.flagShow)?_c('div',{ref:"main",class:{'domDisabled':_vm.pageDisabled},staticStyle:{"width":"100%","height":"100%","display":"flex"}},[_c('div',{staticClass:"ct-search-list",style:({'height': _vm.pageHeightReal? _vm.pageHeightReal:'100%','width':_vm.searchWidth?_vm.searchWidth+'px':'100%'})},[(typeof _vm.title !== 'undefined' && _vm.showTitle)?_c('div',{staticClass:"clearfix",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-weight":"bold"}},[_vm._v(_vm._s(_vm.title))])]):_vm._e(),_vm._v(" "),(_vm.searchCategoryApi)?_c('ct-searchcategory',{ref:"category",attrs:{"api":_vm.searchCategoryApi},on:{"loadedCategory":_vm.categoryLoaded,"loadedCategoryError":_vm.categoryLoadedError,"changeCategory":_vm.categorychange}}):_vm._e(),_vm._v(" "),_c('ct-searchscreen',{key:_vm.reloadKeyScreen,ref:"screen",attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.screenPara,"categoryLoaded":_vm.loaded.categoryLoaded},on:{"loaded":_vm.screenLoaded,"resetSearch":function($event){_vm.resetSearch()},"search":function($event){_vm.search()},"saveShortcut":_vm.saveShortcut,"showTitle":_vm.showTitleScreenHandler}}),_vm._v(" "),_c('ct-searchtable',{key:_vm.reloadKeyTable,ref:"table",attrs:{"api":_vm.searchDataApi,"searchStatsApi":_vm.searchStatsApi,"from":_vm.from,"isIframe":_vm.isIframe,"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth,"flagPopupSearchlist":_vm.flagPopupSearchlist,"screenTop":_vm.screenTop,"flagAppMode":_vm.flagAppMode,"dragStartItem":_vm.dragStartItem,"dragStartName":_vm.dragStartName},on:{"loaded":_vm.tableLoaded,"toolbarClick":_vm.toolbarClickHandler,"refreshParent":_vm.refreshParentHandler,"searchComplate":_vm.searchComplate,"closeSideBar":_vm.closeSideBar,"rowClickHandle":_vm.rowClickHandle,"scrollHandle":_vm.scrollHandle,"refreshRowHandle":_vm.refreshRowHandle,"doClosePopoverHandle":_vm.doClosePopoverHandle,"showTitle":_vm.showTitleHandler,"popupClickHandler":_vm.popupClickHandler,"simpleRouterRefreshHandler":_vm.simpleRouterRefreshHandler,"loadedError":_vm.tableLoadedError,"drop":_vm.drop,"openSideBarHandler":_vm.openSideBarHandler,"closeSideBarHandler":_vm.closeSideBarHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"initSideBar":_vm.initSideBar}})],1),_vm._v(" "),(_vm.flagSideBar && _vm.flagSideBarOfData)?_c('div',{ref:"sidebar",staticClass:"sidebar",style:({'height': _vm.pageHeight? _vm.pageHeight:'100%','width':_vm.sideBarWidth+'px',right:_vm.sideBarRight+'px'})},[_c('ct-Detail',{key:_vm.detailKey,ref:"detail",style:({'display': _vm.sideBarWidth && _vm.sideBarWidth>0 ?'block':'none'}),attrs:{"api":_vm.sideBarApi,"apiParam":_vm.sideBarApiParam,"pageType":_vm.sideBarPageType,"searchConditionApi":_vm.sideBarSearchConditionApi,"searchStatsApi":_vm.sideBarSearchStatsApi,"searchDataApi":_vm.sideBarSearchDataApi,"listHeight":_vm.listHeight,"selectIndex":_vm.selectIndex,"rowCount":_vm.rowCount,"drowerClose":_vm.drowerClose},on:{"clickNextHandler":_vm.clickNextHandler,"clickPrevHandler":_vm.clickPrevHandler,"simpleRouterclickHandler":_vm.simpleRouterclickHandler,"closeSideHandler":_vm.closeSideHandler,"submit":_vm.submitHandler}}),_vm._v(" "),_c('ct-SearchSideMenu',{ref:"sideMenu",attrs:{"sideBarMenuRight":_vm.sideBarMenuRight,"sideBarStatus":_vm.sideBarStatus},on:{"sideMenuClickHandler":_vm.sideMenuClickHandler}})],1):_vm._e()]):_vm._e()}
80876
80882
  var staticRenderFns = []
80877
80883
  var esExports = { render: render, staticRenderFns: staticRenderFns }
80878
80884
  /* harmony default export */ __webpack_exports__["a"] = (esExports);
@@ -87918,7 +87924,7 @@ if (typeof window !== 'undefined' && window.Vue) {
87918
87924
  "use strict";
87919
87925
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicMo_vue__ = __webpack_require__(404);
87920
87926
  /* unused harmony namespace reexport */
87921
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_e87ad84a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicMo_vue__ = __webpack_require__(806);
87927
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6edb0fac_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicMo_vue__ = __webpack_require__(806);
87922
87928
  function injectStyle (ssrContext) {
87923
87929
  __webpack_require__(804)
87924
87930
  }
@@ -87938,7 +87944,7 @@ var __vue_scopeId__ = null
87938
87944
  var __vue_module_identifier__ = null
87939
87945
  var Component = normalizeComponent(
87940
87946
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicMo_vue__["a" /* default */],
87941
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_e87ad84a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicMo_vue__["a" /* default */],
87947
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6edb0fac_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicMo_vue__["a" /* default */],
87942
87948
  __vue_template_functional__,
87943
87949
  __vue_styles__,
87944
87950
  __vue_scopeId__,
@@ -87959,7 +87965,7 @@ var content = __webpack_require__(805);
87959
87965
  if(typeof content === 'string') content = [[module.i, content, '']];
87960
87966
  if(content.locals) module.exports = content.locals;
87961
87967
  // add the styles to the DOM
87962
- var update = __webpack_require__(3)("79f34746", content, true, {});
87968
+ var update = __webpack_require__(3)("adbd7866", content, true, {});
87963
87969
 
87964
87970
  /***/ }),
87965
87971
  /* 805 */
@@ -89230,7 +89236,7 @@ if (typeof window !== 'undefined' && window.Vue) {
89230
89236
  "use strict";
89231
89237
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSosTt_vue__ = __webpack_require__(418);
89232
89238
  /* unused harmony namespace reexport */
89233
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_8603fda2_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSosTt_vue__ = __webpack_require__(880);
89239
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_32c85800_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSosTt_vue__ = __webpack_require__(880);
89234
89240
  function injectStyle (ssrContext) {
89235
89241
  __webpack_require__(878)
89236
89242
  }
@@ -89250,7 +89256,7 @@ var __vue_scopeId__ = null
89250
89256
  var __vue_module_identifier__ = null
89251
89257
  var Component = normalizeComponent(
89252
89258
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSosTt_vue__["a" /* default */],
89253
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_8603fda2_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSosTt_vue__["a" /* default */],
89259
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_32c85800_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSosTt_vue__["a" /* default */],
89254
89260
  __vue_template_functional__,
89255
89261
  __vue_styles__,
89256
89262
  __vue_scopeId__,
@@ -89271,7 +89277,7 @@ var content = __webpack_require__(879);
89271
89277
  if(typeof content === 'string') content = [[module.i, content, '']];
89272
89278
  if(content.locals) module.exports = content.locals;
89273
89279
  // add the styles to the DOM
89274
- var update = __webpack_require__(3)("302db611", content, true, {});
89280
+ var update = __webpack_require__(3)("ac0edaac", content, true, {});
89275
89281
 
89276
89282
  /***/ }),
89277
89283
  /* 879 */
@@ -89835,7 +89841,7 @@ if (typeof window !== 'undefined' && window.Vue) {
89835
89841
  "use strict";
89836
89842
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__ = __webpack_require__(425);
89837
89843
  /* unused harmony namespace reexport */
89838
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_60f9b5c4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__ = __webpack_require__(915);
89844
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f25bff68_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__ = __webpack_require__(915);
89839
89845
  var normalizeComponent = __webpack_require__(1)
89840
89846
  /* script */
89841
89847
 
@@ -89852,7 +89858,7 @@ var __vue_scopeId__ = null
89852
89858
  var __vue_module_identifier__ = null
89853
89859
  var Component = normalizeComponent(
89854
89860
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__["a" /* default */],
89855
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_60f9b5c4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__["a" /* default */],
89861
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f25bff68_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__["a" /* default */],
89856
89862
  __vue_template_functional__,
89857
89863
  __vue_styles__,
89858
89864
  __vue_scopeId__,
@@ -89954,7 +89960,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
89954
89960
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
89955
89961
 
89956
89962
  "use strict";
89957
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('ct-searchtreescreen',{ref:"treescreen",attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.screenPara},on:{"search":_vm.search,"clickHandler":_vm.rolRouterClickHandler,"loaded":_vm.screenload}}),_vm._v(" "),_c('ct-tree',{ref:"tree",style:({ height: _vm.treeHeight + 'px' }),attrs:{"api":_vm.searchDataApi},on:{"loaded":_vm.loaded}})],1)}
89963
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('ct-searchtreescreen',{ref:"treescreen",staticStyle:{"padding-left":"11px"},attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.screenPara},on:{"search":_vm.search,"clickHandler":_vm.rolRouterClickHandler,"loaded":_vm.screenload}}),_vm._v(" "),_c('ct-tree',{ref:"tree",style:({ height: _vm.treeHeight + 'px' }),attrs:{"api":_vm.searchDataApi},on:{"loaded":_vm.loaded}})],1)}
89958
89964
  var staticRenderFns = []
89959
89965
  var esExports = { render: render, staticRenderFns: staticRenderFns }
89960
89966
  /* harmony default export */ __webpack_exports__["a"] = (esExports);