centaline-data-driven 1.6.29 → 1.6.31

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.29",
3
+ "version": "1.6.31",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,17 @@
1
+ # v1.6.31
2
+ 2024-11-20
3
+
4
+ 优化
5
+
6
+ 表单添加参数isIframe
7
+
8
+ # v1.6.30
9
+ 2024-11-18
10
+
11
+ BUG
12
+
13
+ 列表查询报错遮挡层没有隐藏处理
14
+
1
15
  # v1.6.29
2
16
  2024-11-14
3
17
 
@@ -39,7 +39,7 @@
39
39
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customerquery/publiccustcalltaskreferrallist/getLayoutOfSearch'" :searchDataApi="'/customerquery/publiccustcalltaskreferrallist/getList'"></ct-searchlist> -->
40
40
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist> -->
41
41
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist> -->
42
- <ct-searchlist :apiParam="para" :searchConditionApi="'/commissionquery/properformanceszjjbreport/getLayoutOfSearch'" :searchDataApi="'/commissionquery/properformanceszjjbreport/getList'"></ct-searchlist>
42
+ <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/commissionquery/properformanceszjjbreport/getLayoutOfSearch'" :searchDataApi="'/commissionquery/properformanceszjjbreport/getList'"></ct-searchlist> -->
43
43
  <!-- CCES -->
44
44
 
45
45
  <!-- <ct-searchlist :apiParam="para"
@@ -109,6 +109,8 @@
109
109
 
110
110
  <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/SystemParameterList/getLayoutOfSearch'" :searchDataApi="'/SystemParameterList/getListOfSearchModel'"></ct-searchlist> -->
111
111
 
112
+ <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/EmployeeResourcesTranList/getLayoutOfSearch'" :searchDataApi="'/EmployeeResourcesTranList/getListOfSearchModel'"></ct-searchlist>
113
+
112
114
 
113
115
  <!-- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/propertyPublishList/getLayoutOfSearch'"
114
116
  :searchDataApi="'/propertyPublishList/getListOfSearchModel'"
@@ -204,6 +204,10 @@
204
204
  String,
205
205
  default: '',
206
206
  },
207
+ isIframe: {
208
+ Boolean,
209
+ default: false,
210
+ },
207
211
  },
208
212
  data() {
209
213
  return {
@@ -722,6 +726,7 @@
722
726
  height: field.dialogHeight + 'px',
723
727
  documentHeight: self.documentHeight,
724
728
  documentWidth: self.documentWidth,
729
+ isIframe: self.isIframe,
725
730
  },
726
731
  on: {
727
732
  submit(ev) {
@@ -760,7 +765,8 @@
760
765
  searchDataApi: field.actionForSearch,
761
766
  apiParam: submitData,
762
767
  width: field.dialogWidth + 'px',
763
- height: field.dialogHeight + 'px'
768
+ height: field.dialogHeight + 'px',
769
+ isIframe: self.isIframe,
764
770
  },
765
771
  on: {
766
772
  submit(ev) {
@@ -1031,6 +1037,9 @@
1031
1037
  submitData = field.getActionPara(submitData).para;
1032
1038
  let title = field.pageTitle == undefined ? field.label : field.pageTitle;
1033
1039
  submitData.actionType = field.actionType;
1040
+ if (self.isIframe) {
1041
+ submitData.isIframe = self.isIframe;
1042
+ }
1034
1043
  var fun = self.$common.getDataDrivenOpts().handler[field.action];
1035
1044
  fun(submitData, title, self.model);
1036
1045
  }
@@ -16,7 +16,7 @@
16
16
  @loaded="tableLoaded" :documentWidth="documentWidth" :flagPopupSearchlist="flagPopupSearchlist" :screenTop="screenTop" :flagAppMode="flagAppMode"
17
17
  @toolbarClick="toolbarClickHandler" @refreshParent="refreshParentHandler" :key="reloadKeyTable" @searchComplate="searchComplate" @closeSideBar="closeSideBar"
18
18
  @rowClickHandle="rowClickHandle" @scrollHandle="scrollHandle" @refreshRowHandle="refreshRowHandle" @doClosePopoverHandle="doClosePopoverHandle"
19
- @showTitle="showTitleHandler" @popupClickHandler="popupClickHandler" @simpleRouterRefreshHandler="simpleRouterRefreshHandler"
19
+ @showTitle="showTitleHandler" @popupClickHandler="popupClickHandler" @simpleRouterRefreshHandler="simpleRouterRefreshHandler" @loadedError="tableLoadedError"
20
20
  @drop="drop" :dragStartItem="dragStartItem" :dragStartName="dragStartName" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
21
21
  ></ct-searchtable>
22
22
  </div>
@@ -181,6 +181,9 @@
181
181
  this.$refs.table.searchComplate(this.$refs.screen.model, defaultSearch);
182
182
 
183
183
  this.$emit('loaded', this.$refs.screen.model);
184
+ },
185
+ tableLoadedError() {
186
+ this.pageDisabled=false;
184
187
  },
185
188
  categoryLoaded(param) {
186
189
  this.loaded.categoryLoaded = true;
@@ -413,12 +413,8 @@ export default {
413
413
  if (this.model.selectedRowBackColor) {
414
414
  self.backgroundColor = this.model.selectedRowBackColor;
415
415
  }
416
- if (
417
- (self.model.searchModel.screen &&
418
- self.model.searchModel.screen.length > 0) ||
419
- (self.model.searchModel.btnScreen &&
420
- self.model.searchModel.btnScreen.length > 0)
421
- ) {
416
+ if ((self.model.searchModel.screen && self.model.searchModel.screen.length > 0) ||
417
+ (self.model.searchModel.btnScreen && self.model.searchModel.btnScreen.length > 0)) {
422
418
  let showField = self.model.searchModel.screen.find((v) => {
423
419
  return v.show !== false;
424
420
  });
@@ -430,14 +426,14 @@ export default {
430
426
  self.isMarginTop = true;
431
427
  }
432
428
  }
433
- } else if (self.model.shortcutForm) {
429
+ }
430
+ else if (self.model.shortcutForm) {
434
431
  self.isMarginTop = false;
435
- } else if (
436
- self.model.searchModel.highScreen &&
437
- self.model.searchModel.highScreen.length <= 0
438
- ) {
432
+ }
433
+ else if ( self.model.searchModel.highScreen && self.model.searchModel.highScreen.length <= 0) {
439
434
  self.isMarginTop = true;
440
- } else {
435
+ }
436
+ else {
441
437
  self.isMarginTop = false;
442
438
  }
443
439
  self.isLoading = false;
@@ -1091,6 +1087,7 @@ export default {
1091
1087
  self.searchEnd = Date.now();
1092
1088
  self.isLoading = false;
1093
1089
  self.tableLoading = false;
1090
+ self.$emit("loadedError");
1094
1091
  });
1095
1092
  }
1096
1093
  if (typeof this.source !== "undefined") {
@@ -1560,6 +1557,7 @@ export default {
1560
1557
  documentHeight: self.documentHeight,
1561
1558
  documentWidth: self.documentWidth,
1562
1559
  flagScroll: true,
1560
+ isIframe: self.isIframe,
1563
1561
  },
1564
1562
  on: {
1565
1563
  submit(ev) {
@@ -1623,6 +1621,7 @@ export default {
1623
1621
  height: field.dialogHeight + "px",
1624
1622
  documentHeight: self.documentHeight,
1625
1623
  documentWidth: self.documentWidth,
1624
+ isIframe: self.isIframe,
1626
1625
  },
1627
1626
  on: {
1628
1627
  refreshParent() {
@@ -1892,6 +1891,7 @@ export default {
1892
1891
  width: field.dialogWidth + "px",
1893
1892
  height: field.dialogHeight + "px",
1894
1893
  flagScroll: true,
1894
+ isIframe: self.isIframe,
1895
1895
  },
1896
1896
  on: {
1897
1897
  submit(ev) {
@@ -1932,6 +1932,7 @@ export default {
1932
1932
  apiParam: field.getActionPara(submitData).para,
1933
1933
  width: field.dialogWidth + "px",
1934
1934
  height: field.dialogHeight + "px",
1935
+ isIframe: self.isIframe,
1935
1936
  },
1936
1937
  on: {
1937
1938
  refreshParent() {
package/src/main.js CHANGED
@@ -19,6 +19,7 @@ Vue.use(centaline, {
19
19
  baseUrl: "http://10.88.22.46:9999/service-api/",
20
20
  // baseUrl: "http://10.88.22.46:22324/service-api/v1/form/router",
21
21
  // baseUrl: "http://10.88.22.13:17070/max-uplink-api/",
22
+ baseUrl: "http://10.88.22.13:9004/max-uplink-api/",
22
23
  // baseUrl: "http://10.88.22.13:6060/onecard-api/",
23
24
  // baseUrl: "http://10.6.1.163:9000/max-uplink-api/v1/form/router",
24
25
  // baseUrl: "http://10.28.21.164:9004/max-uplink-api/",
@@ -66,14 +67,14 @@ Vue.use(centaline, {
66
67
  return {
67
68
  oldToken: 'da18df1e-9ee2-49fd-a5ca-a3e17c8947e5',
68
69
  token:'1080-1762727915918856192',
69
- // authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQBe_iOiv5s2t76YztNBwiioMjhQqRRAIh7g4R0NEzxSummXcX81rETqgP8GO-dEFxNHazLBmQOAMHdJACsdbeZU6-8zaaNpCGjMYDmryHEFSEnDKlyJJaVqIR9XoWO-W0NQ6JZCOmfnkL7b3axDrXy6He_nHutEyv7NEWPRhlgWyRgAOO4PsRQRuWfXGjHGsVjycAAAD__w.Qknnm6TUNucBNAg_xMRzDifR5WHBjlHG4GN65hzN1Hk"}',
70
+ authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQBe_iOit5vevYm87ETsMhonwcKVSIJBIIcXeIgI6eKV4xzby7WrZeVQo_wI_50gaUmsrdihZgKwkksIMYrBjjXZLoW1_W1ARrIDF5YEoHCAFrSDHZWIu2jaAqVL6eVYWOULwxzhZq7ta38GL9LrYlX4759o9zp3V-ZWXgcRqMg1J6A4zdBB45gyNCJp21GXv1eAIAAP__.q-sq_mdABjuvK8oabisCJlc_V2EbYOnPq8OmiNKhTIg"}',
70
71
 
71
72
  // originalRequestURL: 'http://10.88.22.67:8080',
72
73
  EstateInfo: '{"estateId":"1c581b7c-d629-4670-8a7c-6d622860bc58","estateName":"0%E9%87%91%E9%9A%85%E4%BA%91%E7%AD%91%E5%A4%A9%E6%B4%A5","estDeptPath":"009.014.001.001"}',
73
74
  estateId: '',
74
75
 
75
- authObject: '{"currentEstate":{},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"YSLnFY","time":1726133598476,"sign":"e08cc3c4257654dcc6b8063e3cb9b1b3","systemSource":"CCESU","empNo":"24988","empId":"202110201430497BB5FE89123A054CCA"}',
76
- AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjY4YTM2YmJhLTJjZTItNDFkYi1hNTM3LTViODg1OTIwNmE0MSJ9.NPPgXYRG8LaqXrriJKsAcEUfSRg0QA98Oqw0MwvP0gDzvSY2rtu7nZDPO7gDnMIiF-hz4DuMroLrvKzYMsMM_A',
76
+ // authObject: '{"currentEstate":{},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"YSLnFY","time":1726133598476,"sign":"e08cc3c4257654dcc6b8063e3cb9b1b3","systemSource":"CCESU","empNo":"24988","empId":"202110201430497BB5FE89123A054CCA"}',
77
+ AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImViMTA1NjAyLTA1ZWItNDZhYi1iNWRkLTliZDQ5OTM0YTZlOCJ9.y_zeph9ZDceMMgjUgVXSV5snEPd8pW71fBSX0NkydqIrhpoZZe94xHyE24rLbDBndXvV1twZt-2548j1oOX_3g',
77
78
  };
78
79
  },
79
80
  // 请求完成事件,可判断是否登录过期执行响应操作
@@ -11187,7 +11187,7 @@ module.exports = function (exec) {
11187
11187
  "use strict";
11188
11188
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__ = __webpack_require__(151);
11189
11189
  /* unused harmony namespace reexport */
11190
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6b68f540_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(636);
11190
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_715ec4d8_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(636);
11191
11191
  function injectStyle (ssrContext) {
11192
11192
  __webpack_require__(517)
11193
11193
  }
@@ -11202,12 +11202,12 @@ var __vue_template_functional__ = false
11202
11202
  /* styles */
11203
11203
  var __vue_styles__ = injectStyle
11204
11204
  /* scopeId */
11205
- var __vue_scopeId__ = "data-v-6b68f540"
11205
+ var __vue_scopeId__ = "data-v-715ec4d8"
11206
11206
  /* moduleIdentifier (server only) */
11207
11207
  var __vue_module_identifier__ = null
11208
11208
  var Component = normalizeComponent(
11209
11209
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__["a" /* default */],
11210
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6b68f540_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
11210
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_715ec4d8_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
11211
11211
  __vue_template_functional__,
11212
11212
  __vue_styles__,
11213
11213
  __vue_scopeId__,
@@ -11254,7 +11254,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
11254
11254
  "use strict";
11255
11255
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(185);
11256
11256
  /* unused harmony namespace reexport */
11257
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1dcf9d7a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(617);
11257
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5b0ebfe6_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(617);
11258
11258
  function injectStyle (ssrContext) {
11259
11259
  __webpack_require__(611)
11260
11260
  }
@@ -11274,7 +11274,7 @@ var __vue_scopeId__ = null
11274
11274
  var __vue_module_identifier__ = null
11275
11275
  var Component = normalizeComponent(
11276
11276
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
11277
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1dcf9d7a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
11277
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5b0ebfe6_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
11278
11278
  __vue_template_functional__,
11279
11279
  __vue_styles__,
11280
11280
  __vue_scopeId__,
@@ -18828,6 +18828,9 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
18828
18828
 
18829
18829
  this.$emit('loaded', this.$refs.screen.model);
18830
18830
  },
18831
+ tableLoadedError: function tableLoadedError() {
18832
+ this.pageDisabled = false;
18833
+ },
18831
18834
  categoryLoaded: function categoryLoaded(param) {
18832
18835
  this.loaded.categoryLoaded = true;
18833
18836
  if (param) this.screenPara = param;
@@ -20221,7 +20224,7 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
20221
20224
  "use strict";
20222
20225
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__ = __webpack_require__(156);
20223
20226
  /* unused harmony namespace reexport */
20224
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2ad0f15c_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(572);
20227
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_c8c25f46_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(572);
20225
20228
  function injectStyle (ssrContext) {
20226
20229
  __webpack_require__(534)
20227
20230
  }
@@ -20241,7 +20244,7 @@ var __vue_scopeId__ = null
20241
20244
  var __vue_module_identifier__ = null
20242
20245
  var Component = normalizeComponent(
20243
20246
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__["a" /* default */],
20244
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2ad0f15c_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
20247
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_c8c25f46_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
20245
20248
  __vue_template_functional__,
20246
20249
  __vue_styles__,
20247
20250
  __vue_scopeId__,
@@ -21294,6 +21297,7 @@ var Component = normalizeComponent(
21294
21297
  self.searchEnd = Date.now();
21295
21298
  self.isLoading = false;
21296
21299
  self.tableLoading = false;
21300
+ self.$emit("loadedError");
21297
21301
  });
21298
21302
  }
21299
21303
  if (typeof this.source !== "undefined") {
@@ -21729,7 +21733,8 @@ var Component = normalizeComponent(
21729
21733
  height: field.dialogHeight + "px",
21730
21734
  documentHeight: self.documentHeight,
21731
21735
  documentWidth: self.documentWidth,
21732
- flagScroll: true
21736
+ flagScroll: true,
21737
+ isIframe: self.isIframe
21733
21738
  },
21734
21739
  on: {
21735
21740
  submit: function submit(ev) {
@@ -21789,7 +21794,8 @@ var Component = normalizeComponent(
21789
21794
  width: field.dialogWidth + "px",
21790
21795
  height: field.dialogHeight + "px",
21791
21796
  documentHeight: self.documentHeight,
21792
- documentWidth: self.documentWidth
21797
+ documentWidth: self.documentWidth,
21798
+ isIframe: self.isIframe
21793
21799
  },
21794
21800
  on: {
21795
21801
  refreshParent: function refreshParent() {
@@ -22022,7 +22028,8 @@ var Component = normalizeComponent(
22022
22028
  showTitle: false,
22023
22029
  width: field.dialogWidth + "px",
22024
22030
  height: field.dialogHeight + "px",
22025
- flagScroll: true
22031
+ flagScroll: true,
22032
+ isIframe: self.isIframe
22026
22033
  },
22027
22034
  on: {
22028
22035
  submit: function submit(ev) {
@@ -22057,7 +22064,8 @@ var Component = normalizeComponent(
22057
22064
  searchDataApi: field.actionForSearch,
22058
22065
  apiParam: field.getActionPara(submitData).para,
22059
22066
  width: field.dialogWidth + "px",
22060
- height: field.dialogHeight + "px"
22067
+ height: field.dialogHeight + "px",
22068
+ isIframe: self.isIframe
22061
22069
  },
22062
22070
  on: {
22063
22071
  refreshParent: function refreshParent() {
@@ -28869,6 +28877,10 @@ module.exports = g;
28869
28877
  openType: {
28870
28878
  String: String,
28871
28879
  default: ''
28880
+ },
28881
+ isIframe: {
28882
+ Boolean: Boolean,
28883
+ default: false
28872
28884
  }
28873
28885
  },
28874
28886
  data: function data() {
@@ -29356,7 +29368,8 @@ module.exports = g;
29356
29368
  width: field.dialogWidth + 'px',
29357
29369
  height: field.dialogHeight + 'px',
29358
29370
  documentHeight: self.documentHeight,
29359
- documentWidth: self.documentWidth
29371
+ documentWidth: self.documentWidth,
29372
+ isIframe: self.isIframe
29360
29373
  },
29361
29374
  on: {
29362
29375
  submit: function submit(ev) {
@@ -29393,7 +29406,8 @@ module.exports = g;
29393
29406
  searchDataApi: field.actionForSearch,
29394
29407
  apiParam: submitData,
29395
29408
  width: field.dialogWidth + 'px',
29396
- height: field.dialogHeight + 'px'
29409
+ height: field.dialogHeight + 'px',
29410
+ isIframe: self.isIframe
29397
29411
  },
29398
29412
  on: {
29399
29413
  submit: function submit(ev) {
@@ -29641,6 +29655,9 @@ module.exports = g;
29641
29655
  submitData = field.getActionPara(submitData).para;
29642
29656
  var title = field.pageTitle == undefined ? field.label : field.pageTitle;
29643
29657
  submitData.actionType = field.actionType;
29658
+ if (self.isIframe) {
29659
+ submitData.isIframe = self.isIframe;
29660
+ }
29644
29661
  var fun = self.$common.getDataDrivenOpts().handler[field.action];
29645
29662
  fun(submitData, title, self.model);
29646
29663
  }
@@ -73242,7 +73259,7 @@ var content = __webpack_require__(518);
73242
73259
  if(typeof content === 'string') content = [[module.i, content, '']];
73243
73260
  if(content.locals) module.exports = content.locals;
73244
73261
  // add the styles to the DOM
73245
- var update = __webpack_require__(3)("997828ca", content, true, {});
73262
+ var update = __webpack_require__(3)("f49956de", content, true, {});
73246
73263
 
73247
73264
  /***/ }),
73248
73265
  /* 518 */
@@ -73253,7 +73270,7 @@ exports = module.exports = __webpack_require__(2)(false);
73253
73270
 
73254
73271
 
73255
73272
  // module
73256
- exports.push([module.i, ".sidebar[data-v-6b68f540]{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)}", ""]);
73273
+ exports.push([module.i, ".sidebar[data-v-715ec4d8]{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)}", ""]);
73257
73274
 
73258
73275
  // exports
73259
73276
 
@@ -74250,7 +74267,7 @@ var content = __webpack_require__(535);
74250
74267
  if(typeof content === 'string') content = [[module.i, content, '']];
74251
74268
  if(content.locals) module.exports = content.locals;
74252
74269
  // add the styles to the DOM
74253
- var update = __webpack_require__(3)("0e9c133e", content, true, {});
74270
+ var update = __webpack_require__(3)("5f599561", content, true, {});
74254
74271
 
74255
74272
  /***/ }),
74256
74273
  /* 535 */
@@ -75670,7 +75687,7 @@ var content = __webpack_require__(612);
75670
75687
  if(typeof content === 'string') content = [[module.i, content, '']];
75671
75688
  if(content.locals) module.exports = content.locals;
75672
75689
  // add the styles to the DOM
75673
- var update = __webpack_require__(3)("2dfdacf9", content, true, {});
75690
+ var update = __webpack_require__(3)("37ef10e5", content, true, {});
75674
75691
 
75675
75692
  /***/ }),
75676
75693
  /* 612 */
@@ -76076,7 +76093,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
76076
76093
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
76077
76094
 
76078
76095
  "use strict";
76079
- 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,"drop":_vm.drop,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged}})],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()}
76096
+ 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,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged}})],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()}
76080
76097
  var staticRenderFns = []
76081
76098
  var esExports = { render: render, staticRenderFns: staticRenderFns }
76082
76099
  /* harmony default export */ __webpack_exports__["a"] = (esExports);