centaline-data-driven 1.6.60 → 1.6.61

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.60",
3
+ "version": "1.6.61",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,12 @@
1
+ # v1.6.61
2
+ 2026-02-09
3
+
4
+ 优化
5
+
6
+ 点击行显示侧边栏时,需要根据行路由配置附带左侧的查询条件
7
+
8
+ 树界面左侧树的查询条件支持可以传query参数
9
+
1
10
  # v1.6.60
2
11
  2025-12-29
3
12
 
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" :documentHeight="'600px'"></ct-form>
4
+ <ct-form :api="'/api/third-dept-tran/transaction/edit'" :apiParam="apiParam" :topHeight="topHeight" :documentHeight="'600px'"></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":1,"contractId":"251120105528E09634DE592A4DF8A326","propertyId":"250522090514A8BF158FF92A43479EA6","searchFields":{"fields":[{"fieldName1":"CompanyPath","groupName":"CompanyPath","operation":1,"searchDataType":1,"searchValue1":"001"},{"fieldName1":"EmpID","groupName":"EmpID","operation":1,"searchDataType":1,"searchValue1":"20201030134831BAA0AC5CDC9344B21E"},{"fieldName1":"DeptPath","groupName":"DeptPath","operation":1,"searchDataType":1,"searchValue1":"001.200.063.001"},{"fieldName1":"type","groupName":"type","operation":1,"searchDataType":1,"searchValue1":"left"},{"fieldName1":"EstateID","groupName":"EstateID","operation":2,"searchDataType":3,"searchValue1":"2411211358417B58943C6E954B35BB56"}]},"pageAttribute":{"pageIndex":1},"columnName":"contractDate","actionType":3
15
+ "originalTraId":"2010955673514090498","actionType":3,"pageStyle":2,"pageTitle":"修改成交单","pageOnly":true
16
16
  },
17
17
  topHeight:10,
18
18
  }
@@ -1,8 +1,8 @@
1
1
  <template>
2
2
  <div id="app-Tree" style="height:100%;position: fixed;width:100%;background: #c8c8c8;padding: 10px;">
3
3
  <ct-treelist :flagsearch="true" :apiParam="apiParam" :leftWidth="'280'"
4
- :searchConditionApi="'/system/menulist/getTreeLayoutOfSearch'"
5
- :searchDataApi="'/system/menulist/getTreeList'" @loaded="loaded"></ct-treelist>
4
+ :searchConditionApi="'/ComprehensiveConfig/SysMenuConfigureTreeList/getLayoutOfSearch'"
5
+ :searchDataApi="'/ComprehensiveConfig/SysMenuConfigureTreeList/getListOfSearchModel'" @loaded="loaded"></ct-treelist>
6
6
  <ct-dialog-list></ct-dialog-list>
7
7
  </div>
8
8
  </template>
@@ -14,7 +14,9 @@
14
14
  data() {
15
15
  return {
16
16
  isShowSearchlist: false,
17
- apiParam: {}
17
+ apiParam: {
18
+ code: "MoFirstPage"
19
+ }
18
20
  }
19
21
  },
20
22
  methods: {
@@ -457,6 +457,11 @@
457
457
  self.sideBarApiParam.columnGroupId=this.columnGroupId;
458
458
  }
459
459
 
460
+ if (self.$refs.table.model.rowSelectRouter.flagAttachSearchCondition) {
461
+ self.sideBarApiParam["searchFields"] = self.$refs.table.model.getSearchData();
462
+ self.sideBarApiParam["pageAttribute"] = self.$refs.table.model.pageData;
463
+ }
464
+
460
465
  self.sideBarApiParam.actionType = self.$refs.table.model.rowSelectRouter.actionType;
461
466
  self.detailKey = self.detailKey + 1;
462
467
  }
@@ -8,9 +8,10 @@
8
8
  @clickHandler="rolRouterClickHandler"
9
9
  @loaded="screenload" style="padding-left: 11px;"
10
10
  ></ct-searchtreescreen>
11
- <ct-tree
11
+ <ct-tree v-if="screenLoaded"
12
12
  ref="tree"
13
13
  :api="searchDataApi"
14
+ :searchModel="searchModel"
14
15
  @loaded="loaded"
15
16
  :style="{ height: treeHeight + 'px' }"
16
17
  ></ct-tree>
@@ -45,6 +46,8 @@ export default {
45
46
  data() {
46
47
  return {
47
48
  treeHeight: 0,
49
+ screenLoaded: false,
50
+ searchModel: null,
48
51
  };
49
52
  },
50
53
  methods: {
@@ -68,7 +71,9 @@ export default {
68
71
  } catch (e) {}
69
72
  },
70
73
  screenload(data) {
71
- this.setTreeHeight();
74
+ this.setTreeHeight();
75
+ this.searchModel = this.$refs.treescreen.model;
76
+ this.screenLoaded = true;
72
77
  },
73
78
  rolRouterClickHandler(field) {
74
79
  this.routerClickHandler(field, {}, "");
@@ -23,7 +23,8 @@ export default {
23
23
  mixins: [dynamicElement],
24
24
  props: {
25
25
  vmodel: Object,
26
- api: String
26
+ api: String,
27
+ searchModel: Object,
27
28
  },
28
29
  data() {
29
30
  return {
@@ -52,7 +53,6 @@ export default {
52
53
  };
53
54
  },
54
55
  mounted() {
55
-
56
56
  },
57
57
  methods: {
58
58
  search(m) {
@@ -64,7 +64,6 @@ export default {
64
64
  self.searchStatus.push(1);
65
65
  self.treeNode.childNodes = [];
66
66
  self.searchComplate(m, undefined, self.treeResolve, true);
67
-
68
67
  }
69
68
  else {
70
69
  timer = setTimeout(() => {
@@ -86,8 +85,7 @@ export default {
86
85
  }
87
86
  return flag;
88
87
  },
89
- loadNode(node, resolve) { // 加载 树数据
90
-
88
+ loadNode(node, resolve) { // 加载 树数据
91
89
  let self = this;
92
90
  if (node.level === 0) {
93
91
  self.treeNode = node;
@@ -137,6 +135,9 @@ export default {
137
135
  var self = this;
138
136
  this.$nextTick(function () {
139
137
  if (typeof self.api !== 'undefined') {
138
+ if (!m && self.searchModel) {
139
+ m = self.searchModel;
140
+ }
140
141
  self.loaderObj.Tree(self.api, self.load, m, defaultSearch, resolve, firstLoad);
141
142
  }
142
143
  });
@@ -164,8 +165,7 @@ export default {
164
165
  self.$emit('loaded', newdata);
165
166
  });
166
167
  }
167
- }
168
- ,
168
+ },
169
169
  rightClick(event, object, Node) { // event、object该节点所对应的对象、节点对应的 Node、节点组件本身
170
170
 
171
171
  this.currentData = object  // 定义变量接收该节点所对应的对象
@@ -3,7 +3,7 @@
3
3
  <el-container style="height: calc(100vh - 98px);" ref="tree_left">
4
4
  <el-aside :width="asideWidth ? asideWidth + 'px' : '15%'"
5
5
  style="background-color:white;border-radius: 6px;overflow-y:hidden">
6
- <ct-searchtree :flagsearch="true" :searchConditionApi="searchConditionApi" :searchDataApi="searchDataApi"
6
+ <ct-searchtree :flagsearch="true" :searchConditionApi="searchConditionApi" :searchDataApi="searchDataApi" :screenPara="apiParam"
7
7
  :searchtreeHeight="searchtreeHeight" @loaded="loaded"></ct-searchtree>
8
8
 
9
9
  </el-aside>
@@ -13,13 +13,13 @@
13
13
  <div class="ct-tree-form"
14
14
  :style="{'width': (width ? width + 'px' : 'auto'), 'height': (height ? height + 'px' : (heightPage?heightPage:'auto'))
15
15
  ,'position': 'relative','background-color': '#FFFFFF','border-radius': '6px'}">
16
- <ct-form :api="formApi" :api-param="apiParam" :width="width" :height="height"></ct-form>
16
+ <ct-form :api="formApi" :api-param="rightApiParam" :width="width" :height="height"></ct-form>
17
17
  </div>
18
18
  </template>
19
19
  <template v-else>
20
20
  <div style="height: calc(100vh - 100px);">
21
21
  <ct-searchlist :searchConditionApi="searchTableConditionApi" :searchDataApi="searchTableDataApi"
22
- :api-param="apiParam"></ct-searchlist>
22
+ :api-param="rightApiParam"></ct-searchlist>
23
23
  </div>
24
24
  </template>
25
25
 
@@ -42,6 +42,10 @@ export default {
42
42
  searchConditionApi: String,
43
43
  searchDataApi: String,
44
44
  leftWidth: String,
45
+ apiParam: {
46
+ type: Object,
47
+ default: () => {},
48
+ },
45
49
  },
46
50
  data() {
47
51
  return {
@@ -53,7 +57,7 @@ export default {
53
57
  heightPage: '',
54
58
  isShowMain: false,
55
59
  pageType: 'list',
56
- apiParam: {},
60
+ rightApiParam: {},
57
61
  searchtreeHeight: 0,
58
62
  dataRowRouter: "",
59
63
  asideWidth: 200,
@@ -102,7 +106,7 @@ export default {
102
106
  delete defaultPara.width;
103
107
  delete defaultPara.height;
104
108
 
105
- self.apiParam = defaultPara;
109
+ self.rightApiParam = defaultPara;
106
110
  self.$nextTick(() => {
107
111
  if (self.searchTableConditionApi || self.searchTableDataApi || self.formApi) {
108
112
  self.isShowMain = true;
@@ -15,7 +15,8 @@ const tree = function (source, callBack, searchModel, defaultSearchData, resolve
15
15
  },
16
16
  set source(v) {
17
17
  source = v;
18
- }, get modeltree() {
18
+ },
19
+ get modeltree() {
19
20
  var treedata = [];
20
21
  source.content.rows.forEach(v => {
21
22
  v.getLayoutOfSearch = rtn.rowRouterKey("getLayoutOfSearch");
package/src/main.js CHANGED
@@ -71,7 +71,7 @@ Vue.use(centaline, {
71
71
  // 获取请求头
72
72
  getRequestHeaders: function (action) {
73
73
  return {
74
- // oldToken: '30bf66c7-b93e-47b4-9d6f-3a7e85c19ac0',
74
+ oldToken: '1094eb9c-0ec7-4fcf-952f-7fc4258ca3b0',
75
75
  // token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjksOwjAMBe-SdS05tuPE7PpJNhwCBWglWCHaSiDE3SniEGznjfTm5eb16HYuIUWltoc-sYKkYGDcF_ApGWYzjrE_CHOHKANQxAJSYgYTCYBoahaC0qAHJc6lbRW8bLuUbpNIBDS3QTJhZiHXuPFxczsfmXxCJG3cpS4_gMb6Bes83vfj8x9x1-Wy3eJ48seQJuCaziATTWDRIlSazCNrlerd-wMAAP__.93H7c7k4TLTqbKpozp0aTSU4U_WrQu3eS990iS-TCpw',
76
76
  // authObject: '{token:"T5067-1995406631567089664",platform:"WEB"}',
77
77
 
@@ -81,8 +81,8 @@ Vue.use(centaline, {
81
81
  // appinfo:'{"appId":"7e4d0521-4e26-4beb-8627-e76977ad8aa5","appName":"CCAI-PLUS"}',
82
82
  // authorization:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjkzNDU5NjFkLWM2NmItNDU0ZS1hMTE4LTUzMWRkMjliZTdmYyJ9.ehMpxkFnyTFlJQ_43SbCTGZZTMFht3isTj3gUKmNoJBWCV5X8ez5Z2AgT7vMBwmmG1FdEHWZTnJhIj0ox86bCA',
83
83
 
84
- AuthObject: '{"currentEstate":{"estateId":"201005121336088B888053DAF3FAD603","estateName":"A","estDeptPath":"001.041.001"},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"Fm1KP8","time":"2025-12-26 17:13:10","timestamp":1766740390742,"sign":"","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"}',
85
- AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjA4Yjk3ZDhmLWJiYjItNGY0Yy04MDQwLWIxZGJkMTY5ZDFhOSJ9.mkY3k2Di_GpwvYpnq4N_yDdTz8dBryVCkX1TbW8fMdiG2AAickX7d1PMp1Hao04OFnt41Yrt2diKGXpmXEWYNQ',
84
+ AuthObject: '{"currentEstate":{},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"Lveni9","time":"2026-02-09 15:13:36","timestamp":1770621216486,"sign":"","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"}',
85
+ AuthorizationCode:'Bearer eyJhbGciOiJIUzI1NiJ9.eyJsb2dpbl91c2VyX2tleSI6IjRkNDhjNGZmLTlmYjEtNDVmYS04NGZiLTBlNDFiNjU5MjgzZiJ9.PmDLFXS9wPLh00OR_cz3X1m2aT_45mkp5qKcaxQv7Hc',
86
86
  };
87
87
  },
88
88
  // 请求完成事件,可判断是否登录过期执行响应操作
@@ -11361,7 +11361,7 @@ module.exports = {};
11361
11361
  "use strict";
11362
11362
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__ = __webpack_require__(157);
11363
11363
  /* unused harmony namespace reexport */
11364
- /* 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__(646);
11364
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5d4c3745_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(646);
11365
11365
  function injectStyle (ssrContext) {
11366
11366
  __webpack_require__(527)
11367
11367
  }
@@ -11376,12 +11376,12 @@ var __vue_template_functional__ = false
11376
11376
  /* styles */
11377
11377
  var __vue_styles__ = injectStyle
11378
11378
  /* scopeId */
11379
- var __vue_scopeId__ = "data-v-deaa955c"
11379
+ var __vue_scopeId__ = "data-v-5d4c3745"
11380
11380
  /* moduleIdentifier (server only) */
11381
11381
  var __vue_module_identifier__ = null
11382
11382
  var Component = normalizeComponent(
11383
11383
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__["a" /* default */],
11384
- __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 */],
11384
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5d4c3745_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
11385
11385
  __vue_template_functional__,
11386
11386
  __vue_styles__,
11387
11387
  __vue_scopeId__,
@@ -19818,6 +19818,11 @@ exports.f = __webpack_require__(27) ? gOPD : function getOwnPropertyDescriptor(O
19818
19818
  self.sideBarApiParam.columnGroupId = this.columnGroupId;
19819
19819
  }
19820
19820
 
19821
+ if (self.$refs.table.model.rowSelectRouter.flagAttachSearchCondition) {
19822
+ self.sideBarApiParam["searchFields"] = self.$refs.table.model.getSearchData();
19823
+ self.sideBarApiParam["pageAttribute"] = self.$refs.table.model.pageData;
19824
+ }
19825
+
19821
19826
  self.sideBarApiParam.actionType = self.$refs.table.model.rowSelectRouter.actionType;
19822
19827
  self.detailKey = self.detailKey + 1;
19823
19828
  }
@@ -62939,7 +62944,8 @@ var tree = function tree(source, callBack, searchModel, defaultSearchData, resol
62939
62944
  },
62940
62945
  set source(v) {
62941
62946
  source = v;
62942
- } }, _modeltree = 'modeltree', _mutatorMap = {}, _mutatorMap[_modeltree] = _mutatorMap[_modeltree] || {}, _mutatorMap[_modeltree].get = function () {
62947
+ }
62948
+ }, _modeltree = 'modeltree', _mutatorMap = {}, _mutatorMap[_modeltree] = _mutatorMap[_modeltree] || {}, _mutatorMap[_modeltree].get = function () {
62943
62949
  var treedata = [];
62944
62950
  source.content.rows.forEach(function (v) {
62945
62951
  v.getLayoutOfSearch = rtn.rowRouterKey("getLayoutOfSearch");
@@ -70330,6 +70336,7 @@ var ctSpan = {
70330
70336
  //
70331
70337
  //
70332
70338
  //
70339
+ //
70333
70340
 
70334
70341
 
70335
70342
 
@@ -70357,7 +70364,9 @@ var ctSpan = {
70357
70364
  },
70358
70365
  data: function data() {
70359
70366
  return {
70360
- treeHeight: 0
70367
+ treeHeight: 0,
70368
+ screenLoaded: false,
70369
+ searchModel: null
70361
70370
  };
70362
70371
  },
70363
70372
 
@@ -70383,6 +70392,8 @@ var ctSpan = {
70383
70392
  },
70384
70393
  screenload: function screenload(data) {
70385
70394
  this.setTreeHeight();
70395
+ this.searchModel = this.$refs.treescreen.model;
70396
+ this.screenLoaded = true;
70386
70397
  },
70387
70398
  rolRouterClickHandler: function rolRouterClickHandler(field) {
70388
70399
  this.routerClickHandler(field, {}, "");
@@ -70761,7 +70772,8 @@ var ctSpan = {
70761
70772
  mixins: [__WEBPACK_IMPORTED_MODULE_4__mixins_dynamicElement__["a" /* default */]],
70762
70773
  props: {
70763
70774
  vmodel: Object,
70764
- api: String
70775
+ api: String,
70776
+ searchModel: Object
70765
70777
  },
70766
70778
  data: function data() {
70767
70779
  return {
@@ -70824,8 +70836,7 @@ var ctSpan = {
70824
70836
  return flag;
70825
70837
  },
70826
70838
  loadNode: function loadNode(node, resolve) {
70827
- // 加载 树数据
70828
-
70839
+ // 加载 树数据
70829
70840
  var self = this;
70830
70841
  if (node.level === 0) {
70831
70842
  self.treeNode = node;
@@ -70893,6 +70904,9 @@ var ctSpan = {
70893
70904
  var self = this;
70894
70905
  this.$nextTick(function () {
70895
70906
  if (typeof self.api !== 'undefined') {
70907
+ if (!m && self.searchModel) {
70908
+ m = self.searchModel;
70909
+ }
70896
70910
  self.loaderObj.Tree(self.api, self.load, m, defaultSearch, resolve, firstLoad);
70897
70911
  }
70898
70912
  });
@@ -71142,7 +71156,11 @@ var ctSpan = {
71142
71156
  vmodel: Object,
71143
71157
  searchConditionApi: String,
71144
71158
  searchDataApi: String,
71145
- leftWidth: String
71159
+ leftWidth: String,
71160
+ apiParam: {
71161
+ type: Object,
71162
+ default: function _default() {}
71163
+ }
71146
71164
  },
71147
71165
  data: function data() {
71148
71166
  return {
@@ -71154,7 +71172,7 @@ var ctSpan = {
71154
71172
  heightPage: '',
71155
71173
  isShowMain: false,
71156
71174
  pageType: 'list',
71157
- apiParam: {},
71175
+ rightApiParam: {},
71158
71176
  searchtreeHeight: 0,
71159
71177
  dataRowRouter: "",
71160
71178
  asideWidth: 200,
@@ -71204,7 +71222,7 @@ var ctSpan = {
71204
71222
  delete defaultPara.width;
71205
71223
  delete defaultPara.height;
71206
71224
 
71207
- self.apiParam = defaultPara;
71225
+ self.rightApiParam = defaultPara;
71208
71226
  self.$nextTick(function () {
71209
71227
  if (self.searchTableConditionApi || self.searchTableDataApi || self.formApi) {
71210
71228
  self.isShowMain = true;
@@ -78391,7 +78409,7 @@ var content = __webpack_require__(528);
78391
78409
  if(typeof content === 'string') content = [[module.i, content, '']];
78392
78410
  if(content.locals) module.exports = content.locals;
78393
78411
  // add the styles to the DOM
78394
- var update = __webpack_require__(3)("76ca2826", content, true, {});
78412
+ var update = __webpack_require__(3)("1f2bf1c5", content, true, {});
78395
78413
 
78396
78414
  /***/ }),
78397
78415
  /* 528 */
@@ -78402,7 +78420,7 @@ exports = module.exports = __webpack_require__(2)(false);
78402
78420
 
78403
78421
 
78404
78422
  // module
78405
- 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)}", ""]);
78423
+ exports.push([module.i, ".sidebar[data-v-5d4c3745]{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)}", ""]);
78406
78424
 
78407
78425
  // exports
78408
78426
 
@@ -91354,7 +91372,7 @@ if (typeof window !== 'undefined' && window.Vue) {
91354
91372
  "use strict";
91355
91373
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__ = __webpack_require__(427);
91356
91374
  /* unused harmony namespace reexport */
91357
- /* 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__(934);
91375
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_e94d2bba_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__ = __webpack_require__(934);
91358
91376
  var normalizeComponent = __webpack_require__(1)
91359
91377
  /* script */
91360
91378
 
@@ -91371,7 +91389,7 @@ var __vue_scopeId__ = null
91371
91389
  var __vue_module_identifier__ = null
91372
91390
  var Component = normalizeComponent(
91373
91391
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTree_vue__["a" /* default */],
91374
- __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 */],
91392
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_e94d2bba_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTree_vue__["a" /* default */],
91375
91393
  __vue_template_functional__,
91376
91394
  __vue_styles__,
91377
91395
  __vue_scopeId__,
@@ -91388,7 +91406,7 @@ var Component = normalizeComponent(
91388
91406
  "use strict";
91389
91407
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTree_vue__ = __webpack_require__(428);
91390
91408
  /* unused harmony namespace reexport */
91391
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_75f19a12_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__ = __webpack_require__(933);
91409
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_323592b5_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__ = __webpack_require__(933);
91392
91410
  function injectStyle (ssrContext) {
91393
91411
  __webpack_require__(929)
91394
91412
  }
@@ -91408,7 +91426,7 @@ var __vue_scopeId__ = null
91408
91426
  var __vue_module_identifier__ = null
91409
91427
  var Component = normalizeComponent(
91410
91428
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTree_vue__["a" /* default */],
91411
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_75f19a12_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__["a" /* default */],
91429
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_323592b5_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__["a" /* default */],
91412
91430
  __vue_template_functional__,
91413
91431
  __vue_styles__,
91414
91432
  __vue_scopeId__,
@@ -91429,7 +91447,7 @@ var content = __webpack_require__(930);
91429
91447
  if(typeof content === 'string') content = [[module.i, content, '']];
91430
91448
  if(content.locals) module.exports = content.locals;
91431
91449
  // add the styles to the DOM
91432
- var update = __webpack_require__(3)("8d8d5d0e", content, true, {});
91450
+ var update = __webpack_require__(3)("2d02b2be", content, true, {});
91433
91451
 
91434
91452
  /***/ }),
91435
91453
  /* 930 */
@@ -91473,7 +91491,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
91473
91491
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
91474
91492
 
91475
91493
  "use strict";
91476
- 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)}
91494
+ 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(" "),(_vm.screenLoaded)?_c('ct-tree',{ref:"tree",style:({ height: _vm.treeHeight + 'px' }),attrs:{"api":_vm.searchDataApi,"searchModel":_vm.searchModel},on:{"loaded":_vm.loaded}}):_vm._e()],1)}
91477
91495
  var staticRenderFns = []
91478
91496
  var esExports = { render: render, staticRenderFns: staticRenderFns }
91479
91497
  /* harmony default export */ __webpack_exports__["a"] = (esExports);
@@ -91504,7 +91522,7 @@ if (typeof window !== 'undefined' && window.Vue) {
91504
91522
  "use strict";
91505
91523
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTreeList_vue__ = __webpack_require__(429);
91506
91524
  /* unused harmony namespace reexport */
91507
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_a76949f8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__ = __webpack_require__(939);
91525
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_21995853_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__ = __webpack_require__(939);
91508
91526
  function injectStyle (ssrContext) {
91509
91527
  __webpack_require__(937)
91510
91528
  }
@@ -91524,7 +91542,7 @@ var __vue_scopeId__ = null
91524
91542
  var __vue_module_identifier__ = null
91525
91543
  var Component = normalizeComponent(
91526
91544
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTreeList_vue__["a" /* default */],
91527
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_a76949f8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__["a" /* default */],
91545
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_21995853_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__["a" /* default */],
91528
91546
  __vue_template_functional__,
91529
91547
  __vue_styles__,
91530
91548
  __vue_scopeId__,
@@ -91545,7 +91563,7 @@ var content = __webpack_require__(938);
91545
91563
  if(typeof content === 'string') content = [[module.i, content, '']];
91546
91564
  if(content.locals) module.exports = content.locals;
91547
91565
  // add the styles to the DOM
91548
- var update = __webpack_require__(3)("2ac8fa35", content, true, {});
91566
+ var update = __webpack_require__(3)("76581825", content, true, {});
91549
91567
 
91550
91568
  /***/ }),
91551
91569
  /* 938 */
@@ -91566,8 +91584,8 @@ exports.push([module.i, "#app-Tree .el-main{padding:0 0 0 10px}#app-Tree .el-mai
91566
91584
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
91567
91585
 
91568
91586
  "use strict";
91569
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"treeAppRef",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.asideWidth ? _vm.asideWidth + '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',{staticStyle:{"position":"relative"}},[_c('div',{staticClass:"resizer",on:{"mousedown":_vm.startResizing}}),_vm._v(" "),(_vm.pageType == 'form')?[_c('div',{staticClass:"ct-tree-form",style:({'width': (_vm.width ? _vm.width + 'px' : 'auto'), 'height': (_vm.height ? _vm.height + 'px' : (_vm.heightPage?_vm.heightPage:'auto'))
91570
- ,'position': 'relative','background-color': '#FFFFFF','border-radius': '6px'})},[_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)}
91587
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"treeAppRef",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.asideWidth ? _vm.asideWidth + 'px' : '15%'}},[_c('ct-searchtree',{attrs:{"flagsearch":true,"searchConditionApi":_vm.searchConditionApi,"searchDataApi":_vm.searchDataApi,"screenPara":_vm.apiParam,"searchtreeHeight":_vm.searchtreeHeight},on:{"loaded":_vm.loaded}})],1),_vm._v(" "),(_vm.isShowMain)?_c('el-main',{staticStyle:{"position":"relative"}},[_c('div',{staticClass:"resizer",on:{"mousedown":_vm.startResizing}}),_vm._v(" "),(_vm.pageType == 'form')?[_c('div',{staticClass:"ct-tree-form",style:({'width': (_vm.width ? _vm.width + 'px' : 'auto'), 'height': (_vm.height ? _vm.height + 'px' : (_vm.heightPage?_vm.heightPage:'auto'))
91588
+ ,'position': 'relative','background-color': '#FFFFFF','border-radius': '6px'})},[_c('ct-form',{attrs:{"api":_vm.formApi,"api-param":_vm.rightApiParam,"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.rightApiParam}})],1)]],2):_vm._e()],1)],1)}
91571
91589
  var staticRenderFns = []
91572
91590
  var esExports = { render: render, staticRenderFns: staticRenderFns }
91573
91591
  /* harmony default export */ __webpack_exports__["a"] = (esExports);