|
@@ -33,15 +33,18 @@
|
|
|
<viwe class="center-area-item__avatar">
|
|
|
<image src="@/static/images/ai/ai-avatar.png" mode="widthFix"></image>
|
|
|
</viwe>
|
|
|
- <view class="center-area-item__content">
|
|
|
- <span class="defaultQuestion-title">您好,我是智能助手小天!</span>
|
|
|
- 作为您的智能助手,我能帮助您解决各种问题。 除此之外,小天还可以尝试帮助解决其他方面的问题或在您需要的时候陪您聊天!
|
|
|
- <!-- 您可以试着问我:
|
|
|
+
|
|
|
+ <view class="center-area-item__center">
|
|
|
+ <view class="center-area-item__center__content">
|
|
|
+ <span class="defaultQuestion-title">您好,我是智能助手小天!</span>
|
|
|
+ 作为您的智能助手,我能帮助您解决各种问题。 除此之外,小天还可以尝试帮助解决其他方面的问题或在您需要的时候陪您聊天!
|
|
|
+ <!-- 您可以试着问我:
|
|
|
<view class="defaultQuestion">
|
|
|
<view class="defaultQuestion-item" @click="onClickDefaultQuestion($event, item)" v-for="item in defaultQuestion.list" :key="item.id" :span="12">
|
|
|
{{ item.value }}
|
|
|
</view>
|
|
|
</view> -->
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -51,12 +54,25 @@
|
|
|
<image v-show="item.role === 'user'" src="@/static/images/ai/ai-question-avatar.png" mode="widthFix"></image>
|
|
|
</viwe>
|
|
|
|
|
|
- <viwe v-if="item.role === 'user'" class="center-area-item__content">{{ item.content }}</viwe>
|
|
|
- <viwe v-else-if="item.role === 'assistant'" class="center-area-item__content">
|
|
|
- <!-- <u-parse class="center-area-item__outputReasonContent" :content="item.reasoningContent"></u-parse> -->
|
|
|
- <!-- <viwe class="center-area-item__outputReasonContent">{{ item.reasoningContent }}</viwe> -->
|
|
|
- <zero-markdown-view :markdown="item.reasoningContent" themeColor="#05073b"></zero-markdown-view>
|
|
|
- </viwe>
|
|
|
+ <view class="center-area-item__center">
|
|
|
+ <viwe v-if="item.role === 'user'" class="center-area-item__center__content">
|
|
|
+ {{ item.content }}
|
|
|
+ </viwe>
|
|
|
+ <viwe v-else-if="item.role === 'assistant'" class="center-area-item__center__content">
|
|
|
+ <!-- <viwe class="center-area-item__outputReasonContent">{{ item.reasoningContent }}</viwe> -->
|
|
|
+ <zero-markdown-view :markdown="item.reasoningContent" themeColor="#05073b"></zero-markdown-view>
|
|
|
+ </viwe>
|
|
|
+
|
|
|
+ <view
|
|
|
+ class="iconfont oaIcon-copy center-area-item__center__icon"
|
|
|
+ @click="copy(item.role === 'user' ? item.content : item.reasoningContent)"
|
|
|
+ :style="{
|
|
|
+ float: item.role === 'user' ? 'right' : 'left',
|
|
|
+ margin: item.role === 'user' ? '5px 5px 0 0' : '5px 0 0 5px',
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</viwe>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -272,6 +288,27 @@ function changeSheet(event) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/** 复制粘贴板 */
|
|
|
+function copy(value) {
|
|
|
+ // 触发方法
|
|
|
+ proxy.$common.uniCopy({
|
|
|
+ content: value,
|
|
|
+ success: (res) => {
|
|
|
+ uni.showToast({
|
|
|
+ title: res,
|
|
|
+ icon: "none",
|
|
|
+ });
|
|
|
+ },
|
|
|
+ error: (e) => {
|
|
|
+ uni.showToast({
|
|
|
+ title: e,
|
|
|
+ icon: "none",
|
|
|
+ duration: 3000,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
/** 点击默认提问事件 */
|
|
|
function onClickDefaultQuestion(event, item) {
|
|
|
state.answerKeyword = item.value;
|
|
@@ -406,19 +443,25 @@ onUnload(() => {});
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- &__content {
|
|
|
- background: #f4f5f9;
|
|
|
- border-radius: 8px;
|
|
|
- box-shadow: 0 16px 20px 0 #f4f5f9;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- padding: 10px 10px;
|
|
|
- position: relative;
|
|
|
- font-size: 14px;
|
|
|
- line-height: 1.75;
|
|
|
- min-height: 44.5px;
|
|
|
- box-sizing: border-box;
|
|
|
- word-break: break-all; //文字默认换行
|
|
|
+ &__center {
|
|
|
+ &__content {
|
|
|
+ background: #f4f5f9;
|
|
|
+ border-radius: 8px;
|
|
|
+ box-shadow: 0 5px 20px 0 #f4f5f9;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ padding: 10px 10px;
|
|
|
+ position: relative;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 1.75;
|
|
|
+ min-height: 44.5px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ word-break: break-all; //文字默认换行
|
|
|
+ }
|
|
|
+
|
|
|
+ &__icon {
|
|
|
+ color: #909399;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|