centaline-data-driven-v3 0.0.86 → 0.0.87

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-v3",
3
- "version": "0.0.86",
3
+ "version": "0.0.87",
4
4
  "private": false,
5
5
  "description": "centaline-data-driven-v3",
6
6
  "main": "dist/centaline-data-driven-v3.umd.js",
@@ -75,6 +75,7 @@ import DOMPurify from 'dompurify'
75
75
  import Router from '../../loader/src/Router';
76
76
  import { RouterClickHandler } from '../../utils/mixins';
77
77
  import util from '../../utils/pub-use'
78
+ import Enum from '../../utils/Enum';
78
79
 
79
80
 
80
81
  const emit = defineEmits(['loaded', "getRefFieldPara", "hideAI"])
@@ -433,7 +434,7 @@ const fetchAIResponse = async (params) => {
433
434
  if (error.name === 'AbortError') {
434
435
  console.log('Request aborted');
435
436
  } else {
436
- common.message('请求失败', 'error');
437
+ common.message(error, 'error');
437
438
  }
438
439
  });
439
440
  }
@@ -459,7 +460,7 @@ function stopRequest() {
459
460
  if (error.name === 'AbortError') {
460
461
  console.log('Request aborted');
461
462
  } else {
462
- common.message('请求失败', 'error');
463
+ common.message(error, 'error');
463
464
  }
464
465
  });
465
466
 
@@ -519,12 +520,28 @@ const getTemplateType = (fullText) => {
519
520
  try {
520
521
  const eventData = JSON.parse(fullText)
521
522
  if (eventData) {
522
- if (eventData.content?.rows) {
523
+ if (eventData.rtnCode != '200') {
524
+ rtn = "error";
525
+ outtext.value = (eventData.rtnMsg || fullText);
526
+ if (eventData.rtnCode == '401') {
527
+ common.message(eventData.rtnMsg, 'error');
528
+ }
529
+ }
530
+ else if (eventData.clientActionType == Enum.ClientActionType.ExcuteScript) {
531
+ rtn = 'js';
532
+ if (eventData.content&&props.form) {
533
+ common.excute.call(props.form?.scripts, eventData.content);
534
+ }
535
+ outtext.value = (eventData.rtnMsg || "脚本执行成功!");
536
+
537
+ }
538
+ else if (eventData.content?.rows) {
523
539
  rtn = 'table';
524
540
  }
525
541
  else if (eventData.content?.fields) {
526
542
  rtn = 'form';
527
543
  }
544
+
528
545
  }
529
546
 
530
547
  } catch (error) {
@@ -537,9 +554,9 @@ const getTemplateType = (fullText) => {
537
554
 
538
555
 
539
556
  function startTypingEffect(fullText) {
557
+ fullText = fullText.replace(/\\n/gi, '\n\n');
540
558
  let index = 0;
541
559
  outtext.value = ''; // 清空内容
542
-
543
560
  function typeNext() {
544
561
  // 随机生成3到10之间的字符数
545
562
  const randomChars = Math.floor(Math.random() * 5) + 8;
@@ -38,7 +38,7 @@ function loadSearchTableModel(source, searchModel, defaultSearchData, action, se
38
38
  var router = this.formTable.buttons.find((v) => {
39
39
  return v.key === routerKey;
40
40
  });
41
- if(router){
41
+ if (router) {
42
42
  this.formTable.$vue.toolbarClickHandler(router);
43
43
  }
44
44
  },
@@ -527,8 +527,8 @@ function loadSearchTableModel(source, searchModel, defaultSearchData, action, se
527
527
  },
528
528
  };
529
529
  if (col.show) {
530
- //合并表头时暂不支持固定列
531
- if (col.lock && !self.isMergeTitle) {
530
+ //合并表头列暂不支持固定列
531
+ if (col.lock && col.trOrder == 1 && col.colspan == 1) {
532
532
  if (lockLeft) {
533
533
  col.fixed = 'left';
534
534
  } else {
@@ -599,7 +599,7 @@ function loadSearchTableModel(source, searchModel, defaultSearchData, action, se
599
599
  return rtn._dataDictionary;
600
600
  },
601
601
  get rowColorColumn() { //行字体颜色列
602
- return source.content.rowColorColumn;
602
+ return source.content.rowColorColumn;
603
603
  },
604
604
  //设置行样式
605
605
  setRow(rows) {
@@ -613,10 +613,10 @@ function loadSearchTableModel(source, searchModel, defaultSearchData, action, se
613
613
  row.rowStyle = "";
614
614
  }
615
615
  if (rtn.rowColorColumn && row[rtn.rowColorColumn]) {
616
- row.rowStyle = row.rowStyle + ";color:" + row[rtn.rowColorColumn] + ";";
616
+ row.rowStyle = row.rowStyle + ";color:" + row[rtn.rowColorColumn] + ";";
617
617
  }
618
618
  if (row.flagDrag && row.flagDrag == '1') {
619
- row.rowStyle = row.rowStyle + "cursor:move;";
619
+ row.rowStyle = row.rowStyle + "cursor:move;";
620
620
  }
621
621
  });
622
622
  },
@@ -753,7 +753,7 @@ function apiData(model, callback) {
753
753
  })
754
754
  .then(function (response) {
755
755
  if (model.$vue && model.$vue.searchStrat && model.$vue.searchEnd) {
756
- model.$vue.searchEnd = Date.now();
756
+ model.$vue.searchEnd = Date.now();
757
757
  }
758
758
  model.isLoading = false;
759
759
  if (response.rtnCode === Enum.ReturnCode.Successful) {
package/src/main.js CHANGED
@@ -21,15 +21,15 @@ for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
21
21
  }
22
22
 
23
23
  app.use(centaline, {
24
- baseUrl:"http://10.88.22.66/IBS.Mvc/api/",
24
+ //baseUrl:"http://10.88.22.66/IBS.Mvc/api/",
25
25
  //baseUrl: "https://kq-api.centaline.com.cn/onecard-api/",
26
- //baseUrl: "http://10.88.22.13:6060/onecard-api/",
26
+ baseUrl: "http://10.88.22.66:6060/onecard-api/",
27
27
  //baseUrl: "http://10.88.22.66:6060/xian/",
28
28
  //baseUrl: "http://10.1.245.50:38735/max-uplink-api/",
29
29
  //baseUrl: "http://10.1.245.111:38028/",
30
30
 
31
31
  flagRouterSelf: true,
32
- flagApp: true,//是否app端
32
+ flagApp: false,//是否app端
33
33
  zindex: 999,
34
34
  showRequestSuccessMessage: true,
35
35
  showRequestErrorMessage: true,
@@ -66,8 +66,8 @@ app.use(centaline, {
66
66
  return {
67
67
  //authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQBe-ydVay1xvvOl3sJA2HiPIxElSIJBIIcXdAQEfPFK-YZt4Nlm2EChqtDafOYWqpRG6kxLoTxZhUTSRxHLUPH_DHfOmt5SDWt1gHScieHapNiol94q5pXYoNFJAvJ6isGHWmNMYVcBjWtyCr_iW2JZ93-fqPc8f18MwGIqFRCIO1GXmWGYd9npCZJ6N5JjYZ7g8AAAD__w.HgtNKtHWooj8c9Hy_vB8CfKq-qOeHMp0irnW0DfXtHo"}',
68
68
  //oldToken: 'd92d4a3b-2274-42e8-96f0-100ffb579b6e',
69
- //authObject: '{token:"1647-1907352839429165056",platform:"WEB"}',
70
- authObject: '{EmpID:"Token_2fa5c93f-ae55-4e77-98a4-ef9c8b3bec34",MachineCode:"7c4b2ffd-920a-462c-a586-37bbfb45c4fe",SSO_Token:"SSOToken_2fa5c93f-ae55-4e77-98a4-ef9c8b3bec34",Platform:"IOS"}',
69
+ authObject: '{token:"1647-1909419453867757568",platform:"WEB"}',
70
+ //authObject: '{EmpID:"Token_2fa5c93f-ae55-4e77-98a4-ef9c8b3bec34",MachineCode:"7c4b2ffd-920a-462c-a586-37bbfb45c4fe",SSO_Token:"SSOToken_2fa5c93f-ae55-4e77-98a4-ef9c8b3bec34",Platform:"IOS"}',
71
71
  };
72
72
  },
73
73
  getToken() {
@@ -4,12 +4,12 @@
4
4
  :searchDataApi="'/propertyPublishList/getListOfSearchModel'"
5
5
  :searchStatsApi="'/propertyPublishList/getListStats'"></ct-searchlist> -->
6
6
 
7
- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/propertyTenderList/getLayoutOfSearch'"
8
- :searchDataApi="'/propertyTenderList/getListOfSearchModel'"></ct-searchlist>
7
+ <!-- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/propertyTenderList/getLayoutOfSearch'"
8
+ :searchDataApi="'/propertyTenderList/getListOfSearchModel'"></ct-searchlist> -->
9
9
 
10
10
 
11
- <!-- <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/EmployeeAttendanceBillList/getLayoutOfSearchForMy'"
12
- :searchDataApi="'/EmployeeAttendanceBillList/getListOfSearchModelForMy'"></ct-searchlist> -->
11
+ <ct-searchlist :apiParam="apiParam" :searchConditionApi="'/ReportWorkQuantifyList/getLayoutOfSearch'"
12
+ :searchDataApi="'/ReportWorkQuantifyList/getListOfSearchModel'"></ct-searchlist>
13
13
  <ct-dialoglist ref="dialogList"></ct-dialoglist>
14
14
 
15
15
  </div>
Binary file