askbot-dragon 0.7.71 → 0.7.72
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
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<div class="ig-view-cli">
|
|
11
11
|
<!-- 描述 -->
|
|
12
12
|
<div
|
|
13
|
-
v-show="aiGuide.content.descriptionVisible"
|
|
13
|
+
v-show="aiGuide.content.descriptionVisible && aiGuide.content.description !== ''"
|
|
14
14
|
class="ig-types-des"
|
|
15
15
|
>
|
|
16
16
|
{{ aiGuide.content.description }}
|
|
@@ -309,8 +309,8 @@ export default {
|
|
|
309
309
|
return arr;
|
|
310
310
|
},
|
|
311
311
|
sendAiGuideInfo(recommendType, cell) {
|
|
312
|
-
console.log(recommendType, cell);
|
|
313
|
-
|
|
312
|
+
console.log("组件-312", recommendType, cell);
|
|
313
|
+
this.$emit('sendAiGuide', recommendType, cell);
|
|
314
314
|
},
|
|
315
315
|
},
|
|
316
316
|
};
|
|
@@ -331,7 +331,7 @@ export default {
|
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
333
|
.ig-types-des {
|
|
334
|
-
padding: 16px;
|
|
334
|
+
padding: 16px 16px 0px;
|
|
335
335
|
text-align: left;
|
|
336
336
|
}
|
|
337
337
|
.ig-types-f {
|
|
@@ -2,41 +2,41 @@
|
|
|
2
2
|
<template>
|
|
3
3
|
<div id="conversation">
|
|
4
4
|
<!-- <asser-deatils></asser-deatils> -->
|
|
5
|
-
<msg-loading v-if="inLoading"></msg-loading>
|
|
5
|
+
<!-- <msg-loading v-if="inLoading"></msg-loading>
|
|
6
6
|
<div style="position: relative" class="img_div">
|
|
7
7
|
<img src="https://guoranopen-zjk.oss-cn-zhangjiakou.aliyuncs.com/2021/08/24/07/35/45c878fd-6a8e-40e2-b599-bdba8e17cf8a/微信图片_20210423113520.jpg?x-oss-process=image/auto-orient,1/quality,q_90/watermark,text_MjE=,color_cccccc,size_48,rotate_315,fill_1,x_10,y_10,t_0" style="width: 100px"/>
|
|
8
8
|
<div class="mask">
|
|
9
9
|
<loading-process :dataNote="dataNote" :finished="finished"></loading-process>
|
|
10
10
|
</div>
|
|
11
|
-
</div>
|
|
11
|
+
</div> -->
|
|
12
12
|
|
|
13
|
-
<form-template
|
|
13
|
+
<!-- <form-template
|
|
14
14
|
:formList="formList2"
|
|
15
15
|
@submitClick="submitClick"
|
|
16
|
-
></form-template>
|
|
16
|
+
></form-template> -->
|
|
17
17
|
<!-- <voice-component @closeVoice="closeVoice">
|
|
18
18
|
<div slot="voiceTip">
|
|
19
19
|
松开发送
|
|
20
20
|
</div>
|
|
21
21
|
</voice-component>-->
|
|
22
22
|
<!-- 点选 -->
|
|
23
|
-
<div v-html="htmlContainer">
|
|
24
|
-
</div>
|
|
25
|
-
<answer-radio :msg="answerRadios"></answer-radio>
|
|
23
|
+
<!-- <div v-html="htmlContainer">
|
|
24
|
+
</div> -->
|
|
25
|
+
<!-- <answer-radio :msg="answerRadios"></answer-radio>
|
|
26
26
|
<action-send-to-bot :msg="answerRadios"></action-send-to-bot>
|
|
27
27
|
<ticket-message :content="contents"></ticket-message>
|
|
28
28
|
<text-message :text="text" @submitClick="submitClick"></text-message>
|
|
29
29
|
<div v-for="(item,index) in processAction" :key="index">
|
|
30
30
|
<association-intention :msg="item" :msgType="item.type" :isOpen="isOpen"></association-intention>
|
|
31
31
|
</div>
|
|
32
|
-
<el-button @click="isOpen=!isOpen">切换</el-button>
|
|
32
|
+
<el-button @click="isOpen=!isOpen">切换</el-button> -->
|
|
33
33
|
<!-- 满意组件 -->
|
|
34
|
-
<action-satisfaction :msg="actionSatisfactions[0]"></action-satisfaction>
|
|
34
|
+
<!-- <action-satisfaction :msg="actionSatisfactions[0]"></action-satisfaction> -->
|
|
35
35
|
<!-- 满意或不满意-->
|
|
36
|
-
<bot-action-satisfactor :msg="botActionSatis"></bot-action-satisfactor>
|
|
36
|
+
<!-- <bot-action-satisfactor :msg="botActionSatis"></bot-action-satisfactor>
|
|
37
37
|
<answer-dissatisfaction :msg="answerDiss"></answer-dissatisfaction>
|
|
38
38
|
<feed-back :feedBack="feedBack"></feed-back>
|
|
39
|
-
<voice-compontent></voice-compontent>
|
|
39
|
+
<voice-compontent></voice-compontent> -->
|
|
40
40
|
<ai-guide :aiGuide="ActionAiGuideObj"></ai-guide>
|
|
41
41
|
|
|
42
42
|
<!-- <FileType :urls="urls" :color="black"></FileType>-->
|
|
@@ -45,24 +45,24 @@
|
|
|
45
45
|
</div>
|
|
46
46
|
</template>
|
|
47
47
|
<script>
|
|
48
|
-
import TextMessage from "@/components/message/TextMessage";
|
|
48
|
+
// import TextMessage from "@/components/message/TextMessage";
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
/*import FormTemplate from "@/components/formTemplate";
|
|
52
52
|
import TextMessage from "@/components/message/TextMessage";*/
|
|
53
53
|
|
|
54
|
-
import FormTemplate from "@/components/formTemplate";
|
|
55
|
-
import AnswerRadio from "./answerRadio";
|
|
56
|
-
import TicketMessage from "./message/TicketMessage";
|
|
54
|
+
// import FormTemplate from "@/components/formTemplate";
|
|
55
|
+
// import AnswerRadio from "./answerRadio";
|
|
56
|
+
// import TicketMessage from "./message/TicketMessage";
|
|
57
57
|
/*import VoiceComponent from "./voiceComponent";*/
|
|
58
|
-
import AssociationIntention from "./associationIntention";
|
|
59
|
-
import ActionSatisfaction from "./actionSatisfaction";
|
|
60
|
-
import MsgLoading from "./msgLoading";
|
|
61
|
-
import LoadingProcess from "./loadingProcess";
|
|
62
|
-
import BotActionSatisfactor from "./botActionSatisfactor";
|
|
63
|
-
import AnswerDissatisfaction from "./answerDissatisfaction";
|
|
64
|
-
import ActionSendToBot from "./actionSendToBot";
|
|
65
|
-
import VoiceCompontent from './voiceComponent'
|
|
58
|
+
// import AssociationIntention from "./associationIntention";
|
|
59
|
+
// import ActionSatisfaction from "./actionSatisfaction";
|
|
60
|
+
// import MsgLoading from "./msgLoading";
|
|
61
|
+
// import LoadingProcess from "./loadingProcess";
|
|
62
|
+
// import BotActionSatisfactor from "./botActionSatisfactor";
|
|
63
|
+
// import AnswerDissatisfaction from "./answerDissatisfaction";
|
|
64
|
+
// import ActionSendToBot from "./actionSendToBot";
|
|
65
|
+
// import VoiceCompontent from './voiceComponent'
|
|
66
66
|
// import AsserDeatils from './assetDetails.vue'
|
|
67
67
|
/* import TicketMessage from "@/components/message/TicketMessage";
|
|
68
68
|
import TicketMessage from "@/components/message/TicketMessage";
|
|
@@ -74,25 +74,25 @@ import FeedBack from "@/components/feedBack";*/
|
|
|
74
74
|
import AiGuide from "@/components/AiGuide";
|
|
75
75
|
/*import FileType from "@/components/FileType";
|
|
76
76
|
import ChatContent from "./chatContent";*/
|
|
77
|
-
import FeedBack from "@/components/feedBack"
|
|
77
|
+
// import FeedBack from "@/components/feedBack"
|
|
78
78
|
export default {
|
|
79
79
|
name: "ConversationContainer",
|
|
80
80
|
components: {
|
|
81
|
-
ActionSendToBot,
|
|
82
|
-
AnswerDissatisfaction,
|
|
83
|
-
BotActionSatisfactor,
|
|
84
|
-
LoadingProcess,
|
|
85
|
-
MsgLoading,
|
|
86
|
-
ActionSatisfaction,
|
|
87
|
-
AssociationIntention,
|
|
81
|
+
// ActionSendToBot,
|
|
82
|
+
// AnswerDissatisfaction,
|
|
83
|
+
// BotActionSatisfactor,
|
|
84
|
+
// LoadingProcess,
|
|
85
|
+
// MsgLoading,
|
|
86
|
+
// ActionSatisfaction,
|
|
87
|
+
// AssociationIntention,
|
|
88
88
|
/* VoiceComponent,*/
|
|
89
|
-
TicketMessage,
|
|
89
|
+
// TicketMessage,
|
|
90
90
|
// AsserDeatils,
|
|
91
|
-
AnswerRadio,
|
|
92
|
-
FormTemplate,
|
|
93
|
-
TextMessage,
|
|
94
|
-
FeedBack,
|
|
95
|
-
VoiceCompontent,
|
|
91
|
+
// AnswerRadio,
|
|
92
|
+
// FormTemplate,
|
|
93
|
+
// TextMessage,
|
|
94
|
+
// FeedBack,
|
|
95
|
+
// VoiceCompontent,
|
|
96
96
|
AiGuide
|
|
97
97
|
|
|
98
98
|
|