提交 cf406277 编写于 作者: DCloud_JSON's avatar DCloud_JSON

1.0.13

上级 e89415cc
## 1.0.13(2023-05-24)
- 修复 由`1.0.12`重构部分逻辑引起的,配置的广告位id无效的问题
## 1.0.12(2023-05-22)
- 优化 提升性能
- 更新 更改`uni-ai-chat`云对象的`runtime`版本为`Nodejs12`
......
......@@ -33,6 +33,11 @@
</template>
<script>
// 获取广告id
const {
adpid
} = config
import {msgList} from '@/pages/chat/msgList.js';
// 引入markdown-it库
......@@ -84,7 +89,8 @@
msg:{
content:""
},
msgIndexList:0
msgIndexList:0,
adpid
};
},
mounted() {
......@@ -118,13 +124,6 @@
this.msg = msgList[this.msgIndex]
},
props: {
// // 传入的markdown内容
// md: {
// type: String,
// default () {
// return ''
// }
// },
// 是否显示鼠标闪烁的效果
showCursor: {
type: [Boolean, Number],
......
{
"id": "uni-ai-chat",
"name": "uni-ai-chat",
"version": "1.0.12",
"version": "1.0.13",
"description": "基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体",
"main": "main.js",
"scripts": {
......
......@@ -552,7 +552,10 @@
})
.then(res => {
// console.log(111,res);
if (!sseChannel && res.data) {
if (!sseChannel) {
if(!res.data){
return
}
// 更新最后一条消息的状态为100(发送成功)
this.updateLastMsg({
state: 100
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册