centaline-data-driven 1.5.81 → 1.5.83

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.5.81",
3
+ "version": "1.5.83",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,16 @@
1
+ # v1.5.83
2
+ 2023-11-30
3
+ 优化
4
+ 列表计算高度,自定义页面需减去TOP值时,from为hasTop
5
+
6
+ 时间插件change事件修复
7
+
8
+ # v1.5.82
9
+ 2023-11-28
10
+ 优化
11
+ 树组件高度计算优化,边框线去掉
12
+
13
+
1
14
  # v1.5.81
2
15
  2023-11-28
3
16
  优化
package/src/Form.vue CHANGED
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div id="form-app" class="data-driven" style="width:100%;height:100%;overflow:auto">
3
3
  <!-- <ct-form :source="formdata.content" :apiParam="apiParam"></ct-form> -->
4
- <ct-form :api="'/salemanage/ContractByPoint/readDetail'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
4
+ <ct-form :api="'/service-api/salemanage/ContractByPoint/readDetail'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
5
5
  <ct-dialog-list></ct-dialog-list>
6
6
  </div>
7
7
  </template>
@@ -12,7 +12,7 @@
12
12
  data() {
13
13
  return {
14
14
  apiParam:{
15
- "commissionMode":2,"contractId":"231120113744BAFD48D1D476422E8FAD","propertyId":"23111716432930CDE3FCA10A4EAE863F","searchFields":{"fields":[{"fieldName1":"CompanyPath","groupName":"CompanyPath","operation":1,"searchDataType":1,"searchValue1":"009"},{"fieldName1":"EmpID","groupName":"EmpID","operation":1,"searchDataType":1,"searchValue1":"202110201430497BB5FE89123A054CCA"},{"fieldName1":"DeptPath","groupName":"DeptPath","operation":1,"searchDataType":1,"searchValue1":"009.108"},{"fieldName1":"type","groupName":"type","operation":1,"searchDataType":1,"searchValue1":"left"},{"fieldName1":"EstateID","groupName":"EstateID","operation":2,"searchDataType":3,"searchValue1":"20210729104021C49F04B55C50F6AF58"}]},"actionType":3
15
+ "estateId":"23112217144782E4C3D5F8164CB2AE3E","propertyId":"2311221734023A5414C450CA4B9CA072","actionType":2,"commissionMode":"2"
16
16
  },
17
17
  topHeight:10,
18
18
  }
@@ -107,7 +107,7 @@
107
107
 
108
108
  <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/HolidayTypeList/getLayoutOfSearch'" :searchDataApi="'/HolidayTypeList/getListOfSearchModel'"></ct-searchlist> -->
109
109
 
110
- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/SystemLogList/getLayoutOfSearch'" :searchDataApi="'/SystemLogList/getListOfSearchModel'"></ct-searchlist>
110
+ <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/SystemLogList/getLayoutOfSearch'" :searchDataApi="'/SystemLogList/getListOfSearchModel'"></ct-searchlist>
111
111
 
112
112
 
113
113
  <ct-dialog-list></ct-dialog-list>
@@ -6,7 +6,7 @@
6
6
  {{model.label}}
7
7
  </div>
8
8
  <el-date-picker :class="[model.showLabel?'ct-date-editor':'']" v-model="model.value" v-bind="model.attrs"
9
- @input="inputHandler($event)" @change="changeHandler($event)" @blur="dateBlur"
9
+ @input="inputHandler($event)" @change="change($event)" @blur="dateBlur"
10
10
  :picker-options="pickerOptions" :disabled="model.lock">
11
11
  </el-date-picker>
12
12
  </div>
@@ -38,8 +38,9 @@
38
38
  isAutoSearch(){
39
39
  if(this.model.autoSearch) this.$emit('click');
40
40
  },
41
- changeHandler(){
42
- this.isAutoSearch()
41
+ change(){
42
+ this.changeHandler(this.model.value);
43
+ this.isAutoSearch()
43
44
  },
44
45
  getPickerOptions() {
45
46
  let self = this
@@ -775,11 +775,14 @@ export default {
775
775
  if (this.$refs.searchTable && this.$refs.toolbar &&
776
776
  this.$refs.searchTable.parentElement && !self.isLayout) {
777
777
  var h1 = this.$refs.searchTable.parentElement.offsetHeight | 0;
778
- var h1top = this.$refs.searchTable.parentElement.offsetTop| 0;
778
+ var h1top = 0;
779
779
  var h2 = this.$refs.searchTable.offsetTop | 0;
780
780
  if(this.from && this.from=='detail'){
781
781
  h2=h2-this.screenTop - 13;
782
782
  }
783
+ if(this.from && this.from=='hasTop'){
784
+ h1top=this.$refs.searchTable.parentElement.offsetTop| 0;
785
+ }
783
786
  var h3 = this.$refs.toolbar.$el.offsetHeight | 0;
784
787
  var h4 = this.$refs.footer.$el.offsetHeight | 0;
785
788
  var h5 = this.$refs.listHeader ? (this.$refs.listHeader.$el.offsetHeight + 8) | 0 : 0;
@@ -799,7 +802,7 @@ export default {
799
802
  && this.$parent.$parent.$parent.$children[0].$el.classList.contains('el-aside')) {
800
803
  h9 = 4
801
804
  }
802
- let tableHeight = h1 - h2 - h3 - h4 - h5 - h6 - h7 - h8 + h9 - 8+h1top ;
805
+ let tableHeight = h1 - h2 - h3 - h4 - h5 - h6 - h7 - h8 + h9 - 8 +h1top;
803
806
 
804
807
  this.model.tableHeight = tableHeight < 40 ? 350 : tableHeight;
805
808
  this.$nextTick(() => {
@@ -5,7 +5,8 @@
5
5
  :api="searchConditionApi"
6
6
  :screenPara="screenPara"
7
7
  @search="search"
8
- @clickHandler="rolRouterClickHandler"
8
+ @clickHandler="rolRouterClickHandler"
9
+ @loaded="screenload"
9
10
  ></ct-searchtreescreen>
10
11
  <ct-tree
11
12
  ref="tree"
@@ -65,6 +66,9 @@ export default {
65
66
  try {
66
67
  this.$emit("loaded", data);
67
68
  } catch (e) {}
69
+ },
70
+ screenload(data) {
71
+ this.setTreeHeight();
68
72
  },
69
73
  rolRouterClickHandler(field) {
70
74
  this.routerClickHandler(field, {}, "");
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div id="app-Tree" style="height:100%;">
3
- <el-container style="height: calc(100vh - 98px);border: 1px solid #eee" ref="tree_left">
3
+ <el-container style="height: calc(100vh - 98px);" ref="tree_left">
4
4
  <el-aside :width="leftWidth?leftWidth+'px':'15%'"
5
5
  style="background-color:white;border-radius: 6px;overflow-y:hidden">
6
6
  <ct-searchtree :flagsearch="true" :searchConditionApi="searchConditionApi" :searchDataApi="searchDataApi" :searchtreeHeight="searchtreeHeight"
package/src/main.js CHANGED
@@ -15,14 +15,14 @@ Vue.use(ElementUI, { size: 'mini'});
15
15
  Vue.config.productionTip = false;
16
16
  Vue.use(centaline, {
17
17
  // baseUrl: "http://10.88.22.46:17070/max-uplink-api/",
18
- baseUrl: "http://10.88.22.46:6060/onecard-api/",
18
+ // baseUrl: "http://10.88.22.46:6060/onecard-api/",
19
19
  // baseUrl: "http://10.88.22.13:17070/max-uplink-api/",
20
20
  // baseUrl: "http://10.6.1.163:9000/max-uplink-api/v1/form/router",
21
21
  // baseUrl: "http://10.25.10.63:22026/service-api/v1/form/router",
22
22
  // baseUrl: "http://10.25.10.67:8080/",
23
23
  // baseUrl: "https://ccesutest.centaline.com.cn/service-api/v1/form/router",
24
24
  // baseUrl: "http://10.88.22.69:8080/api/",
25
- // baseUrl: "http://10.88.22.42:8080/",
25
+ baseUrl: "http://10.88.22.42:9999/",
26
26
  // baseUrl: "http://10.1.245.111:38028/",
27
27
  // baseUrl: "http://tjcptest.centaline.com.cn/",
28
28
  // baseUrl: "http://tjcpuat.centaline.com.cn:9090/",
@@ -56,14 +56,14 @@ Vue.use(centaline, {
56
56
  return {
57
57
  oldToken: '1f487e18-c090-4d24-b9a7-630de58cfccc',
58
58
  // token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQRO_iOiv5s1570zn-NBwiIuBIoUIkkUCIuxMEdPRMMRq95s1dzOsgWmHIccikIFr0gKQsMJYCURKxKdKYlHr-BH7UNz26yCFkByg7Aiw2A-tYwLDtEubgUibRiHo9i1aRRy-dtdSIab-8gdNKvcA618uu3v5x7rRMm3YkOZAfR6BtAWp_3LQHBNI8KHbkqlHi8QQAAP__.RrBgBqaFlp478oO3g5k_EEtjPt_o8qpJBkzgSP78Wa4',
59
- authObject: '{token:"1080-1729370391807397888"}',
59
+ // authObject: '{token:"1080-1729370391807397888"}',
60
60
 
61
61
  // originalRequestURL: 'http://10.88.22.67:8080',
62
- // EstateInfo: '{"estateId":"201806071109550C867184E8BCA56EC3","estateName":"C%E5%BE%A1%E6%9E%97%E5%B1%B1%E6%99%AF%E6%A5%BC"}',
62
+ EstateInfo: ' {"estateId":"23112217144782E4C3D5F8164CB2AE3E","estateName":"%E9%93%B8%E5%B1%B1%E7%85%AE%E6%B5%B7"}',
63
63
  estateId: '',
64
64
 
65
- // authObject: '{"currentEstate":{"estateId":"20210729104021C49F04B55C50F6AF58","estateName":"0%E6%B1%A4%E8%87%A3%E4%B8%80%E5%93%810%E5%A4%A9%E6%B4%A5"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"a47c1cb528904d361a71a2612e9fe8f7","token":"","random":"LMOpUe","time":1700555306773,"sign":"b5fed3c92e2ad6ef33fdf4951eab2ae7"}',
66
- AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjZmOGE3YmY5LWJmNTktNDQ5Mi1iYjViLTAwYzg5NzA4YjhkMSJ9.SdsZk29roc03uNTjl8UkURX0uJHog7FH2YdX9xdecUULznkQ0NrMKkuLhTTXXA4XAp47zcmbGUPphoCcCr_AOw',
65
+ authObject: '{"currentEstate":{"estateId":"23112217144782E4C3D5F8164CB2AE3E","estateName":"%E9%93%B8%E5%B1%B1%E7%85%AE%E6%B5%B7"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"03a1d8ca0f1509b312a49669c4755289","token":"","random":"0u4g7A","time":1701323733472,"sign":"03256aa2a841cf9e2dd92a6606f4c862"}',
66
+ AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImMxYTFjZmQ5LTE1N2MtNDFiMi05MGYxLTlmMThlMjkwMmYyYSJ9.RHLvLqZv2r4xQC5l4UFZyHlD_sOtfpg1U5j4tFFe3XzcjewBWUxLs1A91pF1Udi0DqIgdiyM_RWLhTnHR0tLPA',
67
67
  };
68
68
  },
69
69
  // 请求完成事件,可判断是否登录过期执行响应操作
@@ -36401,7 +36401,8 @@ if (typeof window !== 'undefined' && window.Vue) {
36401
36401
  isAutoSearch: function isAutoSearch() {
36402
36402
  if (this.model.autoSearch) this.$emit('click');
36403
36403
  },
36404
- changeHandler: function changeHandler() {
36404
+ change: function change() {
36405
+ this.changeHandler(this.model.value);
36405
36406
  this.isAutoSearch();
36406
36407
  },
36407
36408
  getPickerOptions: function getPickerOptions() {
@@ -38320,7 +38321,7 @@ if (typeof window !== 'undefined' && window.Vue) {
38320
38321
  "use strict";
38321
38322
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__ = __webpack_require__(302);
38322
38323
  /* unused harmony namespace reexport */
38323
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_70e53283_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(606);
38324
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ecf9331a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(606);
38324
38325
  function injectStyle (ssrContext) {
38325
38326
  __webpack_require__(568)
38326
38327
  }
@@ -38340,7 +38341,7 @@ var __vue_scopeId__ = null
38340
38341
  var __vue_module_identifier__ = null
38341
38342
  var Component = normalizeComponent(
38342
38343
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__["a" /* default */],
38343
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_70e53283_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
38344
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_ecf9331a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
38344
38345
  __vue_template_functional__,
38345
38346
  __vue_styles__,
38346
38347
  __vue_scopeId__,
@@ -39105,11 +39106,14 @@ var Component = normalizeComponent(
39105
39106
  this.$nextTick(function () {
39106
39107
  if (_this3.$refs.searchTable && _this3.$refs.toolbar && _this3.$refs.searchTable.parentElement && !self.isLayout) {
39107
39108
  var h1 = _this3.$refs.searchTable.parentElement.offsetHeight | 0;
39108
- var h1top = _this3.$refs.searchTable.parentElement.offsetTop | 0;
39109
+ var h1top = 0;
39109
39110
  var h2 = _this3.$refs.searchTable.offsetTop | 0;
39110
39111
  if (_this3.from && _this3.from == 'detail') {
39111
39112
  h2 = h2 - _this3.screenTop - 13;
39112
39113
  }
39114
+ if (_this3.from && _this3.from == 'hasTop') {
39115
+ h1top = _this3.$refs.searchTable.parentElement.offsetTop | 0;
39116
+ }
39113
39117
  var h3 = _this3.$refs.toolbar.$el.offsetHeight | 0;
39114
39118
  var h4 = _this3.$refs.footer.$el.offsetHeight | 0;
39115
39119
  var h5 = _this3.$refs.listHeader ? _this3.$refs.listHeader.$el.offsetHeight + 8 | 0 : 0;
@@ -65621,6 +65625,7 @@ var ctSpan = {
65621
65625
  //
65622
65626
  //
65623
65627
  //
65628
+ //
65624
65629
 
65625
65630
 
65626
65631
 
@@ -65672,6 +65677,9 @@ var ctSpan = {
65672
65677
  this.$emit("loaded", data);
65673
65678
  } catch (e) {}
65674
65679
  },
65680
+ screenload: function screenload(data) {
65681
+ this.setTreeHeight();
65682
+ },
65675
65683
  rolRouterClickHandler: function rolRouterClickHandler(field) {
65676
65684
  this.routerClickHandler(field, {}, "");
65677
65685
  },
@@ -71362,7 +71370,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
71362
71370
  "use strict";
71363
71371
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicD_vue__ = __webpack_require__(296);
71364
71372
  /* unused harmony namespace reexport */
71365
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bd7bd708_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicD_vue__ = __webpack_require__(553);
71373
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3ebcb0af_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicD_vue__ = __webpack_require__(553);
71366
71374
  var normalizeComponent = __webpack_require__(1)
71367
71375
  /* script */
71368
71376
 
@@ -71379,7 +71387,7 @@ var __vue_scopeId__ = null
71379
71387
  var __vue_module_identifier__ = null
71380
71388
  var Component = normalizeComponent(
71381
71389
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicD_vue__["a" /* default */],
71382
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bd7bd708_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicD_vue__["a" /* default */],
71390
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3ebcb0af_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicD_vue__["a" /* default */],
71383
71391
  __vue_template_functional__,
71384
71392
  __vue_styles__,
71385
71393
  __vue_scopeId__,
@@ -71394,7 +71402,7 @@ var Component = normalizeComponent(
71394
71402
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
71395
71403
 
71396
71404
  "use strict";
71397
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[_c('div',{staticClass:"ct-date",class:[_vm.model.attrs.size?'ct-date-'+_vm.model.attrs.size:''],staticStyle:{"width":"100%","display":"flex"}},[_c('div',{class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':''],staticStyle:{"flex":"1"}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend",class:[_vm.model.labelClass]},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")]):_vm._e(),_vm._v(" "),_c('el-date-picker',_vm._b({class:[_vm.model.showLabel?'ct-date-editor':''],attrs:{"picker-options":_vm.pickerOptions,"disabled":_vm.model.lock},on:{"input":function($event){_vm.inputHandler($event)},"change":function($event){_vm.changeHandler($event)},"blur":_vm.dateBlur},model:{value:(_vm.model.value),callback:function ($$v) {_vm.$set(_vm.model, "value", $$v)},expression:"model.value"}},'el-date-picker',_vm.model.attrs,false))],1),_vm._v(" "),(_vm.model.sufLabel)?_c('span',{staticClass:"spanMessage ct-flex-div-span"},[_vm._v(_vm._s(_vm.model.sufLabel))]):_vm._e(),_vm._v(" "),_c('transition',{attrs:{"name":"el-fade-in"}},[_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage"},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])]),_vm._v(" "),(_vm.model.paramName && !_vm.model.lock)?_c('ct-quick-input',{attrs:{"pn":_vm.model.paramName,"action":_vm.api},on:{"input":function($event){_vm.model.value=$event}}}):_vm._e()],1)])}
71405
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[_c('div',{staticClass:"ct-date",class:[_vm.model.attrs.size?'ct-date-'+_vm.model.attrs.size:''],staticStyle:{"width":"100%","display":"flex"}},[_c('div',{class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':''],staticStyle:{"flex":"1"}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend",class:[_vm.model.labelClass]},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")]):_vm._e(),_vm._v(" "),_c('el-date-picker',_vm._b({class:[_vm.model.showLabel?'ct-date-editor':''],attrs:{"picker-options":_vm.pickerOptions,"disabled":_vm.model.lock},on:{"input":function($event){_vm.inputHandler($event)},"change":function($event){_vm.change($event)},"blur":_vm.dateBlur},model:{value:(_vm.model.value),callback:function ($$v) {_vm.$set(_vm.model, "value", $$v)},expression:"model.value"}},'el-date-picker',_vm.model.attrs,false))],1),_vm._v(" "),(_vm.model.sufLabel)?_c('span',{staticClass:"spanMessage ct-flex-div-span"},[_vm._v(_vm._s(_vm.model.sufLabel))]):_vm._e(),_vm._v(" "),_c('transition',{attrs:{"name":"el-fade-in"}},[_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage"},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])]),_vm._v(" "),(_vm.model.paramName && !_vm.model.lock)?_c('ct-quick-input',{attrs:{"pn":_vm.model.paramName,"action":_vm.api},on:{"input":function($event){_vm.model.value=$event}}}):_vm._e()],1)])}
71398
71406
  var staticRenderFns = []
71399
71407
  var esExports = { render: render, staticRenderFns: staticRenderFns }
71400
71408
  /* harmony default export */ __webpack_exports__["a"] = (esExports);
@@ -72396,7 +72404,7 @@ var content = __webpack_require__(569);
72396
72404
  if(typeof content === 'string') content = [[module.i, content, '']];
72397
72405
  if(content.locals) module.exports = content.locals;
72398
72406
  // add the styles to the DOM
72399
- var update = __webpack_require__(3)("68ee4d66", content, true, {});
72407
+ var update = __webpack_require__(3)("2697e50b", content, true, {});
72400
72408
 
72401
72409
  /***/ }),
72402
72410
  /* 569 */
@@ -81539,7 +81547,7 @@ if (typeof window !== 'undefined' && window.Vue) {
81539
81547
  "use strict";
81540
81548
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__ = __webpack_require__(411);
81541
81549
  /* unused harmony namespace reexport */
81542
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_43d14f80_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__ = __webpack_require__(865);
81550
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7ba2c64c_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__ = __webpack_require__(865);
81543
81551
  var normalizeComponent = __webpack_require__(1)
81544
81552
  /* script */
81545
81553
 
@@ -81556,7 +81564,7 @@ var __vue_scopeId__ = null
81556
81564
  var __vue_module_identifier__ = null
81557
81565
  var Component = normalizeComponent(
81558
81566
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__["a" /* default */],
81559
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_43d14f80_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__["a" /* default */],
81567
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_7ba2c64c_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__["a" /* default */],
81560
81568
  __vue_template_functional__,
81561
81569
  __vue_styles__,
81562
81570
  __vue_scopeId__,
@@ -81658,7 +81666,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
81658
81666
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
81659
81667
 
81660
81668
  "use strict";
81661
- 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}}),_vm._v(" "),_c('ct-tree',{ref:"tree",style:({ height: _vm.treeHeight + 'px' }),attrs:{"api":_vm.searchDataApi},on:{"loaded":_vm.loaded}})],1)}
81669
+ 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)}
81662
81670
  var staticRenderFns = []
81663
81671
  var esExports = { render: render, staticRenderFns: staticRenderFns }
81664
81672
  /* harmony default export */ __webpack_exports__["a"] = (esExports);
@@ -81689,7 +81697,7 @@ if (typeof window !== 'undefined' && window.Vue) {
81689
81697
  "use strict";
81690
81698
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTreeList_vue__ = __webpack_require__(413);
81691
81699
  /* unused harmony namespace reexport */
81692
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_47445022_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__ = __webpack_require__(870);
81700
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_629313b2_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__ = __webpack_require__(870);
81693
81701
  function injectStyle (ssrContext) {
81694
81702
  __webpack_require__(868)
81695
81703
  }
@@ -81709,7 +81717,7 @@ var __vue_scopeId__ = null
81709
81717
  var __vue_module_identifier__ = null
81710
81718
  var Component = normalizeComponent(
81711
81719
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTreeList_vue__["a" /* default */],
81712
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_47445022_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__["a" /* default */],
81720
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_629313b2_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__["a" /* default */],
81713
81721
  __vue_template_functional__,
81714
81722
  __vue_styles__,
81715
81723
  __vue_scopeId__,
@@ -81730,7 +81738,7 @@ var content = __webpack_require__(869);
81730
81738
  if(typeof content === 'string') content = [[module.i, content, '']];
81731
81739
  if(content.locals) module.exports = content.locals;
81732
81740
  // add the styles to the DOM
81733
- var update = __webpack_require__(3)("cad958b2", content, true, {});
81741
+ var update = __webpack_require__(3)("dceeeb86", content, true, {});
81734
81742
 
81735
81743
  /***/ }),
81736
81744
  /* 869 */
@@ -81751,7 +81759,7 @@ exports.push([module.i, "#app-Tree .el-main{padding:0 0 0 10px}#app-Tree .el-mai
81751
81759
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
81752
81760
 
81753
81761
  "use strict";
81754
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{"height":"100%"},attrs:{"id":"app-Tree"}},[_c('el-container',{ref:"tree_left",staticStyle:{"height":"calc(100vh - 98px)","border":"1px solid #eee"}},[_c('el-aside',{staticStyle:{"background-color":"white","border-radius":"6px","overflow-y":"hidden"},attrs:{"width":_vm.leftWidth?_vm.leftWidth+'px':'15%'}},[_c('ct-searchtree',{attrs:{"flagsearch":true,"searchConditionApi":_vm.searchConditionApi,"searchDataApi":_vm.searchDataApi,"searchtreeHeight":_vm.searchtreeHeight},on:{"loaded":_vm.loaded}})],1),_vm._v(" "),(_vm.isShowMain)?_c('el-main',[(_vm.pageType=='form')?[_c('div',{staticStyle:{"height":"calc(100vh - 120px)"}},[_c('div',{staticClass:"ct-form",style:({'width':(_vm.width?_vm.width+'px':'auto'),'height':(_vm.height?_vm.height+'px':'auto')})},[_c('ct-form',{attrs:{"api":_vm.formApi,"api-param":_vm.apiParam,"width":_vm.width,"height":_vm.height}})],1)])]:[_c('div',{staticStyle:{"height":"calc(100vh - 100px)"}},[_c('ct-searchlist',{attrs:{"searchConditionApi":_vm.searchTableConditionApi,"searchDataApi":_vm.searchTableDataApi,"api-param":_vm.apiParam}})],1)]],2):_vm._e()],1)],1)}
81762
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticStyle:{"height":"100%"},attrs:{"id":"app-Tree"}},[_c('el-container',{ref:"tree_left",staticStyle:{"height":"calc(100vh - 98px)"}},[_c('el-aside',{staticStyle:{"background-color":"white","border-radius":"6px","overflow-y":"hidden"},attrs:{"width":_vm.leftWidth?_vm.leftWidth+'px':'15%'}},[_c('ct-searchtree',{attrs:{"flagsearch":true,"searchConditionApi":_vm.searchConditionApi,"searchDataApi":_vm.searchDataApi,"searchtreeHeight":_vm.searchtreeHeight},on:{"loaded":_vm.loaded}})],1),_vm._v(" "),(_vm.isShowMain)?_c('el-main',[(_vm.pageType=='form')?[_c('div',{staticStyle:{"height":"calc(100vh - 120px)"}},[_c('div',{staticClass:"ct-form",style:({'width':(_vm.width?_vm.width+'px':'auto'),'height':(_vm.height?_vm.height+'px':'auto')})},[_c('ct-form',{attrs:{"api":_vm.formApi,"api-param":_vm.apiParam,"width":_vm.width,"height":_vm.height}})],1)])]:[_c('div',{staticStyle:{"height":"calc(100vh - 100px)"}},[_c('ct-searchlist',{attrs:{"searchConditionApi":_vm.searchTableConditionApi,"searchDataApi":_vm.searchTableDataApi,"api-param":_vm.apiParam}})],1)]],2):_vm._e()],1)],1)}
81755
81763
  var staticRenderFns = []
81756
81764
  var esExports = { render: render, staticRenderFns: staticRenderFns }
81757
81765
  /* harmony default export */ __webpack_exports__["a"] = (esExports);