index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. <template>
  2. <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="小天AI" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
  3. <template #left>
  4. <view class="u-navbar__content__left__item">
  5. <u-icon name="arrow-left" size="20" color="#000"></u-icon>
  6. </view>
  7. </template>
  8. </u-navbar>
  9. <oa-scroll
  10. customClass="doorList-container scroll-height"
  11. :isSticky="true"
  12. :customStyle="{
  13. //#ifdef APP-PLUS || MP-WEIXIN
  14. height: `calc(100vh - (44px + ${footerHeight}px + ${proxy.$settingStore.StatusBarHeight}))`,
  15. //#endif
  16. //#ifdef H5
  17. height: `calc(100vh - (44px + ${footerHeight}px))`,
  18. //#endif
  19. }"
  20. :refresherLoad="false"
  21. :refresherEnabled="false"
  22. :scrollTop="scrollTop"
  23. :scrollIntoView="scrollIntoView"
  24. :refresherDefaultStyle="'none'"
  25. :refresherBackground="'#fffff'"
  26. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  27. >
  28. <template #default>
  29. <view class="mainArea">
  30. <view class="center-area">
  31. <view class="center-area-item">
  32. <viwe class="center-area-item__avatar">
  33. <image src="@/static/images/ai/ai-avatar.png" mode="widthFix"></image>
  34. </viwe>
  35. <view class="center-area-item__content">
  36. <span class="defaultQuestion-title">您好,我是智能助手小天!</span>
  37. 作为您的智能助手,我能帮助您解决各种问题。 除此之外,小天还可以尝试帮助解决其他方面的问题或在您需要的时候陪您聊天!
  38. <!-- 您可以试着问我:
  39. <view class="defaultQuestion">
  40. <view class="defaultQuestion-item" @click="onClickDefaultQuestion($event, item)" v-for="item in defaultQuestion.list" :key="item.id" :span="12">
  41. {{ item.value }}
  42. </view>
  43. </view> -->
  44. </view>
  45. </view>
  46. <viwe v-for="(item, index) in answerList" :key="index" :class="['center-area-item', { roleUser: item.role === 'user' }]" :id="index == answerList.length - 1 ? 'bottomInfo' : ''">
  47. <viwe class="center-area-item__avatar">
  48. <image v-show="item.role === 'assistant'" src="@/static/images/ai/ai-avatar.png" mode="widthFix"></image>
  49. <image v-show="item.role === 'user'" src="@/static/images/ai/ai-question-avatar.png" mode="widthFix"></image>
  50. </viwe>
  51. <viwe v-if="item.role === 'user'" class="center-area-item__content">{{ item.content }}</viwe>
  52. <viwe v-else-if="item.role === 'assistant'" class="center-area-item__content">
  53. <!-- <u-parse class="center-area-item__outputReasonContent" :content="item.reasoningContent"></u-parse> -->
  54. <!-- <viwe class="center-area-item__outputReasonContent">{{ item.reasoningContent }}</viwe> -->
  55. <zero-markdown-view :markdown="item.reasoningContent" themeColor="#05073b"></zero-markdown-view>
  56. </viwe>
  57. </viwe>
  58. </view>
  59. </view>
  60. </template>
  61. </oa-scroll>
  62. <view class="footer-area">
  63. <view class="footer-area-top">
  64. <view class="footer-area-top__record" @click="handle('Record')">对话历史</view>
  65. <view class="footer-area-top__new" @click="handle('CreateChat')">新话题</view>
  66. </view>
  67. <view class="footer-area-center">
  68. <textarea
  69. class="footer-area-center-textarea"
  70. v-model="answerKeyword"
  71. placeholder="请输入问题,可通过回车换行"
  72. maxlength="500"
  73. @confirm="onSubmit"
  74. @linechange="linechange"
  75. auto-height
  76. ></textarea>
  77. <button class="footer-area-center-button" type="primary" :loading="submitLoading" @click="onSubmit">发送</button>
  78. </view>
  79. <view class="footer-area-prompt">以上内容均由AI大模型生成,仅供参考</view>
  80. </view>
  81. <uni-popup ref="popup" type="left" safeArea backgroundColor="#fff">
  82. <view class="chatArea">
  83. <view class="content">
  84. <view class="content-title">近30天</view>
  85. <view class="content-item" v-for="item in state.chatHistory.list" :key="item" @click="onClickChatItem(item)" @longpress="onLongPressChatItem(item)"> {{ item.question }}</view>
  86. </view>
  87. </view>
  88. </uni-popup>
  89. <u-action-sheet
  90. :actions="sheet.actions"
  91. :show="sheet.show"
  92. cancelText="取消"
  93. :round="10"
  94. :wrapMaxHeight="'50vh'"
  95. :closeOnClickOverlay="true"
  96. :safeAreaInsetBottom="true"
  97. @close="sheet.show = false"
  98. @select="changeSheet"
  99. ></u-action-sheet>
  100. <u-modal
  101. :show="modal.show"
  102. :title="modal.title"
  103. :showCancelButton="true"
  104. :closeOnClickOverlay="true"
  105. @confirm="handle(modal.type == '删除' ? 'Delete' : 'Update')"
  106. @cancel="modal.show = false"
  107. @close="modal.show = false"
  108. >
  109. <view class="slot-content" style="width: 100%">
  110. <view v-if="modal.type == '删除'"> {{ modal.content }}</view>
  111. <view v-if="modal.type == '重命名'">
  112. <textarea v-model="modal.content" placeholder="请输入" border="bottom" maxlength="50" auto-height style="width: 100%; border-bottom: 1px #cbcbcb solid"></textarea>
  113. </view>
  114. </view>
  115. </u-modal>
  116. <oa-chatSSEClient ref="chatSSEClientRef" @onOpen="openCore" @onError="errorCore" @onMessage="messageCore" @onFinish="finishCore" />
  117. </template>
  118. <script setup>
  119. /*----------------------------------依赖引入-----------------------------------*/
  120. import config from "@/config";
  121. import { getToken } from "@/utils/auth";
  122. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  123. import { ref, reactive, computed, getCurrentInstance, toRefs, inject, nextTick } from "vue";
  124. /*----------------------------------接口引入-----------------------------------*/
  125. import { aiApi } from "@/api/business/ai.js";
  126. /*----------------------------------组件引入-----------------------------------*/
  127. /*----------------------------------store引入-----------------------------------*/
  128. import { useStores, commonStores, controlStores } from "@/store/modules/index";
  129. /*----------------------------------公共方法引入-----------------------------------*/
  130. /*----------------------------------公共变量-----------------------------------*/
  131. const { proxy } = getCurrentInstance();
  132. const useStore = useStores();
  133. const controlStore = controlStores();
  134. /*----------------------------------变量声明-----------------------------------*/
  135. const state = reactive({
  136. buffer: "", // 用于存储流式数据不完整的行
  137. defaultQuestion: {
  138. list: [
  139. { id: 2, value: "如何看待中国锂矿储量从全球占比6%升至16.5%,从世界第六跃至第二?" },
  140. { id: 3, value: "为什么特斯拉和理想,都不想承认自己是「汽车公司」?" },
  141. { id: 4, value: "全美第二大的城市洛杉矶大火,为什么能蔓延到无法控制的地步?" },
  142. { id: 4, value: "为什么主流都不再力推英特尔 CPU?" },
  143. ],
  144. },
  145. submitLoading: false,
  146. answerKeyword: undefined,
  147. answerList: [],
  148. // 会话记录
  149. chatHistory: {
  150. list: [],
  151. sessionId: undefined,
  152. },
  153. footerHeight: 0, //底部区域高度
  154. scrollIntoView: "", //滚动位置
  155. sheet: {
  156. show: false,
  157. actions: [
  158. {
  159. name: "删除",
  160. },
  161. {
  162. name: "重命名",
  163. },
  164. ],
  165. list: {},
  166. },
  167. modal: {
  168. show: false,
  169. title: "",
  170. content: "",
  171. type: "",
  172. },
  173. });
  174. const { buffer, defaultQuestion, submitLoading, answerKeyword, answerList, chatHistory, footerHeight, scrollIntoView, sheet, modal } = toRefs(state);
  175. /** 操作 */
  176. function handle(type) {
  177. if (type == "Record") {
  178. getChatList();
  179. proxy.$refs["popup"].open();
  180. } else if (type == "CreateChat") {
  181. if (state.chatHistory.list.length >= 10) {
  182. return uni.showToast({ title: "您最多可同时建立10个对话,如需新建对话,请先删除会话!", icon: "none" });
  183. }
  184. state.chatHistory.sessionId = undefined;
  185. state.answerList = [];
  186. state.answerKeyword = undefined;
  187. } else if (type == "Delete") {
  188. aiApi()
  189. .Delete(state.sheet.list.sessionId)
  190. .then((response) => {
  191. proxy.$modal.msg("删除成功");
  192. state.modal.show = false;
  193. });
  194. } else if (type == "Update") {
  195. aiApi()
  196. .Update({
  197. sessionId: state.sheet.list.sessionId,
  198. question: state.modal.content,
  199. })
  200. .then((response) => {
  201. proxy.$modal.msg("修改成功");
  202. state.modal.show = false;
  203. });
  204. }
  205. }
  206. /** 获取历史对话列表 */
  207. function getChatList() {
  208. aiApi()
  209. .recordSelect()
  210. .then((response) => {
  211. state.chatHistory.list = response.data;
  212. });
  213. }
  214. /** 点击历史对话事件 */
  215. function onClickChatItem(item) {
  216. state.scrollIntoView = "";
  217. state.chatHistory.sessionId = item.sessionId;
  218. state.answerList = item.itemList;
  219. nextTick(() => {
  220. state.scrollIntoView = "bottomInfo";
  221. proxy.$refs["popup"].close();
  222. });
  223. }
  224. /** 长按历史对话事件 */
  225. function onLongPressChatItem(item) {
  226. proxy.$refs["popup"].close();
  227. state.sheet.show = true;
  228. state.sheet.list = item;
  229. }
  230. /** 当输入框行数发生变化 */
  231. function linechange(event) {
  232. nextTick(() => {
  233. const query = uni.createSelectorQuery();
  234. query
  235. .select(".footer-area")
  236. .boundingClientRect((rect) => {
  237. state.footerHeight = rect.height;
  238. })
  239. .exec();
  240. });
  241. }
  242. /** 操作菜单回调事件 */
  243. function changeSheet(event) {
  244. if (event.name == "删除") {
  245. state.modal.title = "永久删除对话";
  246. state.modal.content = "删除后,改对话将不可恢复。确认删除吗?";
  247. state.modal.type = "删除";
  248. state.modal.show = true;
  249. } else if (event.name == "重命名") {
  250. state.modal.title = "重命名会话";
  251. state.modal.content = state.sheet.list.question;
  252. state.modal.type = "重命名";
  253. state.modal.show = true;
  254. }
  255. }
  256. /** 点击默认提问事件 */
  257. function onClickDefaultQuestion(event, item) {
  258. state.answerKeyword = item.value;
  259. onSubmit(event);
  260. }
  261. async function onSubmit(event) {
  262. if (event.keyCode === 13 || event.key === "Enter") {
  263. event.preventDefault(); // 阻止默认行为,即回车换行
  264. if (event.shiftKey) {
  265. state.answerKeyword += "\n";
  266. }
  267. }
  268. if (!state.answerKeyword) return uni.showToast({ title: "请输入内容", icon: "none" });
  269. if (state.submitLoading) return;
  270. state.submitLoading = true;
  271. state.answerList.push({
  272. role: "user",
  273. content: state.answerKeyword,
  274. });
  275. proxy.$refs["chatSSEClientRef"].startChat({
  276. // 将它换成你的地址
  277. url: config.baseUrl + "/service-ai/ai/aliTyqw",
  278. // 请求头
  279. headers: {
  280. Authorization: getToken(),
  281. "Content-Type": "application/json; charset=utf-8",
  282. },
  283. // 默认为 post
  284. method: "post",
  285. body: {
  286. sessionId: state.chatHistory.sessionId,
  287. content: state.answerKeyword,
  288. },
  289. });
  290. }
  291. //数据处理
  292. function processSSEChunk(chunk) {
  293. state.scrollIntoView = "";
  294. try {
  295. const jsonData = JSON.parse(chunk);
  296. if (jsonData.sessionId && !state.chatHistory.sessionId) {
  297. state.chatHistory.sessionId = jsonData.sessionId;
  298. }
  299. if (jsonData.reasoningContent) {
  300. state.answerList[state.answerList.length - 1].reasoningContent += jsonData.reasoningContent;
  301. } else if (jsonData.content) {
  302. state.answerList[state.answerList.length - 1].content += jsonData.content;
  303. }
  304. } catch (error) {
  305. console.log("parsing JSON错误", jsonString, index);
  306. console.log("parsing JSON错误", error);
  307. }
  308. nextTick(() => {
  309. state.scrollIntoView = "bottomInfo";
  310. });
  311. }
  312. //开始回答回调事件
  313. function openCore() {
  314. console.log("open sse");
  315. state.answerKeyword = undefined;
  316. // 定义一个函数来读取流数据
  317. state.answerList.push({
  318. role: "assistant",
  319. content: "",
  320. reasoningContent: "",
  321. });
  322. }
  323. //回答异常回调事件
  324. function errorCore(err) {
  325. console.log("error sse:", err);
  326. state.answerKeyword = undefined;
  327. }
  328. //回答中回调事件
  329. function messageCore(response) {
  330. processSSEChunk(response);
  331. }
  332. //回答完毕回调事件
  333. function finishCore() {
  334. console.log("finish sse");
  335. state.submitLoading = false;
  336. }
  337. //停止回答
  338. function stop() {
  339. proxy.$refs["chatSSEClientRef"].stopChat();
  340. console.log("stop");
  341. }
  342. onReady(() => {});
  343. onShow(() => {});
  344. onLoad((options) => {});
  345. onUnload(() => {});
  346. </script>
  347. <style lang="scss" scoped>
  348. .doorList-container {
  349. background-color: #ffffff;
  350. }
  351. .center-area {
  352. height: auto;
  353. overflow: auto;
  354. &-item {
  355. display: flex;
  356. color: #05073b;
  357. padding: 15px;
  358. &__avatar {
  359. width: 26px;
  360. margin-top: 2px;
  361. margin-right: 10px;
  362. uni-image {
  363. border-radius: 50%;
  364. }
  365. }
  366. &__content {
  367. background: #f4f5f9;
  368. border-radius: 8px;
  369. box-shadow: 0 16px 20px 0 #f4f5f9;
  370. display: flex;
  371. flex-direction: column;
  372. padding: 10px 10px;
  373. position: relative;
  374. font-size: 14px;
  375. line-height: 1.75;
  376. min-height: 44.5px;
  377. box-sizing: border-box;
  378. word-break: break-all; //文字默认换行
  379. }
  380. }
  381. .roleUser {
  382. justify-content: end;
  383. margin-left: auto;
  384. .center-area-item__avatar {
  385. margin-right: 0;
  386. margin-left: 10px;
  387. order: 2;
  388. }
  389. }
  390. }
  391. .footer-area {
  392. position: fixed;
  393. bottom: 0;
  394. width: 100%;
  395. // height: 137px;
  396. background-color: #ffffff;
  397. &-top {
  398. display: flex;
  399. margin: 10px 20px 0 20px;
  400. color: #7f7f7f;
  401. &__record {
  402. margin-left: auto;
  403. }
  404. &__new {
  405. margin-left: 15px;
  406. }
  407. }
  408. &-center {
  409. display: flex;
  410. width: calc(100% - 30px);
  411. background-color: #f4f5f9;
  412. margin: 10px 15px 10px 15px;
  413. padding: 15px;
  414. border-radius: 8px;
  415. &-textarea {
  416. width: 100%;
  417. margin-right: 20px;
  418. }
  419. &-button {
  420. width: 54px;
  421. height: 33px;
  422. display: flex;
  423. justify-content: flex-end;
  424. font-size: 13px;
  425. white-space: nowrap;
  426. }
  427. }
  428. &-prompt {
  429. margin: 10px 0;
  430. color: #adadad;
  431. font-size: 20rpx;
  432. text-align: center;
  433. }
  434. }
  435. .chatArea {
  436. width: 70vw;
  437. overflow-y: auto;
  438. height: 100vh;
  439. padding: 15px;
  440. .content {
  441. &-title {
  442. color: #8b8b8b;
  443. margin-bottom: 5px;
  444. }
  445. &-item {
  446. padding: 10px 5px;
  447. border-radius: 5px;
  448. letter-spacing: 1px;
  449. white-space: nowrap;
  450. overflow: hidden;
  451. text-overflow: ellipsis; /* 超出部分显示省略号 */
  452. position: relative; /* 为伪元素定位 */
  453. &:active {
  454. background-color: #e5e5e5;
  455. }
  456. &:hover {
  457. background-color: #e5e5e5;
  458. }
  459. }
  460. }
  461. }
  462. </style>