askbot-dragon 1.7.17-beta → 1.7.19-beta
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 +2 -2
- package/public/index.html +9 -8
- package/src/assets/js/AliyunlssUtil.js +53 -27
- package/src/assets/js/hammer.js +13 -2
- package/src/assets/less/converSationContainer/common.less +7 -0
- package/src/components/ActionAlertIframe.vue +24 -1
- package/src/components/AiGuide.vue +121 -154
- package/src/components/AnswerDocknowledge.vue +10 -8
- package/src/components/ConversationContainer.vue +952 -1794
- package/src/components/MyEditor.vue +6 -5
- package/src/components/actionSatisfaction.vue +3 -3
- package/src/components/answerRadio.vue +3 -3
- package/src/components/askVideo.vue +24 -1
- package/src/components/associationIntention.vue +11 -7
- package/src/components/file/AliyunOssComponents.vue +1 -1
- package/src/components/formTemplate.vue +1592 -1658
- package/src/components/intelligentSummary.vue +8 -4
- package/src/components/message/TextMessage.vue +15 -11
- package/src/components/message/swiper/ticketSwiper.vue +1 -1
- package/src/components/newPdfPosition.vue +878 -0
- package/src/components/pdfPosition.vue +209 -35
- package/src/components/popup.vue +2 -2
- package/src/components/previewDoc.vue +6 -2
- package/src/components/previewPdf.vue +159 -134
- package/src/components/senderMessagePlatform.vue +4 -4
- package/src/components/tree.vue +114 -101
- package/src/components/utils/AliyunIssUtil.js +2 -1
- package/src/components/utils/ckeditor.js +1 -1
- package/src/components/welcomeKnowledgeFile.vue +6 -2
- package/src/components/welcomeLlmCard.vue +5 -1
- package/src/components/welcomeSuggest.vue +1 -1
- package/src/locales/cn.json +72 -0
- package/src/locales/en.json +73 -0
- package/src/locales/jp.json +73 -0
- package/src/main.js +18 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<!-- 消息记录容器 -->
|
|
2
2
|
<template>
|
|
3
3
|
<div id="conversation">
|
|
4
|
-
<div v-for="(item,index) in processAction" :key="index">
|
|
4
|
+
<!-- <div v-for="(item, index) in processAction" :key="index">
|
|
5
5
|
<association-intention :msg="item" :msgType="item.type" :isOpen="isOpen"></association-intention>
|
|
6
|
-
</div>
|
|
6
|
+
</div> -->
|
|
7
7
|
<!-- <answer-radio :msg="answerRadiosPri"></answer-radio> -->
|
|
8
8
|
<answer-radio :msg="answerRadiosPri"></answer-radio>
|
|
9
9
|
<!-- <msg-loading v-if="inLoading"></msg-loading>
|
|
@@ -17,14 +17,13 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
</div> -->
|
|
19
19
|
<!-- <MyEditor></MyEditor> -->
|
|
20
|
-
|
|
20
|
+
<form-template
|
|
21
21
|
:formList="formList2"
|
|
22
22
|
@submitClick="submitClick"
|
|
23
23
|
></form-template> -->
|
|
24
|
-
<!-- <form-template
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
></form-template> -->
|
|
24
|
+
<!-- <form-template :formList="formList" @submitClick="submitClick"></form-template> -->
|
|
25
|
+
<form-template :formList="formList2" @submitClick="submitClick"></form-template>
|
|
26
|
+
|
|
28
27
|
<!-- <form-template
|
|
29
28
|
:formList="formList3"
|
|
30
29
|
@submitClick="submitClick"
|
|
@@ -32,14 +31,14 @@
|
|
|
32
31
|
<form-template
|
|
33
32
|
:formList="formList4"
|
|
34
33
|
@submitClick="submitClick"
|
|
35
|
-
></form-template>
|
|
34
|
+
></form-template>
|
|
36
35
|
<!-- <div style="max-width: 450px;overflow-x: auto;">
|
|
37
36
|
<action-alert :actionAlertIframe="actionAlertIframeObj" :phoneWidth100="true"></action-alert>
|
|
38
37
|
</div> -->
|
|
39
38
|
|
|
40
39
|
<!-- <text-message :text="text" @submitClick="submitClick"></text-message> -->
|
|
41
|
-
<answer-docknowledge :isAskLightning="2" :msg="answerDocknowledge" :isLiBang="false"></answer-docknowledge>
|
|
42
|
-
<welcomeSuggest :msg="welcomeSuggest"></welcomeSuggest>
|
|
40
|
+
<answer-docknowledge :isAskLightning="2" :msg="answerDocknowledge" :language="'cn'" :isLiBang="false"></answer-docknowledge>
|
|
41
|
+
<welcomeSuggest :msg="welcomeSuggest" :language="'cn'"></welcomeSuggest>
|
|
43
42
|
<!-- <voice-component @closeVoice="closeVoice">
|
|
44
43
|
<div slot="voiceTip">
|
|
45
44
|
松开发送
|
|
@@ -47,10 +46,10 @@
|
|
|
47
46
|
</voice-component>-->
|
|
48
47
|
<!-- 点选 -->
|
|
49
48
|
<!-- <div v-html="htmlContainer"></div> -->
|
|
50
|
-
<answer-radio :msg="answerRadios"></answer-radio>
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
<!--
|
|
49
|
+
<answer-radio :msg="answerRadios" :language="'cn'"></answer-radio>
|
|
50
|
+
<ticket-message :content="updateTicetmessageObj"></ticket-message>
|
|
51
|
+
<ticket-message :content="contents"></ticket-message>
|
|
52
|
+
<!--
|
|
54
53
|
<action-send-to-bot :msg="answerRadios"></action-send-to-bot>
|
|
55
54
|
<text-message :text="text" @submitClick="submitClick"></text-message>
|
|
56
55
|
<div v-for="(item,index) in processAction" :key="index">
|
|
@@ -75,7 +74,7 @@
|
|
|
75
74
|
<welcome-llm-card v-else-if="item.type === 'welcome_llm_card'" :msgContent="item.content"></welcome-llm-card>
|
|
76
75
|
</div> -->
|
|
77
76
|
<!-- <answer-voice @stopOtherAudio="stopOtherAudio" ref="audioTagCell" :msg="answerVoiceObj1"></answer-voice> -->
|
|
78
|
-
|
|
77
|
+
|
|
79
78
|
<!-- <FileType :urls="urls" :color="black"></FileType>-->
|
|
80
79
|
<!-- <FileType :urls="urls" :color="black"></FileType>
|
|
81
80
|
<chat-content :messageList="messageList"></chat-content> -->
|
|
@@ -156,25 +155,25 @@ export default {
|
|
|
156
155
|
props: {
|
|
157
156
|
messages: Array
|
|
158
157
|
},
|
|
159
|
-
data() {
|
|
158
|
+
data () {
|
|
160
159
|
return {
|
|
161
160
|
black: '',
|
|
162
|
-
welcomeSuggest:{
|
|
163
|
-
content:{
|
|
161
|
+
welcomeSuggest: {
|
|
162
|
+
content: {
|
|
164
163
|
"problemRecommendationValue": [
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
164
|
+
"工作不了了呢为什么1",
|
|
165
|
+
"工作不了了呢为什么2",
|
|
166
|
+
"工作不了了呢为什么3",
|
|
167
|
+
"工作不了了呢为什么4",
|
|
168
|
+
"工作不了了呢为什么5",
|
|
169
|
+
"工作不了了呢为什么6",
|
|
170
|
+
"工作不了了呢为什么7",
|
|
171
|
+
"工作不了了呢为什么8",
|
|
172
|
+
"工作不了了呢为什么9",
|
|
173
|
+
"工作不了了呢为什么10",
|
|
174
|
+
"工作不了了呢为什么11",
|
|
175
|
+
"工作不了了呢为什么12",
|
|
176
|
+
"工作不了了呢为什么13"
|
|
178
177
|
],
|
|
179
178
|
"actionType": "SEND_CONTENT",
|
|
180
179
|
"pageCount": 3,
|
|
@@ -186,7 +185,7 @@ export default {
|
|
|
186
185
|
"scopes": [],
|
|
187
186
|
"title": "解决日常办公问题,寻求帮助",
|
|
188
187
|
"value": [
|
|
189
|
-
|
|
188
|
+
"打印机不工作了,如何维修"
|
|
190
189
|
]
|
|
191
190
|
}
|
|
192
191
|
},
|
|
@@ -243,83 +242,83 @@ export default {
|
|
|
243
242
|
"actionType": "answer_doc_knowledge",
|
|
244
243
|
"text": "中国的省份名称有湖北省、广西壮族自治区等。",
|
|
245
244
|
"list": [
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
245
|
+
{
|
|
246
|
+
"owner": null,
|
|
247
|
+
"tagId": "658b9c5e7cf604285f7cba46",
|
|
248
|
+
"enterprise": null,
|
|
249
|
+
"tagIds": [
|
|
250
|
+
"658b9c5e7cf604285f7cba46"
|
|
251
|
+
],
|
|
252
|
+
"format": "pptx",
|
|
253
|
+
"srcContentId": "c3eb5cb9bc1f0ad84243d824932cc9f9",
|
|
254
|
+
"updateTime": "2023-12-27 11:39:10",
|
|
255
|
+
"source": "CORP_LOCAL_FILE",
|
|
256
|
+
"srcContent": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
257
|
+
"url": "https://guoranwisdom.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/26/16/50/a25ee8f370fcefa639946805d6d3a7c3/ppt_preview.pptx",
|
|
258
|
+
"knowledgeId": "658a93de63d378228271913a",
|
|
259
|
+
"knowledgePartId": "ypZaqYwBD3jzLtPbz5K8",
|
|
260
|
+
"from": "ppt_preview",
|
|
261
|
+
"introduction": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,。",
|
|
262
|
+
"previewImage": "https://askbot-pdf-all.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/27/03/39/08/658b9c477cf604285f7cb81d/pdf-image-1913302477976388839.png"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"owner": null,
|
|
266
|
+
"tagId": "658b9c5e7cf604285f7cba46",
|
|
267
|
+
"enterprise": null,
|
|
268
|
+
"tagIds": [
|
|
269
|
+
"658b9c5e7cf604285f7cba46"
|
|
270
|
+
],
|
|
271
|
+
"format": "pptx",
|
|
272
|
+
"srcContentId": "c3eb5cb9bc1f0ad84243d824932cc9f9",
|
|
273
|
+
"updateTime": "2023-12-27 11:39:10",
|
|
274
|
+
"source": "CORP_LOCAL_FILE",
|
|
275
|
+
"srcContent": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
276
|
+
"url": "https://guoranwisdom.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/26/16/50/a25ee8f370fcefa639946805d6d3a7c3/ppt_preview.pptx",
|
|
277
|
+
"knowledgeId": "658a93de63d378228271913a",
|
|
278
|
+
"knowledgePartId": "ypZaqYwBD3jzLtPbz5K8",
|
|
279
|
+
"from": "ppt_preview",
|
|
280
|
+
"introduction": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
281
|
+
"previewImage": "https://askbot-pdf-all.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/27/03/39/08/658b9c477cf604285f7cb81d/pdf-image-1913302477976388839.png"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"owner": null,
|
|
285
|
+
"tagId": "658b9c5e7cf604285f7cba46",
|
|
286
|
+
"enterprise": null,
|
|
287
|
+
"tagIds": [
|
|
288
|
+
"658b9c5e7cf604285f7cba46"
|
|
289
|
+
],
|
|
290
|
+
"format": "pptx",
|
|
291
|
+
"srcContentId": "c3eb5cb9bc1f0ad84243d824932cc9f9",
|
|
292
|
+
"updateTime": "2023-12-27 11:39:10",
|
|
293
|
+
"source": "CORP_LOCAL_FILE",
|
|
294
|
+
"srcContent": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
295
|
+
"url": "https://guoranwisdom.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/26/16/50/a25ee8f370fcefa639946805d6d3a7c3/ppt_preview.pptx",
|
|
296
|
+
"knowledgeId": "658a93de63d378228271913a",
|
|
297
|
+
"knowledgePartId": "ypZaqYwBD3jzLtPbz5K8",
|
|
298
|
+
"from": "ppt_preview",
|
|
299
|
+
"introduction": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
300
|
+
"previewImage": "https://askbot-pdf-all.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/27/03/39/08/658b9c477cf604285f7cb81d/pdf-image-1913302477976388839.png"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"owner": null,
|
|
304
|
+
"tagId": "658b9c5e7cf604285f7cba46",
|
|
305
|
+
"enterprise": null,
|
|
306
|
+
"tagIds": [
|
|
307
|
+
"658b9c5e7cf604285f7cba46"
|
|
308
|
+
],
|
|
309
|
+
"format": "pptx",
|
|
310
|
+
"srcContentId": "c3eb5cb9bc1f0ad84243d824932cc9f9",
|
|
311
|
+
"updateTime": "2023-12-27 11:39:10",
|
|
312
|
+
"source": "CORP_LOCAL_FILE",
|
|
313
|
+
"srcContent": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
314
|
+
"url": "https://guoranwisdom.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/26/16/50/a25ee8f370fcefa639946805d6d3a7c3/ppt_preview.pptx",
|
|
315
|
+
"knowledgeId": "658a93de63d378228271913a",
|
|
316
|
+
"knowledgePartId": "ypZaqYwBD3jzLtPbz5K8",
|
|
317
|
+
"from": "ppt_preview",
|
|
318
|
+
"introduction": "Spark是什么Spark 是一个开源的大数据处理引擎,它提供了一整套开发 API,包括流计算和机器学习。它支持批处理和流处理。Spark 的一个显著特点是它能够在内存中进行迭代计算,从而加快数据处理速度。尽管 Spark 是用 Scala 开发的,但它也为 Java、Scala、Python 和 R 等高级编程语言提供了开发接口。",
|
|
319
|
+
"previewImage": "https://askbot-pdf-all.oss-cn-zhangjiakou.aliyuncs.com/31623ccfe9dd4957bbd59c5823878bbe/2023/12/27/03/39/08/658b9c477cf604285f7cb81d/pdf-image-1913302477976388839.png"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
323
322
|
"renderType": 0,
|
|
324
323
|
"type": 1
|
|
325
324
|
},
|
|
@@ -579,202 +578,6 @@ export default {
|
|
|
579
578
|
]
|
|
580
579
|
}
|
|
581
580
|
},
|
|
582
|
-
{
|
|
583
|
-
version: 1,
|
|
584
|
-
content: {
|
|
585
|
-
htmlList: [
|
|
586
|
-
{
|
|
587
|
-
"src": null,
|
|
588
|
-
"dynamic": null,
|
|
589
|
-
"style": [
|
|
590
|
-
{
|
|
591
|
-
"col": 1,
|
|
592
|
-
"colums": 3
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"col": 2,
|
|
596
|
-
"colums": 3
|
|
597
|
-
}
|
|
598
|
-
],
|
|
599
|
-
"markdownList": null,
|
|
600
|
-
"list": [
|
|
601
|
-
"<p>1</p>",
|
|
602
|
-
"<p>2</p>"
|
|
603
|
-
],
|
|
604
|
-
"type": "DOUBLE"
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"src": null,
|
|
608
|
-
"dynamic": null,
|
|
609
|
-
"style": [
|
|
610
|
-
{
|
|
611
|
-
"col": 1,
|
|
612
|
-
"colums": 4
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
"col": 1,
|
|
616
|
-
"colums": 4
|
|
617
|
-
},
|
|
618
|
-
{
|
|
619
|
-
"col": 1,
|
|
620
|
-
"colums": 4
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"col": 1,
|
|
624
|
-
"colums": 4
|
|
625
|
-
}
|
|
626
|
-
],
|
|
627
|
-
"markdownList": null,
|
|
628
|
-
"list": [
|
|
629
|
-
"<p>1</p>",
|
|
630
|
-
"<p>2</p>",
|
|
631
|
-
"<p>3</p>",
|
|
632
|
-
"<p>4</p>"
|
|
633
|
-
],
|
|
634
|
-
"type": "QUADRUPLE"
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"src": null,
|
|
638
|
-
"dynamic": null,
|
|
639
|
-
"style": [
|
|
640
|
-
{
|
|
641
|
-
"col": 1,
|
|
642
|
-
"colums": 4
|
|
643
|
-
},
|
|
644
|
-
{
|
|
645
|
-
"col": 3,
|
|
646
|
-
"colums": 4
|
|
647
|
-
}
|
|
648
|
-
],
|
|
649
|
-
"markdownList": null,
|
|
650
|
-
"list": [
|
|
651
|
-
"<p>1</p>",
|
|
652
|
-
"<p>3</p>"
|
|
653
|
-
],
|
|
654
|
-
"type": "DOUBLE"
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
"src": null,
|
|
658
|
-
"dynamic": null,
|
|
659
|
-
"style": [
|
|
660
|
-
{
|
|
661
|
-
"col": 2,
|
|
662
|
-
"colums": 3
|
|
663
|
-
},
|
|
664
|
-
{
|
|
665
|
-
"col": 1,
|
|
666
|
-
"colums": 3
|
|
667
|
-
}
|
|
668
|
-
],
|
|
669
|
-
"markdownList": null,
|
|
670
|
-
"list": [
|
|
671
|
-
"<p>2</p>",
|
|
672
|
-
"<p>1</p>"
|
|
673
|
-
],
|
|
674
|
-
"type": "DOUBLE"
|
|
675
|
-
}
|
|
676
|
-
],
|
|
677
|
-
buttonList: [{ name: '我是标签1', scope: '', test: '' }]
|
|
678
|
-
}
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
version: 1,
|
|
682
|
-
content: {
|
|
683
|
-
htmlList: [
|
|
684
|
-
{
|
|
685
|
-
"src": null,
|
|
686
|
-
"dynamic": null,
|
|
687
|
-
"style": [
|
|
688
|
-
{
|
|
689
|
-
"col": 1,
|
|
690
|
-
"colums": 3
|
|
691
|
-
},
|
|
692
|
-
{
|
|
693
|
-
"col": 2,
|
|
694
|
-
"colums": 3
|
|
695
|
-
}
|
|
696
|
-
],
|
|
697
|
-
"markdownList": null,
|
|
698
|
-
"list": [
|
|
699
|
-
"<p>1</p>",
|
|
700
|
-
"<p>2</p>"
|
|
701
|
-
],
|
|
702
|
-
"type": "DOUBLE"
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"src": null,
|
|
706
|
-
"dynamic": null,
|
|
707
|
-
"style": [
|
|
708
|
-
{
|
|
709
|
-
"col": 1,
|
|
710
|
-
"colums": 4
|
|
711
|
-
},
|
|
712
|
-
{
|
|
713
|
-
"col": 1,
|
|
714
|
-
"colums": 4
|
|
715
|
-
},
|
|
716
|
-
{
|
|
717
|
-
"col": 1,
|
|
718
|
-
"colums": 4
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"col": 1,
|
|
722
|
-
"colums": 4
|
|
723
|
-
}
|
|
724
|
-
],
|
|
725
|
-
"markdownList": null,
|
|
726
|
-
"list": [
|
|
727
|
-
"<p>1</p>",
|
|
728
|
-
"<p>2</p>",
|
|
729
|
-
"<p>3</p>",
|
|
730
|
-
"<p>4</p>"
|
|
731
|
-
],
|
|
732
|
-
"type": "QUADRUPLE"
|
|
733
|
-
},
|
|
734
|
-
{
|
|
735
|
-
"src": null,
|
|
736
|
-
"dynamic": null,
|
|
737
|
-
"style": [
|
|
738
|
-
{
|
|
739
|
-
"col": 1,
|
|
740
|
-
"colums": 4
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"col": 3,
|
|
744
|
-
"colums": 4
|
|
745
|
-
}
|
|
746
|
-
],
|
|
747
|
-
"markdownList": null,
|
|
748
|
-
"list": [
|
|
749
|
-
"<p>1</p>",
|
|
750
|
-
"<p>3</p>"
|
|
751
|
-
],
|
|
752
|
-
"type": "DOUBLE"
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
"src": null,
|
|
756
|
-
"dynamic": null,
|
|
757
|
-
"style": [
|
|
758
|
-
{
|
|
759
|
-
"col": 2,
|
|
760
|
-
"colums": 3
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"col": 1,
|
|
764
|
-
"colums": 3
|
|
765
|
-
}
|
|
766
|
-
],
|
|
767
|
-
"markdownList": null,
|
|
768
|
-
"list": [
|
|
769
|
-
"<p>2</p>",
|
|
770
|
-
"<p>1</p>"
|
|
771
|
-
],
|
|
772
|
-
"type": "DOUBLE"
|
|
773
|
-
}
|
|
774
|
-
],
|
|
775
|
-
buttonList: [{ name: '我是标签1' }]
|
|
776
|
-
}
|
|
777
|
-
}
|
|
778
581
|
],
|
|
779
582
|
apiKey: '123456789'
|
|
780
583
|
},
|
|
@@ -960,1453 +763,807 @@ export default {
|
|
|
960
763
|
apiKey: '123456789'
|
|
961
764
|
},
|
|
962
765
|
formList: {
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
766
|
+
"displayStyle": null,
|
|
767
|
+
"submitted": null,
|
|
768
|
+
"apiKey": "398ba0d1857644d288a39dff6248ee63",
|
|
769
|
+
"form": {
|
|
770
|
+
"formShowName": "测试级联多选",
|
|
771
|
+
"webhookId": 375,
|
|
772
|
+
"editable": null,
|
|
773
|
+
"release": true,
|
|
774
|
+
"description": "",
|
|
775
|
+
"updateTime": "2024-08-02T08:48:39.000+00:00",
|
|
776
|
+
"processConfigId": "351",
|
|
777
|
+
"formFieldRelation": [
|
|
778
|
+
{
|
|
779
|
+
"checkImage": null,
|
|
780
|
+
"checkAttachment": null,
|
|
781
|
+
"checkText": null,
|
|
782
|
+
"editable": null,
|
|
783
|
+
"display": true,
|
|
784
|
+
"checkImageOrAttachment": null,
|
|
785
|
+
"paramName": "cascadeMany",
|
|
786
|
+
"value": [],
|
|
787
|
+
"formField": {
|
|
788
|
+
"workOrderFieldId": null,
|
|
789
|
+
"deleted": false,
|
|
790
|
+
"createTime": "2024-08-02T08:47:38.000+00:00",
|
|
791
|
+
"name": "测试级联多选",
|
|
969
792
|
"description": "",
|
|
970
|
-
"updateTime":
|
|
971
|
-
"
|
|
972
|
-
"
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
793
|
+
"updateTime": "2024-08-02T11:56:26.000+00:00",
|
|
794
|
+
"id": 341,
|
|
795
|
+
"lastOperatorId": 921,
|
|
796
|
+
"type": "CASCADER",
|
|
797
|
+
"mainId": "ab0f90737c8b4f2d85ba2157e4473110",
|
|
798
|
+
"required": null,
|
|
799
|
+
"extInfo": {
|
|
800
|
+
"WebHookParameter": [],
|
|
801
|
+
"cascade": [
|
|
802
|
+
{
|
|
803
|
+
"children": [
|
|
804
|
+
{
|
|
805
|
+
"children": [
|
|
806
|
+
{
|
|
807
|
+
"checked": false,
|
|
808
|
+
"label": "1.1.1",
|
|
809
|
+
"value": "早饭"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"checked": false,
|
|
813
|
+
"label": "1.1.2",
|
|
814
|
+
"value": "中饭"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"checked": false,
|
|
818
|
+
"label": "1.1.3",
|
|
819
|
+
"value": "晚饭"
|
|
820
|
+
}
|
|
821
|
+
],
|
|
822
|
+
"checked": true,
|
|
823
|
+
"label": "1.1",
|
|
824
|
+
"value": "吃什么饭"
|
|
825
|
+
}
|
|
826
|
+
],
|
|
827
|
+
"checked": false,
|
|
828
|
+
"label": "1",
|
|
829
|
+
"value": "我要吃饭"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"children": [
|
|
833
|
+
{
|
|
834
|
+
"checked": false,
|
|
835
|
+
"label": "2.1",
|
|
836
|
+
"value": "凉水"
|
|
1005
837
|
},
|
|
1006
|
-
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
838
|
+
{
|
|
839
|
+
"checked": false,
|
|
840
|
+
"label": "2.2",
|
|
841
|
+
"value": "温水"
|
|
1009
842
|
},
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
843
|
+
{
|
|
844
|
+
"checked": true,
|
|
845
|
+
"label": "2.3",
|
|
846
|
+
"value": "开水"
|
|
847
|
+
}
|
|
848
|
+
],
|
|
849
|
+
"checked": true,
|
|
850
|
+
"label": "2",
|
|
851
|
+
"value": "我要喝水"
|
|
1013
852
|
},
|
|
1014
|
-
|
|
1015
|
-
|
|
853
|
+
{
|
|
854
|
+
"children": [
|
|
855
|
+
{
|
|
856
|
+
"children": [
|
|
857
|
+
{
|
|
858
|
+
"checked": false,
|
|
859
|
+
"label": "3.1.1",
|
|
860
|
+
"value": "中午1点30"
|
|
861
|
+
}
|
|
862
|
+
],
|
|
863
|
+
"checked": true,
|
|
864
|
+
"label": "3.1",
|
|
865
|
+
"value": "睡午觉"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"children": [
|
|
869
|
+
{
|
|
870
|
+
"checked": false,
|
|
871
|
+
"label": "3.2.1",
|
|
872
|
+
"value": "凌晨00:00:00"
|
|
873
|
+
}
|
|
874
|
+
],
|
|
875
|
+
"checked": false,
|
|
876
|
+
"label": "3.2",
|
|
877
|
+
"value": "睡晚觉"
|
|
878
|
+
}
|
|
879
|
+
],
|
|
880
|
+
"checked": false,
|
|
881
|
+
"label": "3",
|
|
882
|
+
"value": "我要睡觉"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"children": [
|
|
886
|
+
{
|
|
887
|
+
"children": [
|
|
888
|
+
{
|
|
889
|
+
"checked": false,
|
|
890
|
+
"label": "4.1.1",
|
|
891
|
+
"value": "拖鞋上炕"
|
|
892
|
+
}
|
|
893
|
+
],
|
|
894
|
+
"checked": false,
|
|
895
|
+
"label": "4.1",
|
|
896
|
+
"value": "说学逗唱"
|
|
897
|
+
}
|
|
898
|
+
],
|
|
899
|
+
"checked": false,
|
|
900
|
+
"label": "4",
|
|
901
|
+
"value": "说相声讲究"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"checked": true,
|
|
905
|
+
"label": "5",
|
|
906
|
+
"value": "拜拜了您馁"
|
|
907
|
+
}
|
|
908
|
+
],
|
|
909
|
+
"remark": {
|
|
910
|
+
"enable": false,
|
|
911
|
+
"text": ""
|
|
1016
912
|
},
|
|
913
|
+
"selectType": "多选",
|
|
914
|
+
"value": [],
|
|
915
|
+
fieldValue: [{
|
|
916
|
+
"children": [
|
|
1017
917
|
{
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
"editable": null,
|
|
1022
|
-
"display": true,
|
|
1023
|
-
"paramName": "priority",
|
|
1024
|
-
"value": "MIDDLE",
|
|
1025
|
-
"formField": {
|
|
1026
|
-
"workOrderFieldId": "855c52d057e8410a878e61220b26e5a1",
|
|
1027
|
-
"deleted": null,
|
|
1028
|
-
"createTime": null,
|
|
1029
|
-
"name": "优先级",
|
|
1030
|
-
"description": null,
|
|
1031
|
-
"updateTime": null,
|
|
1032
|
-
"id": null,
|
|
1033
|
-
"lastOperatorId": null,
|
|
1034
|
-
"type": "SELECT",
|
|
1035
|
-
"mainId": null,
|
|
1036
|
-
"required": null,
|
|
1037
|
-
"extInfo": {
|
|
1038
|
-
"option": [
|
|
1039
|
-
{
|
|
1040
|
-
"label": "紧急",
|
|
1041
|
-
"value": "URGENT"
|
|
1042
|
-
},
|
|
1043
|
-
{
|
|
1044
|
-
"label": "高",
|
|
1045
|
-
"value": "HIGH"
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
"label": "中",
|
|
1049
|
-
"value": "MIDDLE"
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
"label": "低",
|
|
1053
|
-
"value": "LOW"
|
|
1054
|
-
}
|
|
1055
|
-
]
|
|
1056
|
-
}
|
|
1057
|
-
},
|
|
1058
|
-
"required": true,
|
|
1059
|
-
"fieldId": "workorder_priority"
|
|
918
|
+
"checked": false,
|
|
919
|
+
"label": "1.1.1",
|
|
920
|
+
"value": "早饭"
|
|
1060
921
|
},
|
|
1061
922
|
{
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
"editable": null,
|
|
1066
|
-
"display": false,
|
|
1067
|
-
"paramName": "clientId",
|
|
1068
|
-
"value": "",
|
|
1069
|
-
"formField": {
|
|
1070
|
-
"workOrderFieldId": "",
|
|
1071
|
-
"deleted": null,
|
|
1072
|
-
"createTime": null,
|
|
1073
|
-
"name": "客户",
|
|
1074
|
-
"description": null,
|
|
1075
|
-
"updateTime": null,
|
|
1076
|
-
"id": null,
|
|
1077
|
-
"lastOperatorId": null,
|
|
1078
|
-
"type": "SELECT",
|
|
1079
|
-
"mainId": null,
|
|
1080
|
-
"required": null,
|
|
1081
|
-
"extInfo": {
|
|
1082
|
-
"option": [
|
|
1083
|
-
{
|
|
1084
|
-
"label": "张庆雷",
|
|
1085
|
-
"value": "64db3651badfa5046825497d"
|
|
1086
|
-
},
|
|
1087
|
-
{
|
|
1088
|
-
"label": "刁瑶杭",
|
|
1089
|
-
"value": "64db4e09badfa504682549bd"
|
|
1090
|
-
}
|
|
1091
|
-
]
|
|
1092
|
-
}
|
|
1093
|
-
},
|
|
1094
|
-
"required": false,
|
|
1095
|
-
"fieldId": "workorder_clientId"
|
|
923
|
+
"checked": false,
|
|
924
|
+
"label": "1.1.2",
|
|
925
|
+
"value": "中饭"
|
|
1096
926
|
},
|
|
1097
927
|
{
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1112
|
-
"
|
|
1113
|
-
"lastOperatorId": null,
|
|
1114
|
-
"type": "SELECT",
|
|
1115
|
-
"mainId": null,
|
|
1116
|
-
"required": null,
|
|
1117
|
-
"extInfo": {
|
|
1118
|
-
"option": [
|
|
1119
|
-
{
|
|
1120
|
-
"label": "新建",
|
|
1121
|
-
"value": "62e787724bb3eb63c6069e9b"
|
|
1122
|
-
},
|
|
1123
|
-
{
|
|
1124
|
-
"label": "解决中",
|
|
1125
|
-
"value": "62e787724bb3eb63c6069e9c"
|
|
1126
|
-
},
|
|
1127
|
-
{
|
|
1128
|
-
"label": "已解决",
|
|
1129
|
-
"value": "62e787724bb3eb63c6069e9d"
|
|
1130
|
-
},
|
|
1131
|
-
{
|
|
1132
|
-
"label": "已关闭",
|
|
1133
|
-
"value": "62e787724bb3eb63c6069e9e"
|
|
1134
|
-
}
|
|
1135
|
-
]
|
|
1136
|
-
}
|
|
1137
|
-
},
|
|
1138
|
-
"required": true,
|
|
1139
|
-
"fieldId": "workorder_statusId"
|
|
928
|
+
"checked": false,
|
|
929
|
+
"label": "1.1.3",
|
|
930
|
+
"value": "晚饭"
|
|
931
|
+
}
|
|
932
|
+
],
|
|
933
|
+
"checked": true,
|
|
934
|
+
"label": "1.1",
|
|
935
|
+
"value": "吃什么饭"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"children": [
|
|
939
|
+
{
|
|
940
|
+
"checked": false,
|
|
941
|
+
"label": "2.1",
|
|
942
|
+
"value": "凉水"
|
|
1140
943
|
},
|
|
1141
944
|
{
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
945
|
+
"checked": false,
|
|
946
|
+
"label": "2.2",
|
|
947
|
+
"value": "温水"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"checked": true,
|
|
951
|
+
"label": "2.3",
|
|
952
|
+
"value": "开水"
|
|
953
|
+
}
|
|
954
|
+
],
|
|
955
|
+
"checked": true,
|
|
956
|
+
"label": "2",
|
|
957
|
+
"value": "我要喝水"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"checked": true,
|
|
961
|
+
"label": "2.3",
|
|
962
|
+
"value": "开水"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"children": [
|
|
966
|
+
{
|
|
967
|
+
"checked": false,
|
|
968
|
+
"label": "3.1.1",
|
|
969
|
+
"value": "中午1点30"
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
"checked": true,
|
|
973
|
+
"label": "3.1",
|
|
974
|
+
"value": "睡午觉"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"checked": true,
|
|
978
|
+
"label": "5",
|
|
979
|
+
"value": "拜拜了您馁"
|
|
980
|
+
}
|
|
981
|
+
]
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"required": false,
|
|
985
|
+
"fieldId": 341
|
|
986
|
+
}
|
|
987
|
+
],
|
|
988
|
+
"deleted": false,
|
|
989
|
+
"createTime": "2024-08-02T08:48:39.000+00:00",
|
|
990
|
+
"releasedFields": [
|
|
991
|
+
{
|
|
992
|
+
"workOrderFieldId": null,
|
|
993
|
+
"deleted": false,
|
|
994
|
+
"createTime": "2024-08-02T08:47:38.000+00:00",
|
|
995
|
+
"name": "测试级联多选",
|
|
996
|
+
"description": "",
|
|
997
|
+
"updateTime": "2024-08-02T08:47:38.000+00:00",
|
|
998
|
+
"id": 341,
|
|
999
|
+
"lastOperatorId": 1921,
|
|
1000
|
+
"type": "CASCADER",
|
|
1001
|
+
"mainId": "ab0f90737c8b4f2d85ba2157e4473110",
|
|
1002
|
+
"required": false,
|
|
1003
|
+
"extInfo": {
|
|
1004
|
+
"WebHookParameter": [],
|
|
1005
|
+
"cascade": [
|
|
1006
|
+
{
|
|
1007
|
+
"children": [
|
|
1008
|
+
{
|
|
1009
|
+
"children": [
|
|
1174
1010
|
{
|
|
1175
|
-
"
|
|
1176
|
-
"
|
|
1177
|
-
|
|
1178
|
-
"name": "图片",
|
|
1179
|
-
"id": "8b9807bfd4dc438e89cfe0fc06a6151c"
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"name": "视频",
|
|
1183
|
-
"id": "df79bb44f2694dd593409846fdd59744"
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
"name": "附件",
|
|
1187
|
-
"id": "3dcb14d1c15d4d538fe88bd8df7f7dea"
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
"name": "说明文字",
|
|
1191
|
-
"id": "bd9be2a541464ee5a2df1ddfe792de71"
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
"name": "时间日期",
|
|
1195
|
-
"id": "cada45aa439c486b81239d641b6eadd3"
|
|
1196
|
-
}
|
|
1197
|
-
],
|
|
1198
|
-
"label": "选项一",
|
|
1199
|
-
"relationItems": [
|
|
1200
|
-
"8b9807bfd4dc438e89cfe0fc06a6151c",
|
|
1201
|
-
"df79bb44f2694dd593409846fdd59744",
|
|
1202
|
-
"3dcb14d1c15d4d538fe88bd8df7f7dea",
|
|
1203
|
-
"bd9be2a541464ee5a2df1ddfe792de71",
|
|
1204
|
-
"cada45aa439c486b81239d641b6eadd3"
|
|
1205
|
-
],
|
|
1206
|
-
"value": "选项一",
|
|
1207
|
-
"requiredItems": [
|
|
1208
|
-
"3dcb14d1c15d4d538fe88bd8df7f7dea"
|
|
1209
|
-
]
|
|
1011
|
+
"checked": false,
|
|
1012
|
+
"label": "1.1.1",
|
|
1013
|
+
"value": "早饭"
|
|
1210
1014
|
},
|
|
1211
1015
|
{
|
|
1212
|
-
"
|
|
1213
|
-
"
|
|
1214
|
-
|
|
1215
|
-
"label": "选项二",
|
|
1216
|
-
"relationItems": [
|
|
1217
|
-
],
|
|
1218
|
-
"value": "选项二",
|
|
1219
|
-
"requiredItems": [
|
|
1220
|
-
]
|
|
1016
|
+
"checked": false,
|
|
1017
|
+
"label": "1.1.2",
|
|
1018
|
+
"value": "中饭"
|
|
1221
1019
|
},
|
|
1222
1020
|
{
|
|
1223
|
-
"
|
|
1224
|
-
"
|
|
1225
|
-
|
|
1226
|
-
"label": "选项三",
|
|
1227
|
-
"relationItems": [
|
|
1228
|
-
],
|
|
1229
|
-
"value": "选项三",
|
|
1230
|
-
"requiredItems": [
|
|
1231
|
-
]
|
|
1021
|
+
"checked": false,
|
|
1022
|
+
"label": "1.1.3",
|
|
1023
|
+
"value": "晚饭"
|
|
1232
1024
|
}
|
|
1233
1025
|
],
|
|
1234
|
-
"
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
},
|
|
1238
|
-
"placeholder": "请选择",
|
|
1239
|
-
"associatedAction": [
|
|
1240
|
-
"relationItems",
|
|
1241
|
-
"requiredItems"
|
|
1242
|
-
],
|
|
1243
|
-
"dependent": {
|
|
1244
|
-
}
|
|
1026
|
+
"checked": false,
|
|
1027
|
+
"label": "1.1",
|
|
1028
|
+
"value": "吃什么饭"
|
|
1245
1029
|
}
|
|
1246
|
-
|
|
1247
|
-
"
|
|
1248
|
-
"
|
|
1030
|
+
],
|
|
1031
|
+
"checked": false,
|
|
1032
|
+
"label": "1",
|
|
1033
|
+
"value": "我要吃饭"
|
|
1249
1034
|
},
|
|
1250
1035
|
{
|
|
1251
|
-
"
|
|
1252
|
-
"checkAttachment": null,
|
|
1253
|
-
"checkText": null,
|
|
1254
|
-
"editable": null,
|
|
1255
|
-
"display": true,
|
|
1256
|
-
"paramName": "fieldValue.8b9807bfd4dc438e89cfe0fc06a6151c",
|
|
1257
|
-
"value": "",
|
|
1258
|
-
"formField": {
|
|
1259
|
-
"workOrderFieldId": "8b9807bfd4dc438e89cfe0fc06a6151c",
|
|
1260
|
-
"deleted": null,
|
|
1261
|
-
"createTime": null,
|
|
1262
|
-
"name": "图片",
|
|
1263
|
-
"description": null,
|
|
1264
|
-
"updateTime": null,
|
|
1265
|
-
"id": null,
|
|
1266
|
-
"lastOperatorId": null,
|
|
1267
|
-
"type": "IMAGE",
|
|
1268
|
-
"mainId": null,
|
|
1269
|
-
"required": null,
|
|
1270
|
-
"extInfo": {
|
|
1271
|
-
"watermark": {
|
|
1272
|
-
"enable": false,
|
|
1273
|
-
"text": ""
|
|
1274
|
-
},
|
|
1275
|
-
"isDelete": true,
|
|
1276
|
-
"autoInput": {
|
|
1277
|
-
"enable": false,
|
|
1278
|
-
"rule": {
|
|
1279
|
-
"handler": "",
|
|
1280
|
-
"exp": "",
|
|
1281
|
-
"type": "reg"
|
|
1282
|
-
},
|
|
1283
|
-
"source": [
|
|
1284
|
-
]
|
|
1285
|
-
},
|
|
1286
|
-
"limit": "1",
|
|
1287
|
-
"range": {
|
|
1288
|
-
"start": "",
|
|
1289
|
-
"end": ""
|
|
1290
|
-
},
|
|
1291
|
-
"dependentFieldId": {
|
|
1292
|
-
"3477b4fba5654c5e9d1bbe865bfe881d": [
|
|
1293
|
-
"选项一"
|
|
1294
|
-
]
|
|
1295
|
-
},
|
|
1296
|
-
"placeholder": "请选择"
|
|
1297
|
-
}
|
|
1298
|
-
},
|
|
1299
|
-
"required": false,
|
|
1300
|
-
"fieldId": "8b9807bfd4dc438e89cfe0fc06a6151c"
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
"checkImage": null,
|
|
1304
|
-
"checkAttachment": null,
|
|
1305
|
-
"checkText": null,
|
|
1306
|
-
"editable": null,
|
|
1307
|
-
"display": true,
|
|
1308
|
-
"paramName": "fieldValue.df79bb44f2694dd593409846fdd59744",
|
|
1309
|
-
"value": "",
|
|
1310
|
-
"formField": {
|
|
1311
|
-
"workOrderFieldId": "df79bb44f2694dd593409846fdd59744",
|
|
1312
|
-
"deleted": null,
|
|
1313
|
-
"createTime": null,
|
|
1314
|
-
"name": "视频",
|
|
1315
|
-
"description": null,
|
|
1316
|
-
"updateTime": null,
|
|
1317
|
-
"id": null,
|
|
1318
|
-
"lastOperatorId": null,
|
|
1319
|
-
"type": "VIDEO",
|
|
1320
|
-
"mainId": null,
|
|
1321
|
-
"required": null,
|
|
1322
|
-
"extInfo": {
|
|
1323
|
-
"watermark": {
|
|
1324
|
-
"enable": false,
|
|
1325
|
-
"text": ""
|
|
1326
|
-
},
|
|
1327
|
-
"isDelete": true,
|
|
1328
|
-
"autoInput": {
|
|
1329
|
-
"enable": false,
|
|
1330
|
-
"rule": {
|
|
1331
|
-
"handler": "",
|
|
1332
|
-
"exp": "",
|
|
1333
|
-
"type": "reg"
|
|
1334
|
-
},
|
|
1335
|
-
"source": [
|
|
1336
|
-
]
|
|
1337
|
-
},
|
|
1338
|
-
"limit": "1",
|
|
1339
|
-
"range": {
|
|
1340
|
-
"start": "",
|
|
1341
|
-
"end": ""
|
|
1342
|
-
},
|
|
1343
|
-
"dependentFieldId": {
|
|
1344
|
-
"3477b4fba5654c5e9d1bbe865bfe881d": [
|
|
1345
|
-
"选项一"
|
|
1346
|
-
]
|
|
1347
|
-
},
|
|
1348
|
-
"placeholder": "请选择"
|
|
1349
|
-
}
|
|
1350
|
-
},
|
|
1351
|
-
"required": false,
|
|
1352
|
-
"fieldId": "df79bb44f2694dd593409846fdd59744"
|
|
1353
|
-
},
|
|
1354
|
-
{
|
|
1355
|
-
"checkImage": null,
|
|
1356
|
-
"checkAttachment": null,
|
|
1357
|
-
"checkText": null,
|
|
1358
|
-
"editable": null,
|
|
1359
|
-
"display": true,
|
|
1360
|
-
"paramName": "fieldValue.3dcb14d1c15d4d538fe88bd8df7f7dea",
|
|
1361
|
-
"value": "",
|
|
1362
|
-
"formField": {
|
|
1363
|
-
"workOrderFieldId": "3dcb14d1c15d4d538fe88bd8df7f7dea",
|
|
1364
|
-
"deleted": null,
|
|
1365
|
-
"createTime": null,
|
|
1366
|
-
"name": "附件",
|
|
1367
|
-
"description": null,
|
|
1368
|
-
"updateTime": null,
|
|
1369
|
-
"id": null,
|
|
1370
|
-
"lastOperatorId": null,
|
|
1371
|
-
"type": "ATTACHMENT",
|
|
1372
|
-
"mainId": null,
|
|
1373
|
-
"required": null,
|
|
1374
|
-
"extInfo": {
|
|
1375
|
-
"watermark": {
|
|
1376
|
-
"enable": false,
|
|
1377
|
-
"text": ""
|
|
1378
|
-
},
|
|
1379
|
-
"isDelete": true,
|
|
1380
|
-
"autoInput": {
|
|
1381
|
-
"enable": false,
|
|
1382
|
-
"rule": {
|
|
1383
|
-
"handler": "",
|
|
1384
|
-
"exp": "",
|
|
1385
|
-
"type": "reg"
|
|
1386
|
-
},
|
|
1387
|
-
"source": [
|
|
1388
|
-
]
|
|
1389
|
-
},
|
|
1390
|
-
"limit": "1",
|
|
1391
|
-
"requiredDependentFieldId": {
|
|
1392
|
-
"3477b4fba5654c5e9d1bbe865bfe881d": [
|
|
1393
|
-
"选项一"
|
|
1394
|
-
]
|
|
1395
|
-
},
|
|
1396
|
-
"range": {
|
|
1397
|
-
"start": "",
|
|
1398
|
-
"end": ""
|
|
1399
|
-
},
|
|
1400
|
-
"dependentFieldId": {
|
|
1401
|
-
"3477b4fba5654c5e9d1bbe865bfe881d": [
|
|
1402
|
-
"选项一"
|
|
1403
|
-
]
|
|
1404
|
-
},
|
|
1405
|
-
"placeholder": "请选择"
|
|
1406
|
-
}
|
|
1407
|
-
},
|
|
1408
|
-
"required": false,
|
|
1409
|
-
"fieldId": "3dcb14d1c15d4d538fe88bd8df7f7dea"
|
|
1410
|
-
},
|
|
1411
|
-
{
|
|
1412
|
-
"checkImage": null,
|
|
1413
|
-
"checkAttachment": null,
|
|
1414
|
-
"checkText": null,
|
|
1415
|
-
"editable": null,
|
|
1416
|
-
"display": true,
|
|
1417
|
-
"paramName": "fieldValue.bd9be2a541464ee5a2df1ddfe792de71",
|
|
1418
|
-
"value": "",
|
|
1419
|
-
"formField": {
|
|
1420
|
-
"workOrderFieldId": "bd9be2a541464ee5a2df1ddfe792de71",
|
|
1421
|
-
"deleted": null,
|
|
1422
|
-
"createTime": null,
|
|
1423
|
-
"name": "说明文字",
|
|
1424
|
-
"description": null,
|
|
1425
|
-
"updateTime": null,
|
|
1426
|
-
"id": null,
|
|
1427
|
-
"lastOperatorId": null,
|
|
1428
|
-
"type": "EXPLAIN",
|
|
1429
|
-
"mainId": null,
|
|
1430
|
-
"required": null,
|
|
1431
|
-
"extInfo": {
|
|
1432
|
-
"isDelete": true,
|
|
1433
|
-
"autoInput": {
|
|
1434
|
-
"enable": false,
|
|
1435
|
-
"rule": {
|
|
1436
|
-
"handler": "",
|
|
1437
|
-
"exp": "",
|
|
1438
|
-
"type": "reg"
|
|
1439
|
-
},
|
|
1440
|
-
"source": [
|
|
1441
|
-
]
|
|
1442
|
-
},
|
|
1443
|
-
"range": {
|
|
1444
|
-
"start": "",
|
|
1445
|
-
"end": ""
|
|
1446
|
-
},
|
|
1447
|
-
"dependentFieldId": {
|
|
1448
|
-
"3477b4fba5654c5e9d1bbe865bfe881d": [
|
|
1449
|
-
"选项一"
|
|
1450
|
-
]
|
|
1451
|
-
},
|
|
1452
|
-
"placeholder": "请输入说明内容",
|
|
1453
|
-
"url": ""
|
|
1454
|
-
}
|
|
1455
|
-
},
|
|
1456
|
-
"required": false,
|
|
1457
|
-
"fieldId": "bd9be2a541464ee5a2df1ddfe792de71"
|
|
1458
|
-
},
|
|
1459
|
-
{
|
|
1460
|
-
"checkImage": null,
|
|
1461
|
-
"checkAttachment": null,
|
|
1462
|
-
"checkText": null,
|
|
1463
|
-
"editable": null,
|
|
1464
|
-
"display": true,
|
|
1465
|
-
"paramName": "fieldValue.cada45aa439c486b81239d641b6eadd3",
|
|
1466
|
-
"value": "",
|
|
1467
|
-
"formField": {
|
|
1468
|
-
"workOrderFieldId": "cada45aa439c486b81239d641b6eadd3",
|
|
1469
|
-
"deleted": null,
|
|
1470
|
-
"createTime": null,
|
|
1471
|
-
"name": "时间日期",
|
|
1472
|
-
"description": null,
|
|
1473
|
-
"updateTime": null,
|
|
1474
|
-
"id": null,
|
|
1475
|
-
"lastOperatorId": null,
|
|
1476
|
-
"type": "TIME_PICKER",
|
|
1477
|
-
"mainId": null,
|
|
1478
|
-
"required": null,
|
|
1479
|
-
"extInfo": {
|
|
1480
|
-
"isDelete": true,
|
|
1481
|
-
"autoInput": {
|
|
1482
|
-
"enable": false,
|
|
1483
|
-
"rule": {
|
|
1484
|
-
"handler": "",
|
|
1485
|
-
"exp": "",
|
|
1486
|
-
"type": "reg"
|
|
1487
|
-
},
|
|
1488
|
-
"source": [
|
|
1489
|
-
]
|
|
1490
|
-
},
|
|
1491
|
-
"pattern": "",
|
|
1492
|
-
"mold": "DATE",
|
|
1493
|
-
"range": {
|
|
1494
|
-
"start": "",
|
|
1495
|
-
"end": ""
|
|
1496
|
-
},
|
|
1497
|
-
"dependentFieldId": {
|
|
1498
|
-
"3477b4fba5654c5e9d1bbe865bfe881d": [
|
|
1499
|
-
"选项一"
|
|
1500
|
-
]
|
|
1501
|
-
},
|
|
1502
|
-
"dataTimePattern": "yyyy-MM-dd",
|
|
1503
|
-
"placeholder": "请选择"
|
|
1504
|
-
}
|
|
1505
|
-
},
|
|
1506
|
-
"required": false,
|
|
1507
|
-
"fieldId": "cada45aa439c486b81239d641b6eadd3"
|
|
1508
|
-
},
|
|
1509
|
-
{
|
|
1510
|
-
"checkImage": null,
|
|
1511
|
-
"checkAttachment": null,
|
|
1512
|
-
"checkText": null,
|
|
1513
|
-
"editable": null,
|
|
1514
|
-
"display": true,
|
|
1515
|
-
"paramName": "fieldValue.2caa887053194074aae5021cd3722365",
|
|
1516
|
-
"value": "",
|
|
1517
|
-
"formField": {
|
|
1518
|
-
"workOrderFieldId": "2caa887053194074aae5021cd3722365",
|
|
1519
|
-
"deleted": null,
|
|
1520
|
-
"createTime": null,
|
|
1521
|
-
"name": "聊天记录",
|
|
1522
|
-
"description": null,
|
|
1523
|
-
"updateTime": null,
|
|
1524
|
-
"id": null,
|
|
1525
|
-
"lastOperatorId": null,
|
|
1526
|
-
"type": "CHAT_RECORD",
|
|
1527
|
-
"mainId": null,
|
|
1528
|
-
"required": null,
|
|
1529
|
-
"extInfo": {
|
|
1530
|
-
"visibleWithoutPermission": true,
|
|
1531
|
-
"isDelete": true,
|
|
1532
|
-
"autoInput": {
|
|
1533
|
-
"enable": false,
|
|
1534
|
-
"rule": {
|
|
1535
|
-
"handler": "",
|
|
1536
|
-
"exp": "",
|
|
1537
|
-
"type": "reg"
|
|
1538
|
-
},
|
|
1539
|
-
"source": [
|
|
1540
|
-
]
|
|
1541
|
-
},
|
|
1542
|
-
"range": {
|
|
1543
|
-
"start": "",
|
|
1544
|
-
"end": ""
|
|
1545
|
-
},
|
|
1546
|
-
"disabled": false
|
|
1547
|
-
}
|
|
1548
|
-
},
|
|
1549
|
-
"required": false,
|
|
1550
|
-
"fieldId": "2caa887053194074aae5021cd3722365"
|
|
1551
|
-
}
|
|
1552
|
-
],
|
|
1553
|
-
"deleted": null,
|
|
1554
|
-
"createTime": null,
|
|
1555
|
-
"releasedFields": null,
|
|
1556
|
-
"scope": null,
|
|
1557
|
-
"name": "测试显示字段",
|
|
1558
|
-
"id": null,
|
|
1559
|
-
"mainId": "85cfab541d6d4056ab20f97be010468d",
|
|
1560
|
-
"webHookRequest": {
|
|
1561
|
-
"method": "POST",
|
|
1562
|
-
"name": null,
|
|
1563
|
-
"url": "http://bearing.bot-public/order/internal/85cfab541d6d4056ab20f97be010468d",
|
|
1564
|
-
"setting": {
|
|
1565
|
-
"authorization": null,
|
|
1566
|
-
"paramType": "raw",
|
|
1567
|
-
"headers": [
|
|
1568
|
-
{
|
|
1569
|
-
"description": null,
|
|
1570
|
-
"value": "application/json;charset=UTF-8",
|
|
1571
|
-
"key": "Content-Type"
|
|
1572
|
-
}
|
|
1573
|
-
],
|
|
1574
|
-
"paramPath": null,
|
|
1575
|
-
"response": null,
|
|
1576
|
-
"body": null,
|
|
1577
|
-
"params": [
|
|
1578
|
-
{
|
|
1579
|
-
"entityName": null,
|
|
1580
|
-
"description": null,
|
|
1581
|
-
"entityId": null,
|
|
1582
|
-
"type": null,
|
|
1583
|
-
"value": "85cfab541d6d4056ab20f97be010468d",
|
|
1584
|
-
"key": "mid",
|
|
1585
|
-
"required": null
|
|
1586
|
-
},
|
|
1587
|
-
{
|
|
1588
|
-
"entityName": null,
|
|
1589
|
-
"description": null,
|
|
1590
|
-
"entityId": null,
|
|
1591
|
-
"type": null,
|
|
1592
|
-
"value": "",
|
|
1593
|
-
"key": "name",
|
|
1594
|
-
"required": null
|
|
1595
|
-
},
|
|
1596
|
-
{
|
|
1597
|
-
"entityName": null,
|
|
1598
|
-
"description": null,
|
|
1599
|
-
"entityId": null,
|
|
1600
|
-
"type": null,
|
|
1601
|
-
"value": "",
|
|
1602
|
-
"key": "description",
|
|
1603
|
-
"required": null
|
|
1604
|
-
},
|
|
1605
|
-
{
|
|
1606
|
-
"entityName": null,
|
|
1607
|
-
"description": null,
|
|
1608
|
-
"entityId": null,
|
|
1609
|
-
"type": null,
|
|
1610
|
-
"value": "64f0443303324c24628371fd",
|
|
1611
|
-
"key": "templateId",
|
|
1612
|
-
"required": null
|
|
1613
|
-
},
|
|
1614
|
-
{
|
|
1615
|
-
"entityName": null,
|
|
1616
|
-
"description": null,
|
|
1617
|
-
"entityId": null,
|
|
1618
|
-
"type": null,
|
|
1619
|
-
"value": "MIDDLE",
|
|
1620
|
-
"key": "priority",
|
|
1621
|
-
"required": null
|
|
1622
|
-
},
|
|
1036
|
+
"children": [
|
|
1623
1037
|
{
|
|
1624
|
-
"
|
|
1625
|
-
"
|
|
1626
|
-
"
|
|
1627
|
-
"type": null,
|
|
1628
|
-
"value": "",
|
|
1629
|
-
"key": "clientId",
|
|
1630
|
-
"required": null
|
|
1038
|
+
"checked": false,
|
|
1039
|
+
"label": "2.1",
|
|
1040
|
+
"value": "凉水"
|
|
1631
1041
|
},
|
|
1632
1042
|
{
|
|
1633
|
-
"
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1636
|
-
"type": null,
|
|
1637
|
-
"value": "",
|
|
1638
|
-
"key": "assigneeGroupId",
|
|
1639
|
-
"required": null
|
|
1043
|
+
"checked": false,
|
|
1044
|
+
"label": "2.2",
|
|
1045
|
+
"value": "温水"
|
|
1640
1046
|
},
|
|
1641
1047
|
{
|
|
1642
|
-
"
|
|
1643
|
-
"
|
|
1644
|
-
"
|
|
1645
|
-
"type": null,
|
|
1646
|
-
"value": "",
|
|
1647
|
-
"key": "assigneeId",
|
|
1648
|
-
"required": null
|
|
1649
|
-
},
|
|
1650
|
-
{
|
|
1651
|
-
"entityName": null,
|
|
1652
|
-
"description": null,
|
|
1653
|
-
"entityId": null,
|
|
1654
|
-
"type": null,
|
|
1655
|
-
"value": "62e787724bb3eb63c6069e9b",
|
|
1656
|
-
"key": "statusId",
|
|
1657
|
-
"required": null
|
|
1658
|
-
},
|
|
1659
|
-
{
|
|
1660
|
-
"entityName": null,
|
|
1661
|
-
"description": null,
|
|
1662
|
-
"entityId": null,
|
|
1663
|
-
"type": null,
|
|
1664
|
-
"value": [
|
|
1665
|
-
],
|
|
1666
|
-
"key": "followersId",
|
|
1667
|
-
"required": null
|
|
1668
|
-
},
|
|
1669
|
-
{
|
|
1670
|
-
"entityName": null,
|
|
1671
|
-
"description": null,
|
|
1672
|
-
"entityId": null,
|
|
1673
|
-
"type": null,
|
|
1674
|
-
"value": "ASKBOT_DIALOG_FORM",
|
|
1675
|
-
"key": "source",
|
|
1676
|
-
"required": null
|
|
1677
|
-
},
|
|
1678
|
-
{
|
|
1679
|
-
"entityName": null,
|
|
1680
|
-
"description": null,
|
|
1681
|
-
"entityId": null,
|
|
1682
|
-
"type": null,
|
|
1683
|
-
"value": "",
|
|
1684
|
-
"key": "fieldValue.3477b4fba5654c5e9d1bbe865bfe881d",
|
|
1685
|
-
"required": null
|
|
1686
|
-
},
|
|
1687
|
-
{
|
|
1688
|
-
"entityName": null,
|
|
1689
|
-
"description": null,
|
|
1690
|
-
"entityId": null,
|
|
1691
|
-
"type": null,
|
|
1692
|
-
"value": "",
|
|
1693
|
-
"key": "fieldValue.8b9807bfd4dc438e89cfe0fc06a6151c",
|
|
1694
|
-
"required": null
|
|
1695
|
-
},
|
|
1696
|
-
{
|
|
1697
|
-
"entityName": null,
|
|
1698
|
-
"description": null,
|
|
1699
|
-
"entityId": null,
|
|
1700
|
-
"type": null,
|
|
1701
|
-
"value": "",
|
|
1702
|
-
"key": "fieldValue.df79bb44f2694dd593409846fdd59744",
|
|
1703
|
-
"required": null
|
|
1704
|
-
},
|
|
1705
|
-
{
|
|
1706
|
-
"entityName": null,
|
|
1707
|
-
"description": null,
|
|
1708
|
-
"entityId": null,
|
|
1709
|
-
"type": null,
|
|
1710
|
-
"value": "",
|
|
1711
|
-
"key": "fieldValue.3dcb14d1c15d4d538fe88bd8df7f7dea",
|
|
1712
|
-
"required": null
|
|
1713
|
-
},
|
|
1714
|
-
{
|
|
1715
|
-
"entityName": null,
|
|
1716
|
-
"description": null,
|
|
1717
|
-
"entityId": null,
|
|
1718
|
-
"type": null,
|
|
1719
|
-
"value": "",
|
|
1720
|
-
"key": "fieldValue.bd9be2a541464ee5a2df1ddfe792de71",
|
|
1721
|
-
"required": null
|
|
1722
|
-
},
|
|
1723
|
-
{
|
|
1724
|
-
"entityName": null,
|
|
1725
|
-
"description": null,
|
|
1726
|
-
"entityId": null,
|
|
1727
|
-
"type": null,
|
|
1728
|
-
"value": "",
|
|
1729
|
-
"key": "fieldValue.cada45aa439c486b81239d641b6eadd3",
|
|
1730
|
-
"required": null
|
|
1731
|
-
},
|
|
1732
|
-
{
|
|
1733
|
-
"entityName": null,
|
|
1734
|
-
"description": null,
|
|
1735
|
-
"entityId": null,
|
|
1736
|
-
"type": null,
|
|
1737
|
-
"value": "",
|
|
1738
|
-
"key": "fieldValue.2caa887053194074aae5021cd3722365",
|
|
1739
|
-
"required": null
|
|
1048
|
+
"checked": true,
|
|
1049
|
+
"label": "2.3",
|
|
1050
|
+
"value": "开水"
|
|
1740
1051
|
}
|
|
1741
|
-
]
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
"form": {
|
|
1751
|
-
"formShowName":"请假申请",
|
|
1752
|
-
"webhookId":486,
|
|
1753
|
-
"release":true,
|
|
1754
|
-
"description":"请假申请",
|
|
1755
|
-
"updateTime":1700035604000,
|
|
1756
|
-
"processConfigId":"441",
|
|
1757
|
-
"formFieldRelation":[
|
|
1758
|
-
{
|
|
1759
|
-
"display":false,
|
|
1760
|
-
"paramName":"empNo",
|
|
1761
|
-
"value":"21120072",
|
|
1762
|
-
"formField":{
|
|
1763
|
-
"deleted":false,
|
|
1764
|
-
"createTime":1690442179000,
|
|
1765
|
-
"name":"工号",
|
|
1766
|
-
"description":"",
|
|
1767
|
-
"updateTime":1690442179000,
|
|
1768
|
-
"id":329,
|
|
1769
|
-
"lastOperatorId":114788,
|
|
1770
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1771
|
-
"type":"INPUT",
|
|
1772
|
-
"extInfo":{
|
|
1773
|
-
"WebHookParameter":[
|
|
1774
|
-
|
|
1775
|
-
],
|
|
1776
|
-
"value":""
|
|
1777
|
-
}
|
|
1778
|
-
},
|
|
1779
|
-
"required":true,
|
|
1780
|
-
"fieldId":329,
|
|
1781
|
-
"relationDisplay":true
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"display":true,
|
|
1785
|
-
"paramName":"type",
|
|
1786
|
-
"value":"0",
|
|
1787
|
-
"formField":{
|
|
1788
|
-
"deleted":false,
|
|
1789
|
-
"createTime":1700035412000,
|
|
1790
|
-
"name":"请假类别",
|
|
1791
|
-
"description":"请假类别",
|
|
1792
|
-
"updateTime":1700035412000,
|
|
1793
|
-
"id":393,
|
|
1794
|
-
"lastOperatorId":123152,
|
|
1795
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1796
|
-
"type":"SELECT",
|
|
1797
|
-
"extInfo":{
|
|
1798
|
-
"WebHookParameter":[
|
|
1799
|
-
|
|
1800
|
-
],
|
|
1801
|
-
"remark":{
|
|
1802
|
-
"enable":false,
|
|
1803
|
-
"text":""
|
|
1804
|
-
},
|
|
1805
|
-
"value":[
|
|
1806
|
-
|
|
1807
|
-
],
|
|
1808
|
-
"option":[
|
|
1809
|
-
{
|
|
1810
|
-
"_default":"false",
|
|
1811
|
-
"label":"事假",
|
|
1812
|
-
"value":"0"
|
|
1813
|
-
},
|
|
1814
|
-
{
|
|
1815
|
-
"_default":"false",
|
|
1816
|
-
"label":"婚假",
|
|
1817
|
-
"value":"1"
|
|
1818
|
-
},
|
|
1819
|
-
{
|
|
1820
|
-
"_default":"false",
|
|
1821
|
-
"label":"调休假",
|
|
1822
|
-
"value":"2"
|
|
1823
|
-
},
|
|
1824
|
-
{
|
|
1825
|
-
"_default":"false",
|
|
1826
|
-
"label":"病假",
|
|
1827
|
-
"value":"3"
|
|
1828
|
-
},
|
|
1829
|
-
{
|
|
1830
|
-
"_default":"false",
|
|
1831
|
-
"label":"丧假",
|
|
1832
|
-
"value":"4"
|
|
1833
|
-
},
|
|
1834
|
-
{
|
|
1835
|
-
"_default":"false",
|
|
1836
|
-
"label":"产假",
|
|
1837
|
-
"value":"5"
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"_default":"false",
|
|
1841
|
-
"label":"工伤假",
|
|
1842
|
-
"value":"6"
|
|
1843
|
-
},
|
|
1844
|
-
{
|
|
1845
|
-
"_default":"false",
|
|
1846
|
-
"label":"外出",
|
|
1847
|
-
"value":"7"
|
|
1848
|
-
},
|
|
1849
|
-
{
|
|
1850
|
-
"_default":"false",
|
|
1851
|
-
"label":"其它假",
|
|
1852
|
-
"value":"8"
|
|
1853
|
-
},
|
|
1854
|
-
{
|
|
1855
|
-
"_default":"false",
|
|
1856
|
-
"label":"排休",
|
|
1857
|
-
"value":"9"
|
|
1858
|
-
}
|
|
1859
|
-
]
|
|
1860
|
-
}
|
|
1861
|
-
},
|
|
1862
|
-
"required":true,
|
|
1863
|
-
"fieldId":393,
|
|
1864
|
-
"relationDisplay":true
|
|
1865
|
-
},
|
|
1866
|
-
{
|
|
1867
|
-
"display":true,
|
|
1868
|
-
"paramName":"startDate",
|
|
1869
|
-
"value":"",
|
|
1870
|
-
"formField":{
|
|
1871
|
-
"deleted":false,
|
|
1872
|
-
"createTime":1699502119000,
|
|
1873
|
-
"name":"开始日期",
|
|
1874
|
-
"description":"开始日期",
|
|
1875
|
-
"updateTime":1699502119000,
|
|
1876
|
-
"id":375,
|
|
1877
|
-
"lastOperatorId":123152,
|
|
1878
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1879
|
-
"type":"DATE_PICKER",
|
|
1880
|
-
"extInfo":{
|
|
1881
|
-
"WebHookParameter":[
|
|
1882
|
-
|
|
1883
|
-
],
|
|
1884
|
-
"remark":{
|
|
1885
|
-
"enable":false,
|
|
1886
|
-
"text":""
|
|
1887
|
-
},
|
|
1888
|
-
"value":""
|
|
1889
|
-
}
|
|
1890
|
-
},
|
|
1891
|
-
"required":true,
|
|
1892
|
-
"fieldId":375,
|
|
1893
|
-
"relationDisplay":true
|
|
1894
|
-
},
|
|
1895
|
-
{
|
|
1896
|
-
"display":true,
|
|
1897
|
-
"paramName":"starttime",
|
|
1898
|
-
"value":"",
|
|
1899
|
-
"formField":{
|
|
1900
|
-
"deleted":false,
|
|
1901
|
-
"createTime":1699502135000,
|
|
1902
|
-
"name":"开始时间",
|
|
1903
|
-
"description":"开始时间",
|
|
1904
|
-
"updateTime":1699502230000,
|
|
1905
|
-
"id":376,
|
|
1906
|
-
"lastOperatorId":123152,
|
|
1907
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1908
|
-
"type":"TIME_PICKER",
|
|
1909
|
-
"extInfo":{
|
|
1910
|
-
"WebHookParameter":[
|
|
1911
|
-
|
|
1912
|
-
],
|
|
1913
|
-
"remark":{
|
|
1914
|
-
"enable":false,
|
|
1915
|
-
"text":""
|
|
1916
|
-
},
|
|
1917
|
-
"value":""
|
|
1918
|
-
}
|
|
1919
|
-
},
|
|
1920
|
-
"required":true,
|
|
1921
|
-
"fieldId":376,
|
|
1922
|
-
"relationDisplay":true
|
|
1923
|
-
},
|
|
1924
|
-
{
|
|
1925
|
-
"display":true,
|
|
1926
|
-
"paramName":"endDate",
|
|
1927
|
-
"value":"",
|
|
1928
|
-
"formField":{
|
|
1929
|
-
"deleted":false,
|
|
1930
|
-
"createTime":1699501619000,
|
|
1931
|
-
"name":"结束日期",
|
|
1932
|
-
"description":"结束日期",
|
|
1933
|
-
"updateTime":1699501619000,
|
|
1934
|
-
"id":372,
|
|
1935
|
-
"lastOperatorId":123152,
|
|
1936
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1937
|
-
"type":"DATE_PICKER",
|
|
1938
|
-
"extInfo":{
|
|
1939
|
-
"WebHookParameter":[
|
|
1940
|
-
|
|
1941
|
-
],
|
|
1942
|
-
"remark":{
|
|
1943
|
-
"enable":false,
|
|
1944
|
-
"text":""
|
|
1945
|
-
},
|
|
1946
|
-
"value":""
|
|
1947
|
-
}
|
|
1948
|
-
},
|
|
1949
|
-
"required":true,
|
|
1950
|
-
"fieldId":372,
|
|
1951
|
-
"relationDisplay":true
|
|
1952
|
-
},
|
|
1953
|
-
{
|
|
1954
|
-
"display":true,
|
|
1955
|
-
"paramName":"endtime",
|
|
1956
|
-
"value":"",
|
|
1957
|
-
"formField":{
|
|
1958
|
-
"deleted":false,
|
|
1959
|
-
"createTime":1699501639000,
|
|
1960
|
-
"name":"结束时间",
|
|
1961
|
-
"description":"结束时刻",
|
|
1962
|
-
"updateTime":1699501639000,
|
|
1963
|
-
"id":373,
|
|
1964
|
-
"lastOperatorId":123152,
|
|
1965
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1966
|
-
"type":"TIME_PICKER",
|
|
1967
|
-
"extInfo":{
|
|
1968
|
-
"WebHookParameter":[
|
|
1969
|
-
|
|
1970
|
-
],
|
|
1971
|
-
"remark":{
|
|
1972
|
-
"enable":false,
|
|
1973
|
-
"text":""
|
|
1974
|
-
},
|
|
1975
|
-
"value":""
|
|
1976
|
-
}
|
|
1977
|
-
},
|
|
1978
|
-
"required":true,
|
|
1979
|
-
"fieldId":373,
|
|
1980
|
-
"relationDisplay":true
|
|
1981
|
-
},
|
|
1982
|
-
{
|
|
1983
|
-
"display":true,
|
|
1984
|
-
"paramName":"hour",
|
|
1985
|
-
"value":"",
|
|
1986
|
-
"formField":{
|
|
1987
|
-
"deleted":false,
|
|
1988
|
-
"createTime":1700035520000,
|
|
1989
|
-
"name":"请假小时",
|
|
1990
|
-
"description":"请假小时",
|
|
1991
|
-
"updateTime":1700035520000,
|
|
1992
|
-
"id":395,
|
|
1993
|
-
"lastOperatorId":123152,
|
|
1994
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
1995
|
-
"type":"INPUT",
|
|
1996
|
-
"extInfo":{
|
|
1997
|
-
"WebHookParameter":[
|
|
1998
|
-
|
|
1999
|
-
],
|
|
2000
|
-
"remark":{
|
|
2001
|
-
"enable":false,
|
|
2002
|
-
"text":""
|
|
2003
|
-
},
|
|
2004
|
-
"value":""
|
|
2005
|
-
}
|
|
2006
|
-
},
|
|
2007
|
-
"required":true,
|
|
2008
|
-
"fieldId":395,
|
|
2009
|
-
"relationDisplay":true
|
|
2010
|
-
},
|
|
2011
|
-
{
|
|
2012
|
-
"display":true,
|
|
2013
|
-
"paramName":"reason",
|
|
2014
|
-
"value":"",
|
|
2015
|
-
"formField":{
|
|
2016
|
-
"deleted":false,
|
|
2017
|
-
"createTime":1700035437000,
|
|
2018
|
-
"name":"请假事由",
|
|
2019
|
-
"description":"请假事由",
|
|
2020
|
-
"updateTime":1700035437000,
|
|
2021
|
-
"id":394,
|
|
2022
|
-
"lastOperatorId":123152,
|
|
2023
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
2024
|
-
"type":"TEXTAREA",
|
|
2025
|
-
"extInfo":{
|
|
2026
|
-
"WebHookParameter":[
|
|
2027
|
-
|
|
2028
|
-
],
|
|
2029
|
-
"remark":{
|
|
2030
|
-
"enable":false,
|
|
2031
|
-
"text":""
|
|
2032
|
-
},
|
|
2033
|
-
"value":""
|
|
2034
|
-
}
|
|
2035
|
-
},
|
|
2036
|
-
"required":true,
|
|
2037
|
-
"fieldId":394,
|
|
2038
|
-
"relationDisplay":true
|
|
2039
|
-
}
|
|
2040
|
-
],
|
|
2041
|
-
"deleted":false,
|
|
2042
|
-
"createTime":1700035441000,
|
|
2043
|
-
"releasedFields":[
|
|
2044
|
-
{
|
|
2045
|
-
"deleted":false,
|
|
2046
|
-
"createTime":1690442179000,
|
|
2047
|
-
"name":"工号",
|
|
2048
|
-
"description":"",
|
|
2049
|
-
"updateTime":1690442179000,
|
|
2050
|
-
"id":329,
|
|
2051
|
-
"lastOperatorId":114788,
|
|
2052
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
2053
|
-
"type":"INPUT",
|
|
2054
|
-
"required":true,
|
|
2055
|
-
"extInfo":{
|
|
2056
|
-
"WebHookParameter":[
|
|
2057
|
-
|
|
2058
|
-
],
|
|
2059
|
-
"value":""
|
|
2060
|
-
}
|
|
2061
|
-
},
|
|
2062
|
-
{
|
|
2063
|
-
"deleted":false,
|
|
2064
|
-
"createTime":1700035412000,
|
|
2065
|
-
"name":"请假类别",
|
|
2066
|
-
"description":"请假类别",
|
|
2067
|
-
"updateTime":1700035412000,
|
|
2068
|
-
"id":393,
|
|
2069
|
-
"lastOperatorId":123152,
|
|
2070
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
2071
|
-
"type":"SELECT",
|
|
2072
|
-
"required":true,
|
|
2073
|
-
"extInfo":{
|
|
2074
|
-
"WebHookParameter":[
|
|
2075
|
-
|
|
2076
|
-
],
|
|
2077
|
-
"remark":{
|
|
2078
|
-
"enable":false,
|
|
2079
|
-
"text":""
|
|
2080
|
-
},
|
|
2081
|
-
"value":[
|
|
2082
|
-
|
|
2083
|
-
],
|
|
2084
|
-
"option":[
|
|
2085
|
-
{
|
|
2086
|
-
"_default":"false",
|
|
2087
|
-
"label":"事假",
|
|
2088
|
-
"value":"0"
|
|
2089
|
-
},
|
|
2090
|
-
{
|
|
2091
|
-
"_default":"false",
|
|
2092
|
-
"label":"婚假",
|
|
2093
|
-
"value":"1"
|
|
2094
|
-
},
|
|
2095
|
-
{
|
|
2096
|
-
"_default":"false",
|
|
2097
|
-
"label":"调休假",
|
|
2098
|
-
"value":"2"
|
|
2099
|
-
},
|
|
2100
|
-
{
|
|
2101
|
-
"_default":"false",
|
|
2102
|
-
"label":"病假",
|
|
2103
|
-
"value":"3"
|
|
2104
|
-
},
|
|
2105
|
-
{
|
|
2106
|
-
"_default":"false",
|
|
2107
|
-
"label":"丧假",
|
|
2108
|
-
"value":"4"
|
|
2109
|
-
},
|
|
2110
|
-
{
|
|
2111
|
-
"_default":"false",
|
|
2112
|
-
"label":"产假",
|
|
2113
|
-
"value":"5"
|
|
2114
|
-
},
|
|
2115
|
-
{
|
|
2116
|
-
"_default":"false",
|
|
2117
|
-
"label":"工伤假",
|
|
2118
|
-
"value":"6"
|
|
2119
|
-
},
|
|
2120
|
-
{
|
|
2121
|
-
"_default":"false",
|
|
2122
|
-
"label":"外出",
|
|
2123
|
-
"value":"7"
|
|
2124
|
-
},
|
|
2125
|
-
{
|
|
2126
|
-
"_default":"false",
|
|
2127
|
-
"label":"其它假",
|
|
2128
|
-
"value":"8"
|
|
2129
|
-
},
|
|
2130
|
-
{
|
|
2131
|
-
"_default":"false",
|
|
2132
|
-
"label":"排休",
|
|
2133
|
-
"value":"9"
|
|
2134
|
-
}
|
|
2135
|
-
]
|
|
2136
|
-
}
|
|
2137
|
-
},
|
|
2138
|
-
{
|
|
2139
|
-
"deleted":false,
|
|
2140
|
-
"createTime":1699502119000,
|
|
2141
|
-
"name":"开始日期",
|
|
2142
|
-
"description":"开始日期",
|
|
2143
|
-
"updateTime":1699502119000,
|
|
2144
|
-
"id":375,
|
|
2145
|
-
"lastOperatorId":123152,
|
|
2146
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
2147
|
-
"type":"DATE_PICKER",
|
|
2148
|
-
"required":true,
|
|
2149
|
-
"extInfo":{
|
|
2150
|
-
"WebHookParameter":[
|
|
2151
|
-
|
|
2152
|
-
],
|
|
2153
|
-
"remark":{
|
|
2154
|
-
"enable":false,
|
|
2155
|
-
"text":""
|
|
2156
|
-
},
|
|
2157
|
-
"value":""
|
|
2158
|
-
}
|
|
2159
|
-
},
|
|
2160
|
-
{
|
|
2161
|
-
"deleted":false,
|
|
2162
|
-
"createTime":1699502135000,
|
|
2163
|
-
"name":"开始时间",
|
|
2164
|
-
"description":"开始时间",
|
|
2165
|
-
"updateTime":1699502230000,
|
|
2166
|
-
"id":376,
|
|
2167
|
-
"lastOperatorId":123152,
|
|
2168
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
2169
|
-
"type":"TIME_PICKER",
|
|
2170
|
-
"required":true,
|
|
2171
|
-
"extInfo":{
|
|
2172
|
-
"WebHookParameter":[
|
|
2173
|
-
|
|
2174
|
-
],
|
|
2175
|
-
"remark":{
|
|
2176
|
-
"enable":false,
|
|
2177
|
-
"text":""
|
|
2178
|
-
},
|
|
2179
|
-
"value":""
|
|
2180
|
-
}
|
|
2181
|
-
},
|
|
1052
|
+
],
|
|
1053
|
+
"checked": true,
|
|
1054
|
+
"label": "2",
|
|
1055
|
+
"value": "我要喝水"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"children": [
|
|
1059
|
+
{
|
|
1060
|
+
"children": [
|
|
2182
1061
|
{
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
"WebHookParameter":[
|
|
2195
|
-
|
|
2196
|
-
],
|
|
2197
|
-
"remark":{
|
|
2198
|
-
"enable":false,
|
|
2199
|
-
"text":""
|
|
2200
|
-
},
|
|
2201
|
-
"value":""
|
|
2202
|
-
}
|
|
2203
|
-
},
|
|
1062
|
+
"checked": false,
|
|
1063
|
+
"label": "3.1.1",
|
|
1064
|
+
"value": "中午1点30"
|
|
1065
|
+
}
|
|
1066
|
+
],
|
|
1067
|
+
"checked": false,
|
|
1068
|
+
"label": "3.1",
|
|
1069
|
+
"value": "睡午觉"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"children": [
|
|
2204
1073
|
{
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
"value":""
|
|
2224
|
-
}
|
|
2225
|
-
},
|
|
1074
|
+
"checked": false,
|
|
1075
|
+
"label": "3.2.1",
|
|
1076
|
+
"value": "凌晨00:00:00"
|
|
1077
|
+
}
|
|
1078
|
+
],
|
|
1079
|
+
"checked": false,
|
|
1080
|
+
"label": "3.2",
|
|
1081
|
+
"value": "睡晚觉"
|
|
1082
|
+
}
|
|
1083
|
+
],
|
|
1084
|
+
"checked": false,
|
|
1085
|
+
"label": "3",
|
|
1086
|
+
"value": "我要睡觉"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"children": [
|
|
1090
|
+
{
|
|
1091
|
+
"children": [
|
|
2226
1092
|
{
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
1093
|
+
"checked": false,
|
|
1094
|
+
"label": "4.1.1",
|
|
1095
|
+
"value": "拖鞋上炕"
|
|
1096
|
+
}
|
|
1097
|
+
],
|
|
1098
|
+
"checked": false,
|
|
1099
|
+
"label": "4.1",
|
|
1100
|
+
"value": "说学逗唱"
|
|
1101
|
+
}
|
|
1102
|
+
],
|
|
1103
|
+
"checked": false,
|
|
1104
|
+
"label": "4",
|
|
1105
|
+
"value": "说相声讲究"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"checked": true,
|
|
1109
|
+
"label": "5",
|
|
1110
|
+
"value": "拜拜了您馁"
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
1113
|
+
"remark": {
|
|
1114
|
+
"enable": false,
|
|
1115
|
+
"text": ""
|
|
1116
|
+
},
|
|
1117
|
+
"value": []
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
],
|
|
1121
|
+
"scope": {
|
|
1122
|
+
"bots": null,
|
|
1123
|
+
"scope": 1,
|
|
1124
|
+
"botIds": [
|
|
1125
|
+
1494
|
|
1126
|
+
]
|
|
1127
|
+
},
|
|
1128
|
+
"name": "测试级联多选",
|
|
1129
|
+
"id": 351,
|
|
1130
|
+
"mainId": "ab0f90737c8b4f2d85ba2157e4473110",
|
|
1131
|
+
"webHookRequest": {
|
|
1132
|
+
"method": "POST",
|
|
1133
|
+
"resultUpdateEntityId": null,
|
|
1134
|
+
"name": "测试级联多选",
|
|
1135
|
+
"id": null,
|
|
1136
|
+
"jsonTemplate": null,
|
|
1137
|
+
"url": "http://42.51.20.153:718/test/webhookFormCascadeMany",
|
|
1138
|
+
"setting": {
|
|
1139
|
+
"authorization": {
|
|
1140
|
+
"password": null,
|
|
1141
|
+
"type": null,
|
|
1142
|
+
"userName": null,
|
|
1143
|
+
"token": null
|
|
1144
|
+
},
|
|
1145
|
+
"paramType": "none",
|
|
1146
|
+
"headers": [
|
|
1147
|
+
{
|
|
1148
|
+
"description": "",
|
|
1149
|
+
"value": "",
|
|
1150
|
+
"key": ""
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"description": null,
|
|
1154
|
+
"value": "application/json;charset=UTF-8",
|
|
1155
|
+
"key": "content-type"
|
|
1156
|
+
}
|
|
1157
|
+
],
|
|
1158
|
+
"paramPath": null,
|
|
1159
|
+
"response": {
|
|
1160
|
+
"sendResponse": {
|
|
1161
|
+
"msg": "success"
|
|
1162
|
+
},
|
|
1163
|
+
"config": [
|
|
1164
|
+
{
|
|
1165
|
+
"multivalued": false,
|
|
1166
|
+
"name": "",
|
|
1167
|
+
"type": null,
|
|
1168
|
+
"value": ""
|
|
1169
|
+
}
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
1172
|
+
"body": {
|
|
1173
|
+
"fileUrl": null,
|
|
1174
|
+
"fileItem": null,
|
|
1175
|
+
"params": [
|
|
1176
|
+
{
|
|
1177
|
+
"entityName": null,
|
|
1178
|
+
"description": "",
|
|
1179
|
+
"entityId": null,
|
|
1180
|
+
"type": null,
|
|
1181
|
+
"value": "",
|
|
1182
|
+
"key": "",
|
|
1183
|
+
"required": null
|
|
1184
|
+
}
|
|
1185
|
+
],
|
|
1186
|
+
"type": "none",
|
|
1187
|
+
"content": null
|
|
1188
|
+
},
|
|
1189
|
+
"params": [
|
|
1190
|
+
{
|
|
1191
|
+
"entityName": [],
|
|
1192
|
+
"description": null,
|
|
1193
|
+
"entityId": null,
|
|
1194
|
+
"type": null,
|
|
1195
|
+
"value": "123",
|
|
1196
|
+
"key": "selectOne",
|
|
1197
|
+
"required": false
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"entityName": [],
|
|
1201
|
+
"description": null,
|
|
1202
|
+
"entityId": null,
|
|
1203
|
+
"type": null,
|
|
1204
|
+
"value": "[\"123\",\"123\"]",
|
|
1205
|
+
"key": "selectMany",
|
|
1206
|
+
"required": false
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"entityName": [],
|
|
1210
|
+
"description": null,
|
|
1211
|
+
"entityId": null,
|
|
1212
|
+
"type": null,
|
|
1213
|
+
"value": "[\"123\",\"123\"]",
|
|
1214
|
+
"key": "cascadeOne",
|
|
1215
|
+
"required": false
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"entityName": [],
|
|
1219
|
+
"description": null,
|
|
1220
|
+
"entityId": null,
|
|
1221
|
+
"type": null,
|
|
1222
|
+
"value": "[[\"123\",\"123\"],[\"123\",\"123\"]]",
|
|
1223
|
+
"key": "cascadeMany",
|
|
1224
|
+
"required": false
|
|
1225
|
+
}
|
|
1226
|
+
]
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"triggerWorkOrderLastMsgId": null,
|
|
1231
|
+
"formActionId": "bafa5072-b21b-464d-ba5c-360ec7851cff"
|
|
1232
|
+
},
|
|
1233
|
+
formList2:{
|
|
1234
|
+
"displayStyle": null,
|
|
1235
|
+
"submitted": null,
|
|
1236
|
+
"apiKey": "398ba0d1857644d288a39dff6248ee63",
|
|
1237
|
+
"form": {
|
|
1238
|
+
"formShowName": "测试级联单选",
|
|
1239
|
+
"webhookId": 374,
|
|
1240
|
+
"editable": null,
|
|
1241
|
+
"release": true,
|
|
1242
|
+
"description": "",
|
|
1243
|
+
"updateTime": "2024-08-02T08:48:10.000+00:00",
|
|
1244
|
+
"processConfigId": "350",
|
|
1245
|
+
"formFieldRelation": [
|
|
1246
|
+
{
|
|
1247
|
+
"checkImage": null,
|
|
1248
|
+
"checkAttachment": null,
|
|
1249
|
+
"checkText": null,
|
|
1250
|
+
"editable": null,
|
|
1251
|
+
"display": true,
|
|
1252
|
+
"checkImageOrAttachment": null,
|
|
1253
|
+
"paramName": "cascadeOne",
|
|
1254
|
+
"value": [],
|
|
1255
|
+
"formField": {
|
|
1256
|
+
"workOrderFieldId": null,
|
|
1257
|
+
"deleted": false,
|
|
1258
|
+
"createTime": "2024-08-02T08:38:14.000+00:00",
|
|
1259
|
+
"name": "测试级联单选",
|
|
1260
|
+
"description": "测试级联单选",
|
|
1261
|
+
"updateTime": "2024-08-06T07:27:37.000+00:00",
|
|
1262
|
+
"id": 340,
|
|
1263
|
+
"lastOperatorId": 921,
|
|
1264
|
+
"type": "CASCADER",
|
|
1265
|
+
"mainId": "ab0f90737c8b4f2d85ba2157e4473110",
|
|
1266
|
+
"required": null,
|
|
1267
|
+
"extInfo": {
|
|
1268
|
+
"WebHookParameter": [],
|
|
1269
|
+
"cascade": [
|
|
1270
|
+
{
|
|
1271
|
+
"children": [
|
|
1272
|
+
{
|
|
1273
|
+
"children": [
|
|
1274
|
+
{
|
|
1275
|
+
"checked": true,
|
|
1276
|
+
"label": "1.1.1",
|
|
1277
|
+
"value": "桃子"
|
|
1278
|
+
}
|
|
1279
|
+
],
|
|
1280
|
+
"checked": false,
|
|
1281
|
+
"label": "1.1",
|
|
1282
|
+
"value": "苹果"
|
|
1283
|
+
}
|
|
1284
|
+
],
|
|
1285
|
+
"checked": false,
|
|
1286
|
+
"label": "1",
|
|
1287
|
+
"value": "水果"
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"children": [
|
|
1291
|
+
{
|
|
1292
|
+
"checked": false,
|
|
1293
|
+
"label": "2.1",
|
|
1294
|
+
"value": "黄瓜"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"checked": false,
|
|
1298
|
+
"label": "2.2",
|
|
1299
|
+
"value": "番茄"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"children": [
|
|
1303
|
+
{
|
|
1304
|
+
"checked": false,
|
|
1305
|
+
"label": "2.3.1",
|
|
1306
|
+
"value": "卷心白菜"
|
|
1307
|
+
}
|
|
1308
|
+
],
|
|
1309
|
+
"checked": false,
|
|
1310
|
+
"label": "2.3",
|
|
1311
|
+
"value": "白菜"
|
|
1312
|
+
}
|
|
1313
|
+
],
|
|
1314
|
+
"checked": false,
|
|
1315
|
+
"label": "2",
|
|
1316
|
+
"value": "蔬菜"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"children": [
|
|
1320
|
+
{
|
|
1321
|
+
"children": [
|
|
1322
|
+
{
|
|
1323
|
+
"checked": false,
|
|
1324
|
+
"label": "3.1.1",
|
|
1325
|
+
"value": "怡宝"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"checked": false,
|
|
1329
|
+
"label": "3.1.2",
|
|
1330
|
+
"value": "农夫山泉"
|
|
1331
|
+
}
|
|
1332
|
+
],
|
|
1333
|
+
"checked": false,
|
|
1334
|
+
"label": "3.1",
|
|
1335
|
+
"value": "矿泉水"
|
|
1336
|
+
}
|
|
1337
|
+
],
|
|
1338
|
+
"checked": false,
|
|
1339
|
+
"label": "3",
|
|
1340
|
+
"value": "饮料"
|
|
1341
|
+
}
|
|
1342
|
+
],
|
|
1343
|
+
"remark": {
|
|
1344
|
+
"enable": false,
|
|
1345
|
+
"text": ""
|
|
1346
|
+
},
|
|
1347
|
+
"selectType": "单选",
|
|
1348
|
+
"value": [],
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
2239
1351
|
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
1352
|
+
"required": false,
|
|
1353
|
+
"fieldId": 340
|
|
1354
|
+
}
|
|
1355
|
+
],
|
|
1356
|
+
"deleted": false,
|
|
1357
|
+
"createTime": "2024-08-02T08:48:03.000+00:00",
|
|
1358
|
+
"releasedFields": [
|
|
1359
|
+
{
|
|
1360
|
+
"workOrderFieldId": null,
|
|
1361
|
+
"deleted": false,
|
|
1362
|
+
"createTime": "2024-08-02T08:38:14.000+00:00",
|
|
1363
|
+
"name": "测试级联单选",
|
|
1364
|
+
"description": "测试级联单选",
|
|
1365
|
+
"updateTime": "2024-08-02T08:38:14.000+00:00",
|
|
1366
|
+
"id": 340,
|
|
1367
|
+
"lastOperatorId": 1921,
|
|
1368
|
+
"type": "CASCADER",
|
|
1369
|
+
"mainId": "ab0f90737c8b4f2d85ba2157e4473110",
|
|
1370
|
+
"required": false,
|
|
1371
|
+
"extInfo": {
|
|
1372
|
+
"WebHookParameter": [],
|
|
1373
|
+
"cascade": [
|
|
1374
|
+
{
|
|
1375
|
+
"children": [
|
|
1376
|
+
{
|
|
1377
|
+
"children": [
|
|
2248
1378
|
{
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
"description":"请假事由",
|
|
2253
|
-
"updateTime":1700035437000,
|
|
2254
|
-
"id":394,
|
|
2255
|
-
"lastOperatorId":123152,
|
|
2256
|
-
"mainId":"27f97e86582345e2b83c577166e45dfc",
|
|
2257
|
-
"type":"TEXTAREA",
|
|
2258
|
-
"required":true,
|
|
2259
|
-
"extInfo":{
|
|
2260
|
-
"WebHookParameter":[
|
|
2261
|
-
|
|
2262
|
-
],
|
|
2263
|
-
"remark":{
|
|
2264
|
-
"enable":false,
|
|
2265
|
-
"text":""
|
|
2266
|
-
},
|
|
2267
|
-
"value":""
|
|
2268
|
-
}
|
|
1379
|
+
"checked": false,
|
|
1380
|
+
"label": "1.1.1",
|
|
1381
|
+
"value": "桃子"
|
|
2269
1382
|
}
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
1383
|
+
],
|
|
1384
|
+
"checked": true,
|
|
1385
|
+
"label": "1.1",
|
|
1386
|
+
"value": "苹果"
|
|
1387
|
+
}
|
|
1388
|
+
],
|
|
1389
|
+
"checked": false,
|
|
1390
|
+
"label": "1",
|
|
1391
|
+
"value": "水果"
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"children": [
|
|
1395
|
+
{
|
|
1396
|
+
"checked": false,
|
|
1397
|
+
"label": "2.1",
|
|
1398
|
+
"value": "黄瓜"
|
|
2276
1399
|
},
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
]
|
|
2313
|
-
},
|
|
2314
|
-
"body":{
|
|
2315
|
-
"params":[
|
|
2316
|
-
{
|
|
2317
|
-
"description":"",
|
|
2318
|
-
"value":"",
|
|
2319
|
-
"key":""
|
|
2320
|
-
}
|
|
2321
|
-
],
|
|
2322
|
-
"type":"none"
|
|
2323
|
-
},
|
|
2324
|
-
"params":[
|
|
2325
|
-
{
|
|
2326
|
-
"entityName":[
|
|
2327
|
-
|
|
2328
|
-
],
|
|
2329
|
-
"value":"102521",
|
|
2330
|
-
"key":"workflowId",
|
|
2331
|
-
"required":true
|
|
2332
|
-
},
|
|
2333
|
-
{
|
|
2334
|
-
"entityName":[
|
|
2335
|
-
|
|
2336
|
-
],
|
|
2337
|
-
"value":"21120072",
|
|
2338
|
-
"key":"empNo",
|
|
2339
|
-
"required":true
|
|
2340
|
-
},
|
|
2341
|
-
{
|
|
2342
|
-
"entityName":[
|
|
2343
|
-
|
|
2344
|
-
],
|
|
2345
|
-
"value":"08:00",
|
|
2346
|
-
"key":"starttime",
|
|
2347
|
-
"required":true
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
"entityName":[
|
|
2351
|
-
|
|
2352
|
-
],
|
|
2353
|
-
"value":"2023-11-10",
|
|
2354
|
-
"key":"startDate",
|
|
2355
|
-
"required":true
|
|
2356
|
-
},
|
|
2357
|
-
{
|
|
2358
|
-
"entityName":[
|
|
2359
|
-
|
|
2360
|
-
],
|
|
2361
|
-
"value":"0",
|
|
2362
|
-
"key":"type",
|
|
2363
|
-
"required":true
|
|
2364
|
-
},
|
|
2365
|
-
{
|
|
2366
|
-
"entityName":[
|
|
2367
|
-
|
|
2368
|
-
],
|
|
2369
|
-
"value":"2023-11-15",
|
|
2370
|
-
"key":"endDate",
|
|
2371
|
-
"required":true
|
|
2372
|
-
},
|
|
2373
|
-
{
|
|
2374
|
-
"entityName":[
|
|
2375
|
-
|
|
2376
|
-
],
|
|
2377
|
-
"value":"18:00",
|
|
2378
|
-
"key":"endtime",
|
|
2379
|
-
"required":true
|
|
2380
|
-
},
|
|
2381
|
-
{
|
|
2382
|
-
"entityName":[
|
|
2383
|
-
|
|
2384
|
-
],
|
|
2385
|
-
"value":"测试",
|
|
2386
|
-
"key":"reason",
|
|
2387
|
-
"required":true
|
|
2388
|
-
},
|
|
2389
|
-
{
|
|
2390
|
-
"entityName":[
|
|
2391
|
-
|
|
2392
|
-
],
|
|
2393
|
-
"value":"OA-001",
|
|
2394
|
-
"key":"businessId",
|
|
2395
|
-
"required":true
|
|
2396
|
-
},
|
|
2397
|
-
{
|
|
2398
|
-
"entityName":[
|
|
2399
|
-
|
|
2400
|
-
],
|
|
2401
|
-
"value":"5",
|
|
2402
|
-
"key":"hour",
|
|
2403
|
-
"required":true
|
|
2404
|
-
}
|
|
2405
|
-
]
|
|
1400
|
+
{
|
|
1401
|
+
"checked": false,
|
|
1402
|
+
"label": "2.2",
|
|
1403
|
+
"value": "番茄"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"children": [
|
|
1407
|
+
{
|
|
1408
|
+
"checked": false,
|
|
1409
|
+
"label": "2.3.1",
|
|
1410
|
+
"value": "卷心白菜"
|
|
1411
|
+
}
|
|
1412
|
+
],
|
|
1413
|
+
"checked": false,
|
|
1414
|
+
"label": "2.3",
|
|
1415
|
+
"value": "白菜"
|
|
1416
|
+
}
|
|
1417
|
+
],
|
|
1418
|
+
"checked": false,
|
|
1419
|
+
"label": "2",
|
|
1420
|
+
"value": "蔬菜"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"children": [
|
|
1424
|
+
{
|
|
1425
|
+
"children": [
|
|
1426
|
+
{
|
|
1427
|
+
"checked": false,
|
|
1428
|
+
"label": "3.1.1",
|
|
1429
|
+
"value": "怡宝"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"checked": false,
|
|
1433
|
+
"label": "3.1.2",
|
|
1434
|
+
"value": "农夫山泉"
|
|
2406
1435
|
}
|
|
1436
|
+
],
|
|
1437
|
+
"checked": false,
|
|
1438
|
+
"label": "3.1",
|
|
1439
|
+
"value": "矿泉水"
|
|
2407
1440
|
}
|
|
1441
|
+
],
|
|
1442
|
+
"checked": false,
|
|
1443
|
+
"label": "3",
|
|
1444
|
+
"value": "饮料"
|
|
2408
1445
|
}
|
|
2409
|
-
|
|
1446
|
+
],
|
|
1447
|
+
"remark": {
|
|
1448
|
+
"enable": false,
|
|
1449
|
+
"text": ""
|
|
1450
|
+
},
|
|
1451
|
+
"value": []
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
],
|
|
1455
|
+
"scope": {
|
|
1456
|
+
"bots": null,
|
|
1457
|
+
"scope": 1,
|
|
1458
|
+
"botIds": [
|
|
1459
|
+
1494
|
|
1460
|
+
]
|
|
1461
|
+
},
|
|
1462
|
+
"name": "测试级联单选",
|
|
1463
|
+
"id": 350,
|
|
1464
|
+
"mainId": "ab0f90737c8b4f2d85ba2157e4473110",
|
|
1465
|
+
"webHookRequest": {
|
|
1466
|
+
"method": "POST",
|
|
1467
|
+
"resultUpdateEntityId": null,
|
|
1468
|
+
"name": "测试级联单选",
|
|
1469
|
+
"id": null,
|
|
1470
|
+
"jsonTemplate": null,
|
|
1471
|
+
"url": "http://42.51.20.153:718/test/webhookFormCascadeOne",
|
|
1472
|
+
"setting": {
|
|
1473
|
+
"authorization": {
|
|
1474
|
+
"password": null,
|
|
1475
|
+
"type": null,
|
|
1476
|
+
"userName": null,
|
|
1477
|
+
"token": null
|
|
1478
|
+
},
|
|
1479
|
+
"paramType": "none",
|
|
1480
|
+
"headers": [
|
|
1481
|
+
{
|
|
1482
|
+
"description": "",
|
|
1483
|
+
"value": "",
|
|
1484
|
+
"key": ""
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"description": null,
|
|
1488
|
+
"value": "application/json;charset=UTF-8",
|
|
1489
|
+
"key": "content-type"
|
|
1490
|
+
}
|
|
1491
|
+
],
|
|
1492
|
+
"paramPath": null,
|
|
1493
|
+
"response": {
|
|
1494
|
+
"sendResponse": {
|
|
1495
|
+
"msg": "success"
|
|
1496
|
+
},
|
|
1497
|
+
"config": [
|
|
1498
|
+
{
|
|
1499
|
+
"multivalued": false,
|
|
1500
|
+
"name": "",
|
|
1501
|
+
"type": null,
|
|
1502
|
+
"value": ""
|
|
1503
|
+
}
|
|
1504
|
+
]
|
|
1505
|
+
},
|
|
1506
|
+
"body": {
|
|
1507
|
+
"fileUrl": null,
|
|
1508
|
+
"fileItem": null,
|
|
1509
|
+
"params": [
|
|
1510
|
+
{
|
|
1511
|
+
"entityName": null,
|
|
1512
|
+
"description": "",
|
|
1513
|
+
"entityId": null,
|
|
1514
|
+
"type": null,
|
|
1515
|
+
"value": "",
|
|
1516
|
+
"key": "",
|
|
1517
|
+
"required": null
|
|
1518
|
+
}
|
|
1519
|
+
],
|
|
1520
|
+
"type": "none",
|
|
1521
|
+
"content": null
|
|
1522
|
+
},
|
|
1523
|
+
"params": [
|
|
1524
|
+
{
|
|
1525
|
+
"entityName": [],
|
|
1526
|
+
"description": null,
|
|
1527
|
+
"entityId": null,
|
|
1528
|
+
"type": null,
|
|
1529
|
+
"value": "123",
|
|
1530
|
+
"key": "selectOne",
|
|
1531
|
+
"required": false
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"entityName": [],
|
|
1535
|
+
"description": null,
|
|
1536
|
+
"entityId": null,
|
|
1537
|
+
"type": null,
|
|
1538
|
+
"value": "[\"123\",\"123\"]",
|
|
1539
|
+
"key": "selectMany",
|
|
1540
|
+
"required": false
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"entityName": [],
|
|
1544
|
+
"description": null,
|
|
1545
|
+
"entityId": null,
|
|
1546
|
+
"type": null,
|
|
1547
|
+
"value": "[\"123\",\"123\"]",
|
|
1548
|
+
"key": "cascadeOne",
|
|
1549
|
+
"required": false
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"entityName": [],
|
|
1553
|
+
"description": null,
|
|
1554
|
+
"entityId": null,
|
|
1555
|
+
"type": null,
|
|
1556
|
+
"value": "[[\"123\",\"123\"],[\"123\",\"123\"]]",
|
|
1557
|
+
"key": "cascadeMany",
|
|
1558
|
+
"required": false
|
|
1559
|
+
}
|
|
1560
|
+
]
|
|
1561
|
+
}
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
"triggerWorkOrderLastMsgId": null,
|
|
1565
|
+
"formActionId": "cb3e235c-059d-42bd-a5d8-2668f2ea9926"
|
|
1566
|
+
},
|
|
2410
1567
|
formList3: {
|
|
2411
1568
|
formActionId: '13',
|
|
2412
1569
|
form: {
|
|
@@ -4708,7 +3865,7 @@ export default {
|
|
|
4708
3865
|
],
|
|
4709
3866
|
status: true
|
|
4710
3867
|
},
|
|
4711
|
-
headerStyleValue: "工具名称",
|
|
3868
|
+
headerStyleValue: "工具名称",
|
|
4712
3869
|
footerStyleValue: "果然大模型"
|
|
4713
3870
|
},
|
|
4714
3871
|
|
|
@@ -4753,7 +3910,7 @@ export default {
|
|
|
4753
3910
|
],
|
|
4754
3911
|
status: true
|
|
4755
3912
|
},
|
|
4756
|
-
headerStyleValue: "工具名称",
|
|
3913
|
+
headerStyleValue: "工具名称",
|
|
4757
3914
|
footerStyleValue: "果然大模型"
|
|
4758
3915
|
},
|
|
4759
3916
|
{
|
|
@@ -4761,6 +3918,7 @@ export default {
|
|
|
4761
3918
|
url:
|
|
4762
3919
|
'https://guoranopen-zjk.oss-cn-zhangjiakou.aliyuncs.com/2021/08/24/07/35/41221223-c180-4f3f-bdc8-94875b693965/WeChat_20210719215122.mp4',
|
|
4763
3920
|
videoFlag: false,
|
|
3921
|
+
nodownload: false,
|
|
4764
3922
|
videoUploadPercent: 0,
|
|
4765
3923
|
isShowUploadVideo: true,
|
|
4766
3924
|
recommend: {
|
|
@@ -4789,7 +3947,7 @@ export default {
|
|
|
4789
3947
|
],
|
|
4790
3948
|
status: true
|
|
4791
3949
|
},
|
|
4792
|
-
headerStyleValue: "工具名称",
|
|
3950
|
+
headerStyleValue: "工具名称",
|
|
4793
3951
|
footerStyleValue: "果然大模型"
|
|
4794
3952
|
},
|
|
4795
3953
|
{
|
|
@@ -4797,7 +3955,7 @@ export default {
|
|
|
4797
3955
|
type: 'answer_text',
|
|
4798
3956
|
id: '60df03aeeea6014311dc4285',
|
|
4799
3957
|
intentId: 6064,
|
|
4800
|
-
headerStyleValue: "工具名称",
|
|
3958
|
+
headerStyleValue: "工具名称",
|
|
4801
3959
|
footerStyleValue: "果然大模型"
|
|
4802
3960
|
}
|
|
4803
3961
|
],
|
|
@@ -4856,78 +4014,78 @@ export default {
|
|
|
4856
4014
|
},
|
|
4857
4015
|
answerRadios: { "content": { "options": [{ "scope": "KNOWLEDGE", "name": "本文提供了什么内容?", "value": "64915d6e098ec248701da267" }, { "scope": "KNOWLEDGE", "name": "什么是街舞穿搭指南?", "value": "64915d6e098ec248701da267" }, { "scope": "KNOWLEDGE", "name": "为什么街舞爱好者需要关注本文?", "value": "64915d6e098ec248701da267" }], "description": "了解更多", "isKnowledgeSummary": true }, "id": "knowledgeRecdNodeId", "type": "answer_radio", "sessionId": 1687251699065, "keyId": "139480f2-5af1-44fd-a7bd-a73dd7b566b7_________", "isKnowledgeSummary": true },
|
|
4858
4016
|
answerRadiosPri: {
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
|
|
4878
|
-
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
|
-
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
},
|
|
4916
|
-
{
|
|
4917
|
-
"answerId": null,
|
|
4918
|
-
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4919
|
-
"scope": "INTENT",
|
|
4920
|
-
"name": "以上都不是",
|
|
4921
|
-
"value": "155533"
|
|
4922
|
-
}
|
|
4923
|
-
],
|
|
4924
|
-
"description": "猜您可能想问:"
|
|
4925
|
-
},
|
|
4926
|
-
"refAttrVersion": null
|
|
4017
|
+
"refAttrId": null,
|
|
4018
|
+
"createTime": null,
|
|
4019
|
+
"intentId": null,
|
|
4020
|
+
"refApiKey": null,
|
|
4021
|
+
"updateTime": null,
|
|
4022
|
+
"id": "recdNodeId",
|
|
4023
|
+
"refBotVersion": null,
|
|
4024
|
+
"type": "answer_radio",
|
|
4025
|
+
"nodeId": null,
|
|
4026
|
+
"version": null,
|
|
4027
|
+
"content": {
|
|
4028
|
+
"lastOptionName": "以上都不是",
|
|
4029
|
+
groupVisible: true, // 是否分组展示
|
|
4030
|
+
groupNumber: 3, // 每组展示数量
|
|
4031
|
+
"options": [
|
|
4032
|
+
{
|
|
4033
|
+
"answerId": null,
|
|
4034
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4035
|
+
"scope": "INTENT",
|
|
4036
|
+
"name": "<p>打印机卡纸怎么办</p>",
|
|
4037
|
+
"value": "155539"
|
|
4038
|
+
},
|
|
4039
|
+
{
|
|
4040
|
+
"answerId": null,
|
|
4041
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4042
|
+
"scope": "INTENT",
|
|
4043
|
+
"name": "打印机打印模糊",
|
|
4044
|
+
"value": "155540"
|
|
4045
|
+
},
|
|
4046
|
+
{
|
|
4047
|
+
"answerId": null,
|
|
4048
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4049
|
+
"scope": "INTENT",
|
|
4050
|
+
"name": "SAP系统输入编码系统显示报错",
|
|
4051
|
+
"value": "155541"
|
|
4052
|
+
},
|
|
4053
|
+
{
|
|
4054
|
+
"answerId": null,
|
|
4055
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4056
|
+
"scope": "INTENT",
|
|
4057
|
+
"name": "合同已经上传影像归档了,但是在CE中还是关联不到合同",
|
|
4058
|
+
"value": "155542"
|
|
4059
|
+
},
|
|
4060
|
+
{
|
|
4061
|
+
"answerId": null,
|
|
4062
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4063
|
+
"scope": "INTENT",
|
|
4064
|
+
"name": "如何查询社保缴费基数",
|
|
4065
|
+
"value": "155543"
|
|
4066
|
+
},
|
|
4067
|
+
{
|
|
4068
|
+
"answerId": null,
|
|
4069
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4070
|
+
"scope": "INTENT",
|
|
4071
|
+
"name": "如何查询公积金缴费基数",
|
|
4072
|
+
"value": "155544"
|
|
4927
4073
|
},
|
|
4074
|
+
{
|
|
4075
|
+
"answerId": null,
|
|
4076
|
+
"apiKey": "14f02c001a29434d9aaa2c2e581a1a17",
|
|
4077
|
+
"scope": "INTENT",
|
|
4078
|
+
"name": "以上都不是",
|
|
4079
|
+
"value": "155533"
|
|
4080
|
+
}
|
|
4081
|
+
],
|
|
4082
|
+
"description": "猜您可能想问:"
|
|
4083
|
+
},
|
|
4084
|
+
"refAttrVersion": null
|
|
4085
|
+
},
|
|
4928
4086
|
htmlContainer: '<input placeholder="请输入"></input>',
|
|
4929
4087
|
isOpen: true,
|
|
4930
|
-
chatMessageList:[
|
|
4088
|
+
chatMessageList: [
|
|
4931
4089
|
{
|
|
4932
4090
|
"actionCategory": "START_NODE",
|
|
4933
4091
|
"apiKey": "398ba0d1857644d288a39dff6248ee63",
|
|
@@ -5070,23 +4228,23 @@ export default {
|
|
|
5070
4228
|
}
|
|
5071
4229
|
},
|
|
5072
4230
|
methods: {
|
|
5073
|
-
submitClick(value) {
|
|
4231
|
+
submitClick (value) {
|
|
5074
4232
|
console.log(value)
|
|
5075
4233
|
},
|
|
5076
|
-
submitClicks(value) {
|
|
4234
|
+
submitClicks (value) {
|
|
5077
4235
|
console.log(value)
|
|
5078
4236
|
},
|
|
5079
|
-
positiveFeedback(value1) {
|
|
4237
|
+
positiveFeedback (value1) {
|
|
5080
4238
|
console.log(value1)
|
|
5081
4239
|
},
|
|
5082
|
-
touchEnd(index) {
|
|
4240
|
+
touchEnd (index) {
|
|
5083
4241
|
console.log(index)
|
|
5084
4242
|
},
|
|
5085
|
-
closeVoice() {
|
|
4243
|
+
closeVoice () {
|
|
5086
4244
|
console.debug('我是close事件')
|
|
5087
4245
|
},
|
|
5088
4246
|
},
|
|
5089
|
-
mounted() {
|
|
4247
|
+
mounted () {
|
|
5090
4248
|
this.timer = setInterval(() => {
|
|
5091
4249
|
this.dataNote += 1
|
|
5092
4250
|
console.debug('this.dataNote', this.dataNote)
|
|
@@ -5101,7 +4259,7 @@ export default {
|
|
|
5101
4259
|
clearInterval(this.timer)
|
|
5102
4260
|
}, 5000)
|
|
5103
4261
|
},
|
|
5104
|
-
updated() { }
|
|
4262
|
+
updated () { }
|
|
5105
4263
|
}
|
|
5106
4264
|
</script>
|
|
5107
4265
|
|