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

1.1.1

上级 df9bb5d7
## 1.1.1(2023-06-09)
- 修复 web-pc端样式错误
## 1.1.0(2023-06-09) ## 1.1.0(2023-06-09)
- 【重要】优化`uni-ai-chat`云对象的`send`方法性能(并发:“普通消息对话”和“获得内容总结”),大幅提高会话响应速度。 - 【重要】优化`uni-ai-chat`云对象的`send`方法性能(并发:“普通消息对话”和“获得内容总结”),大幅提高会话响应速度。
- 修复 手机端 当消息列表数据不满一屏幕时,键盘弹出后看不到历史消息 - 修复 手机端 当消息列表数据不满一屏幕时,键盘弹出后看不到历史消息
......
...@@ -177,7 +177,12 @@ ...@@ -177,7 +177,12 @@
// 修改转换结果的htmlString值 用于正确给界面增加鼠标闪烁的效果 // 修改转换结果的htmlString值 用于正确给界面增加鼠标闪烁的效果
// 判断markdown中代码块标识符的数量是否为偶数 // 判断markdown中代码块标识符的数量是否为偶数
if (this.msgContent.split("```").length % 2) { if (this.msgContent.split("```").length % 2) {
htmlString = markdownIt.render(this.msgContent)+ '<span class="cursor">|</span>'; let msgContent = this.msgContent
if(msgContent[msgContent.length-1] != '\n'){
msgContent += '\n'
}
msgContent += ' <span class="cursor">|</span>'
htmlString = markdownIt.render(msgContent);
} else { } else {
htmlString = markdownIt.render(this.msgContent) + ' \n <span class="cursor">|</span>'; htmlString = markdownIt.render(this.msgContent) + ' \n <span class="cursor">|</span>';
} }
......
{ {
"id": "uni-ai-chat", "id": "uni-ai-chat",
"name": "uni-ai-chat", "name": "uni-ai-chat",
"version": "1.1.0", "version": "1.1.1",
"description": "基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体", "description": "基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
......
...@@ -552,7 +552,7 @@ ...@@ -552,7 +552,7 @@
let messages = [] let messages = []
// 复制一份,消息列表数据 // 复制一份,消息列表数据
let msgs = msgList.filter(i => i.isDelete !== true) let msgs = Array.from(msgList).filter(i => i.isDelete !== true)
// 带总结的消息 index // 带总结的消息 index
let findIndex = [...msgs].reverse().findIndex(item => item.summarize) let findIndex = [...msgs].reverse().findIndex(item => item.summarize)
// console.log('findIndex', findIndex) // console.log('findIndex', findIndex)
...@@ -796,6 +796,7 @@ ...@@ -796,6 +796,7 @@
/* #endif */ /* #endif */
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
page,
.container *, .container *,
view, view,
textarea, textarea,
...@@ -960,15 +961,21 @@ ...@@ -960,15 +961,21 @@
border-top: solid 1px #dde0e2; border-top: solid 1px #dde0e2;
} }
.container * { .container,.container * {
max-width: 950px; max-width: 950px;
} }
.container { .container {
box-shadow: 0 0 5px #e0e1e7; box-shadow: 0 0 5px #e0e1e7;
margin-top: 44px; height: calc(100vh - 44px);
margin: 22px auto;
border-radius: 10px; border-radius: 10px;
overflow: hidden; overflow: hidden;
background-color: #FAFAFA;
}
page {
background-color: #efefef;
} }
.container .header { .container .header {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册