centaline-data-driven 1.6.20 → 1.6.21

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.20",
3
+ "version": "1.6.21",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,9 +1,16 @@
1
- # v1.6.20
1
+ # v1.6.21
2
+ 2024-09-14
3
+
4
+ BUG
5
+
6
+ 查询条件必填验证bug处理,必须先判断有没有查询条件
7
+
8
+ # v1.6.20
2
9
  2024-09-13
3
10
 
4
11
  BUG
5
12
 
6
- 分片上传,API强制报错,删除当前文件
13
+ 分片上传,API强制报错,删除当前文件
7
14
 
8
15
  保存按钮浮动样式修复
9
16
 
@@ -38,7 +38,7 @@
38
38
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/UrgentResponsiblePersonList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/UrgentResponsiblePersonList/getList'"></ct-searchlist> -->
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
- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist>
41
+ <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist> -->
42
42
  <!-- CCES -->
43
43
 
44
44
  <!-- <ct-searchlist :apiParam="para"
@@ -106,6 +106,8 @@
106
106
 
107
107
  <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/PropertyVRRealLookBalanceList/getLayoutOfSearchForOFI'" :searchDataApi="'/PropertyVRRealLookBalanceList/getListOfSearchModel'"></ct-searchlist> -->
108
108
 
109
+ <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/SystemParameterList/getLayoutOfSearch'" :searchDataApi="'/SystemParameterList/getListOfSearchModel'"></ct-searchlist>
110
+
109
111
 
110
112
  <!-- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/propertyPublishList/getLayoutOfSearch'"
111
113
  :searchDataApi="'/propertyPublishList/getListOfSearchModel'"
@@ -150,7 +152,7 @@
150
152
  // appRootUrl:'http://10.88.22.13:6060/onecard-api/',
151
153
  appRootUrl:'',
152
154
  para:{
153
- "type":"left"
155
+ "name":"安全中心访问配置","code":"011.001","paramName":"安全中心访问配置","paramKey":"SecurityCenterConfig"
154
156
  },
155
157
  }
156
158
  },
@@ -1,8 +1,8 @@
1
1
  <template>
2
2
  <div id="app-Tree" style="height:100%;position: fixed;width:100%">
3
3
  <ct-treelist :flagsearch="true" :apiParam="apiParam" :leftWidth="'280'"
4
- :searchConditionApi="'/DepartmentList/getLayoutOfSearch'"
5
- :searchDataApi="'/DepartmentList/getListOfSearchModel'" @loaded="loaded"></ct-treelist>
4
+ :searchConditionApi="'/SystemParameterCatalogList/getLayoutOfSearch'"
5
+ :searchDataApi="'/SystemParameterCatalogList/getListOfSearchModel'" @loaded="loaded"></ct-treelist>
6
6
  <ct-dialog-list></ct-dialog-list>
7
7
  </div>
8
8
  </template>
@@ -789,54 +789,56 @@ import dynamicElement from '../../mixins/dynamicElement';
789
789
  var rtnBool = true;
790
790
  var i = 0;
791
791
 
792
- self.$refs.Fields.forEach((f) => {
793
- if (f.model && typeof f.validExcute !== 'undefined') {
794
- if (!f.validExcute()) {
795
- if (i === 0) {
796
- if (f.model.is == "ct-file"||f.model.is == "ct-repeat"||f.model.is == "ct-form-list-table") {
797
- self.$message({
798
- message: f.validMessage,
799
- type: 'error',
800
- showClose:true,
801
- });
802
- }
803
- else {
804
- if (f.validMessage) {
805
- if (f.validMessage == '必填' && (f.model.label || (f.model.attrs && f.model.attrs.placeholder))) {
806
- let m=f.model.label;
807
- if(!m && f.model.attrs && f.model.attrs.placeholder){
808
- m=f.model.attrs.placeholder;
792
+ if(self.$refs && self.$refs.Fields){
793
+ self.$refs.Fields.forEach((f) => {
794
+ if (f.model && typeof f.validExcute !== 'undefined') {
795
+ if (!f.validExcute()) {
796
+ if (i === 0) {
797
+ if (f.model.is == "ct-file"||f.model.is == "ct-repeat"||f.model.is == "ct-form-list-table") {
798
+ self.$message({
799
+ message: f.validMessage,
800
+ type: 'error',
801
+ showClose:true,
802
+ });
803
+ }
804
+ else {
805
+ if (f.validMessage) {
806
+ if (f.validMessage == '必填' && (f.model.label || (f.model.attrs && f.model.attrs.placeholder))) {
807
+ let m=f.model.label;
808
+ if(!m && f.model.attrs && f.model.attrs.placeholder){
809
+ m=f.model.attrs.placeholder;
810
+ }
811
+ self.$message({
812
+ message: '【' + m + '】' + f.validMessage,
813
+ type: 'error',
814
+ showClose:true,
815
+ });
816
+ }
817
+ else {
818
+ self.$message({
819
+ message: f.validMessage,
820
+ type: 'error',
821
+ showClose:true,
822
+ });
809
823
  }
810
- self.$message({
811
- message: '【' + m + '】' + f.validMessage,
812
- type: 'error',
813
- showClose:true,
814
- });
815
824
  }
816
825
  else {
817
- self.$message({
818
- message: f.validMessage,
819
- type: 'error',
820
- showClose:true,
821
- });
822
- }
823
- }
824
- else {
825
- if (f.model.label) {
826
- self.$message({
827
- message: '【' + f.model.label + '】不能为空!',
828
- type: 'error',
829
- showClose:true,
830
- });
826
+ if (f.model.label) {
827
+ self.$message({
828
+ message: '' + f.model.label + '】不能为空!',
829
+ type: 'error',
830
+ showClose:true,
831
+ });
832
+ }
831
833
  }
832
834
  }
833
835
  }
836
+ i++;
837
+ rtnBool = false;
834
838
  }
835
- i++;
836
- rtnBool = false;
837
839
  }
838
- }
839
- });
840
+ });
841
+ }
840
842
  return rtnBool;
841
843
  },
842
844
  }
package/src/main.js CHANGED
@@ -21,6 +21,7 @@ Vue.use(centaline, {
21
21
  // baseUrl: "http://10.88.22.13:17070/max-uplink-api/",
22
22
  // baseUrl: "http://10.88.22.13:6060/onecard-api/",
23
23
  // baseUrl: "http://10.6.1.163:9000/max-uplink-api/v1/form/router",
24
+ baseUrl: "http://10.28.21.164:9004/max-uplink-api/",
24
25
  // baseUrl: "http://10.25.10.63:9999/service-api/",
25
26
  // baseUrl: "http://10.25.10.67:9999/service-api/",
26
27
  // baseUrl: "http://10.25.10.69:8080/",
@@ -65,13 +66,13 @@ Vue.use(centaline, {
65
66
  return {
66
67
  oldToken: 'c48263f0-1b23-4599-96de-323f4507dc61',
67
68
  token:'1080-1762727915918856192',
68
- // authObject: '{EmpID:"Token_6be80085-263f-4520-89bc-d789cb4717fb",MachineCode:"9c0cdf10-9296-4647-bd39-28eac046cf19",SSO_Token:"SSOToken_6be80085-263f-4520-89bc-d789cb4717fb",Platform:"WEB"}',
69
+ authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQBe_iOiv5s2t76YztNBwiioMjhQqRRAIh7g4R0NEzxSummXcX81rETqgP8GO-dEFxNHazLBmQOAMHdJACsdbeZU6-8zaaNpCGjMYDmryHEFSEnDKlyJJaVqIR9XoWO-W0NQ6JZCOmfnkL7b3axDrXy6He_nHutEyv7NEWPRhlgWyRgAOO4PsRQRuWfXGjHGsVjycAAAD__w.Qknnm6TUNucBNAg_xMRzDifR5WHBjlHG4GN65hzN1Hk"}',
69
70
 
70
71
  // originalRequestURL: 'http://10.88.22.67:8080',
71
72
  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"}',
72
73
  estateId: '',
73
74
 
74
- authObject: '{"currentEstate":{},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"YSLnFY","time":1726133598476,"sign":"e08cc3c4257654dcc6b8063e3cb9b1b3","systemSource":"CCESU","empNo":"24988","empId":"202110201430497BB5FE89123A054CCA"}',
75
+ // authObject: '{"currentEstate":{},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"YSLnFY","time":1726133598476,"sign":"e08cc3c4257654dcc6b8063e3cb9b1b3","systemSource":"CCESU","empNo":"24988","empId":"202110201430497BB5FE89123A054CCA"}',
75
76
  AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImJiY2MyNDFmLTA3NTYtNDViYy04NWEwLWViOWM0NmYxZWQyNCJ9.p799X66qZJjJlnSNp6KcYSRS9xVX_T6BXikb7Y80Fcwj0NgjOdbFTGN-n_ir1qIuKGTnjYAAhdqLR3n_acf8cA',
76
77
  };
77
78
  },
@@ -11357,7 +11357,7 @@ module.exports = {};
11357
11357
  "use strict";
11358
11358
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchScreen_vue__ = __webpack_require__(155);
11359
11359
  /* unused harmony namespace reexport */
11360
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_77c68ad0_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchScreen_vue__ = __webpack_require__(531);
11360
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3c50af46_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchScreen_vue__ = __webpack_require__(531);
11361
11361
  function injectStyle (ssrContext) {
11362
11362
  __webpack_require__(529)
11363
11363
  }
@@ -11377,7 +11377,7 @@ var __vue_scopeId__ = null
11377
11377
  var __vue_module_identifier__ = null
11378
11378
  var Component = normalizeComponent(
11379
11379
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchScreen_vue__["a" /* default */],
11380
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_77c68ad0_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchScreen_vue__["a" /* default */],
11380
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_3c50af46_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchScreen_vue__["a" /* default */],
11381
11381
  __vue_template_functional__,
11382
11382
  __vue_styles__,
11383
11383
  __vue_scopeId__,
@@ -20446,51 +20446,53 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
20446
20446
  var rtnBool = true;
20447
20447
  var i = 0;
20448
20448
 
20449
- self.$refs.Fields.forEach(function (f) {
20450
- if (f.model && typeof f.validExcute !== 'undefined') {
20451
- if (!f.validExcute()) {
20452
- if (i === 0) {
20453
- if (f.model.is == "ct-file" || f.model.is == "ct-repeat" || f.model.is == "ct-form-list-table") {
20454
- self.$message({
20455
- message: f.validMessage,
20456
- type: 'error',
20457
- showClose: true
20458
- });
20459
- } else {
20460
- if (f.validMessage) {
20461
- if (f.validMessage == '必填' && (f.model.label || f.model.attrs && f.model.attrs.placeholder)) {
20462
- var m = f.model.label;
20463
- if (!m && f.model.attrs && f.model.attrs.placeholder) {
20464
- m = f.model.attrs.placeholder;
20449
+ if (self.$refs && self.$refs.Fields) {
20450
+ self.$refs.Fields.forEach(function (f) {
20451
+ if (f.model && typeof f.validExcute !== 'undefined') {
20452
+ if (!f.validExcute()) {
20453
+ if (i === 0) {
20454
+ if (f.model.is == "ct-file" || f.model.is == "ct-repeat" || f.model.is == "ct-form-list-table") {
20455
+ self.$message({
20456
+ message: f.validMessage,
20457
+ type: 'error',
20458
+ showClose: true
20459
+ });
20460
+ } else {
20461
+ if (f.validMessage) {
20462
+ if (f.validMessage == '必填' && (f.model.label || f.model.attrs && f.model.attrs.placeholder)) {
20463
+ var m = f.model.label;
20464
+ if (!m && f.model.attrs && f.model.attrs.placeholder) {
20465
+ m = f.model.attrs.placeholder;
20466
+ }
20467
+ self.$message({
20468
+ message: '【' + m + '】' + f.validMessage,
20469
+ type: 'error',
20470
+ showClose: true
20471
+ });
20472
+ } else {
20473
+ self.$message({
20474
+ message: f.validMessage,
20475
+ type: 'error',
20476
+ showClose: true
20477
+ });
20465
20478
  }
20466
- self.$message({
20467
- message: '【' + m + '】' + f.validMessage,
20468
- type: 'error',
20469
- showClose: true
20470
- });
20471
20479
  } else {
20472
- self.$message({
20473
- message: f.validMessage,
20474
- type: 'error',
20475
- showClose: true
20476
- });
20477
- }
20478
- } else {
20479
- if (f.model.label) {
20480
- self.$message({
20481
- message: '【' + f.model.label + '】不能为空!',
20482
- type: 'error',
20483
- showClose: true
20484
- });
20480
+ if (f.model.label) {
20481
+ self.$message({
20482
+ message: '' + f.model.label + '】不能为空!',
20483
+ type: 'error',
20484
+ showClose: true
20485
+ });
20486
+ }
20485
20487
  }
20486
20488
  }
20487
20489
  }
20490
+ i++;
20491
+ rtnBool = false;
20488
20492
  }
20489
- i++;
20490
- rtnBool = false;
20491
20493
  }
20492
- }
20493
- });
20494
+ });
20495
+ }
20494
20496
  return rtnBool;
20495
20497
  }
20496
20498
  }
@@ -72957,7 +72959,7 @@ var content = __webpack_require__(530);
72957
72959
  if(typeof content === 'string') content = [[module.i, content, '']];
72958
72960
  if(content.locals) module.exports = content.locals;
72959
72961
  // add the styles to the DOM
72960
- var update = __webpack_require__(3)("26486c10", content, true, {});
72962
+ var update = __webpack_require__(3)("7c53647c", content, true, {});
72961
72963
 
72962
72964
  /***/ }),
72963
72965
  /* 530 */