askbot-dragon 1.6.12 → 1.6.13
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
|
@@ -146,8 +146,8 @@ export default {
|
|
|
146
146
|
TextMessage,
|
|
147
147
|
// FeedBack,
|
|
148
148
|
// VoiceCompontent,
|
|
149
|
-
AiGuide,
|
|
150
|
-
AnswerVoice,
|
|
149
|
+
// AiGuide,
|
|
150
|
+
// AnswerVoice,
|
|
151
151
|
FormTemplate,
|
|
152
152
|
// FormTemplate,
|
|
153
153
|
// FileType,
|
|
@@ -10516,7 +10516,7 @@ export default {
|
|
|
10516
10516
|
footerStyleValue: "果然大模型"
|
|
10517
10517
|
},
|
|
10518
10518
|
{
|
|
10519
|
-
content: "
|
|
10519
|
+
content: "尊敬的各位:\n 大家好!<br/><br/>很高兴地通知大家,我们的项目已经成功上线!<br/><br/>这是一个重要的里程碑,我们的团队在过去几个月中付出了艰苦的努力,最终实现了这一目标。我们应该感谢所有参与这个项目的人,他们的努力和投入使我们能够取得这一成就。<br/><br/>我们的项目上线后,将为我们的客户提供更好的服务,更多的功能,更快的响应时间,更高的可用性。<br/><br/>我们将继续努力,不断改进和完善我们的项目,以满足客户的需求。<br/><br/>再次感谢大家的支持!<br/><br/>谢谢!<br/><br/>此致<br/><br/>敬礼(--来源于ChatGPT)",
|
|
10520
10520
|
type: 'answer_text',
|
|
10521
10521
|
id: '60df03aeeea6014311dc4285',
|
|
10522
10522
|
intentId: 6064,
|
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
<div v-for="(option, index) in showOptions" class="options-item"
|
|
9
9
|
:class="index !== msg.content.options.length - 1 ? 'recommend-item' : 'last-item'" :key="msg.nodeId + '_' + index"
|
|
10
10
|
@click="radioClick(msg, option, index)">
|
|
11
|
-
<
|
|
11
|
+
<el-tooltip class="item" effect="dark" content="点我" placement="top">
|
|
12
|
+
<span class="options-item-name"> {{ getFilteredName(option.name) }}</span>
|
|
13
|
+
</el-tooltip>
|
|
12
14
|
<i class="arsenal_icon arsenalangle-right-solid"></i>
|
|
13
15
|
</div>
|
|
14
16
|
</div>
|
|
@@ -150,8 +152,13 @@ export default {
|
|
|
150
152
|
align-items: center;
|
|
151
153
|
justify-content: space-between;
|
|
152
154
|
|
|
155
|
+
.options-item-name {
|
|
156
|
+
flex: auto;
|
|
157
|
+
}
|
|
153
158
|
|
|
154
159
|
i {
|
|
160
|
+
width: 16px;
|
|
161
|
+
flex: none;
|
|
155
162
|
padding-left: 10px;
|
|
156
163
|
}
|
|
157
164
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
</template>
|
|
11
11
|
<template v-else>
|
|
12
|
-
<p v-html="msg.content.replace(/\#[\u4E00-\u9FA5]{1,3}\;/gi, emotion)" class="answer-rich-text"></p>
|
|
12
|
+
<p v-html="msg.content.replace(/\#[\u4E00-\u9FA5]{1,3}\;/gi, emotion).replace(/\n/g, '<br>')" class="answer-rich-text"></p>
|
|
13
13
|
</template>
|
|
14
14
|
</div>
|
|
15
15
|
<div v-if=" (msgType === 'answer_welcofmetext' || msgType === 'answer_text') && (msg.recommend&& msg.recommend.status)">
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
</p>
|
|
20
20
|
</template>
|
|
21
21
|
<template v-else>
|
|
22
|
-
<p v-html="msg.content.replace(/\#[\u4E00-\u9FA5]{1,3}\;/gi, emotion)" class="answer-rich-text"></p>
|
|
22
|
+
<p v-html="msg.content.replace(/\#[\u4E00-\u9FA5]{1,3}\;/gi, emotion).replace(/\n/g, '<br>')" class="answer-rich-text"></p>
|
|
23
23
|
</template>
|
|
24
24
|
<Recommend :msg="msg" @onRadioClickReco="onRadioClickReco"></Recommend>
|
|
25
25
|
</div>
|