Browse Source

小天ai新增复制功能模块/代码优化

fanghuisheng 2 weeks ago
parent
commit
7338c1b308

+ 66 - 23
src/pages/business/ai/conv/index.vue

@@ -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;
+      }
     }
   }
 

+ 1 - 1
src/uni_modules/zero-markdown-view/components/mp-html/node/node.vue

@@ -445,7 +445,7 @@ export default {
   }
 }
 </script>
-<style>/deep/ .hl-code,/deep/ .hl-pre{color:#ccc;background:0 0;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}/deep/ .hl-pre{padding:1em;margin:.5em 0;overflow:auto}/deep/ .hl-pre{background:#2d2d2d}/deep/ .hl-block-comment,/deep/ .hl-cdata,/deep/ .hl-comment,/deep/ .hl-doctype,/deep/ .hl-prolog{color:#999}/deep/ .hl-punctuation{color:#ccc}/deep/ .hl-attr-name,/deep/ .hl-deleted,/deep/ .hl-namespace,/deep/ .hl-tag{color:#e2777a}/deep/ .hl-function-name{color:#6196cc}/deep/ .hl-boolean,/deep/ .hl-function,/deep/ .hl-number{color:#f08d49}/deep/ .hl-class-name,/deep/ .hl-constant,/deep/ .hl-property,/deep/ .hl-symbol{color:#f8c555}/deep/ .hl-atrule,/deep/ .hl-builtin,/deep/ .hl-important,/deep/ .hl-keyword,/deep/ .hl-selector{color:#cc99cd}/deep/ .hl-attr-value,/deep/ .hl-char,/deep/ .hl-regex,/deep/ .hl-string,/deep/ .hl-variable{color:#7ec699}/deep/ .hl-entity,/deep/ .hl-operator,/deep/ .hl-url{color:#67cdcc}/deep/ .hl-bold,/deep/ .hl-important{font-weight:700}/deep/ .hl-italic{font-style:italic}/deep/ .hl-entity{cursor:help}/deep/ .hl-inserted{color:green}/deep/ .md-p {
+<style>/deep/ .hl-code,/deep/ .hl-pre{color:#ccc;background:0 0;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;word-spacing:normal;word-break: break-all;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}/deep/ .hl-pre{padding:1em;margin:.5em 0;overflow:auto}/deep/ .hl-pre{background:#2d2d2d}/deep/ .hl-block-comment,/deep/ .hl-cdata,/deep/ .hl-comment,/deep/ .hl-doctype,/deep/ .hl-prolog{color:#999}/deep/ .hl-punctuation{color:#ccc}/deep/ .hl-attr-name,/deep/ .hl-deleted,/deep/ .hl-namespace,/deep/ .hl-tag{color:#e2777a}/deep/ .hl-function-name{color:#6196cc}/deep/ .hl-boolean,/deep/ .hl-function,/deep/ .hl-number{color:#f08d49}/deep/ .hl-class-name,/deep/ .hl-constant,/deep/ .hl-property,/deep/ .hl-symbol{color:#f8c555}/deep/ .hl-atrule,/deep/ .hl-builtin,/deep/ .hl-important,/deep/ .hl-keyword,/deep/ .hl-selector{color:#cc99cd}/deep/ .hl-attr-value,/deep/ .hl-char,/deep/ .hl-regex,/deep/ .hl-string,/deep/ .hl-variable{color:#7ec699}/deep/ .hl-entity,/deep/ .hl-operator,/deep/ .hl-url{color:#67cdcc}/deep/ .hl-bold,/deep/ .hl-important{font-weight:700}/deep/ .hl-italic{font-style:italic}/deep/ .hl-entity{cursor:help}/deep/ .hl-inserted{color:green}/deep/ .md-p {
   margin-block-start: 1em;
   margin-block-end: 1em;
 }

+ 3 - 2
src/uni_modules/zero-markdown-view/components/zero-markdown-view/zero-markdown-view.vue

@@ -93,11 +93,11 @@
 				`,
 					// 三级标题
 					h3: `
-				margin:30px 0 10px 0;
+				margin:20px 0 10px 0;
 				font-size: 18px;
 				color: ${themeColor};
 				padding-left:10px;
-				border-left:3px solid ${themeColor};
+				// border-left:3px solid ${themeColor};
 				`,
 					// 引用
 					blockquote: `
@@ -162,6 +162,7 @@
 				font-size:12px;
 				position: relative;
 				white-space: pre-line;
+				word-break: break-all;
 				`,
 				}
 				this.tagStyle = zeroStyle