Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-ai-chat
提交
d47ae269
U
uni-ai-chat
项目概览
DCloud
/
uni-ai-chat
通知
893
Star
11
Fork
8
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-ai-chat
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
d47ae269
编写于
5月 26, 2023
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
1.0.16
上级
a3103637
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
154 addition
and
142 deletion
+154
-142
changelog.md
changelog.md
+4
-0
components/uni-ai-msg/uni-ai-msg.vue
components/uni-ai-msg/uni-ai-msg.vue
+10
-2
manifest.json
manifest.json
+1
-1
package.json
package.json
+1
-1
pages/chat/chat.vue
pages/chat/chat.vue
+138
-138
未找到文件。
changelog.md
浏览文件 @
d47ae269
## 1.0.16(2023-05-26)
-
更新 默认不启用(注释掉)广告组件
`uni-ad-rewarded-video`
## 1.0.15(2023-05-26)
-
修复 由1.0.12优化引起的 web-pc端 样式不正确的问题
## 1.0.14(2023-05-25)
-
修复 报
` config is not defined`
的问题
## 1.0.13(2023-05-24)
...
...
components/uni-ai-msg/uni-ai-msg.vue
浏览文件 @
d47ae269
...
...
@@ -21,7 +21,11 @@
<view
v-if=
"msgIndex == msgIndexList.length-1 && adpid && msg.insufficientScore"
>
<uni-ad-rewarded-video
:adpid=
"adpid"
@
onAdClose=
"onAdClose"
></uni-ad-rewarded-video>
<view
style=
"flex-direction: column;color: red;"
>
<view>
默认不启用广告组件(被注释),如需使用,请"去掉注释"
</view>
<view>
位置:/components/uni-ai-msg/uni-ai-msg.vue 第28行,或全局搜索 uni-ad-rewarded-video
</view>
</view>
<!--
<uni-ad-rewarded-video
:adpid=
"adpid"
@
onAdClose=
"onAdClose"
></uni-ad-rewarded-video>
-->
</view>
</view>
<uni-icons
v-if=
"msgIndex == msgIndexList.length-1 && !msg.isAi && msg.state != 100 && msgStateIcon(msg)"
...
...
@@ -279,6 +283,10 @@
align-items
:
flex-end
;
}
.create_time-box
{
margin-top
:
15px
;
justify-content
:
center
;
}
/* #ifndef VUE3 && APP-PLUS */
...
...
manifest.json
浏览文件 @
d47ae269
...
...
@@ -61,7 +61,7 @@
},
"quickapp"
:
{},
"mp-weixin"
:
{
"appid"
:
"wx
dcbd74f0961c068d
"
,
"appid"
:
"wx
07597007230e3702
"
,
"setting"
:
{
"urlCheck"
:
false
,
"es6"
:
false
...
...
package.json
浏览文件 @
d47ae269
{
"id"
:
"uni-ai-chat"
,
"name"
:
"uni-ai-chat"
,
"version"
:
"1.0.1
4
"
,
"version"
:
"1.0.1
6
"
,
"description"
:
"基于uni-ai的聊天示例项目,支持流式、支持前文总结,云端一体"
,
"main"
:
"main.js"
,
"scripts"
:
{
...
...
pages/chat/chat.vue
浏览文件 @
d47ae269
...
...
@@ -5,12 +5,12 @@
<text
class=
"noData"
v-if=
"msgLength === 0"
>
没有对话记录
</text>
<scroll-view
:scroll-into-view=
"scrollIntoView"
scroll-y=
"true"
class=
"msg-list"
:enable-flex=
"true"
>
<uni-ai-msg
ref=
"msg"
v-for=
"(msgIndex,index) in msgLength"
:key=
"index"
:msgIndex=
"index"
:show-cursor=
"index == msgLength - 1 && msgLength%2 === 0 && sseIndex"
></uni-ai-msg>
:show-cursor=
"index == msgLength - 1 && msgLength%2 === 0 && sseIndex"
></uni-ai-msg>
<view
class=
"tip-ai-ing"
v-if=
"msgLength && msgLength%2 !== 0"
>
<text>
uni-ai正在思考中...
</text>
<view
v-if=
"NODE_ENV == 'development' && !enableStream"
>
如需提速,请开通
<uni-link
class=
"uni-link"
href=
"https://uniapp.dcloud.net.cn/uniCloud/uni-ai-chat.html"
text=
"[流式响应]"
></uni-link>
如需提速,请开通
<uni-link
class=
"uni-link"
href=
"https://uniapp.dcloud.net.cn/uniCloud/uni-ai-chat.html"
text=
"[流式响应]"
></uni-link>
</view>
</view>
<view
id=
"last-msg-item"
></view>
...
...
@@ -49,7 +49,9 @@
// 引入配置文件
import
config
from
'
@/config.js
'
;
import
{
msgList
}
from
'
@/pages/chat/msgList.js
'
;
import
{
msgList
}
from
'
@/pages/chat/msgList.js
'
;
// 获取广告id
const
{
...
...
@@ -69,7 +71,7 @@
// 使聊天窗口滚动到指定元素id的值
scrollIntoView
:
""
,
// 消息长度(个数)
msgLength
:
0
,
msgLength
:
0
,
// 消息列表数据
msgList
:
[],
// 输入框的消息内容
...
...
@@ -127,17 +129,17 @@
handler
(
msgList
)
{
let
msgLength
=
msgList
.
length
if
(
msgLength
!=
this
.
msgLength
){
if
(
msgLength
!=
this
.
msgLength
)
{
this
.
msgLength
=
msgLength
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
this
.
updateLastMsg
(
msgList
[
msgLength
-
1
])
})
}
// 将msgList存储到本地缓存中
uni
.
setStorage
({
"
key
"
:
"
uni-ai-msg
"
,
"
data
"
:
msgList
"
key
"
:
"
uni-ai-msg
"
,
"
data
"
:
msgList
})
},
// 深度监听msgList变化
...
...
@@ -175,7 +177,7 @@
let
_msgList
=
uni
.
getStorageSync
(
'
uni-ai-msg
'
)
||
[];
if
(
_msgList
.
length
){
if
(
_msgList
.
length
)
{
msgList
.
push
(...
_msgList
)
}
...
...
@@ -553,7 +555,7 @@
.
then
(
res
=>
{
// console.log(111,res);
if
(
!
sseChannel
)
{
if
(
!
res
.
data
){
if
(
!
res
.
data
)
{
return
}
// 更新最后一条消息的状态为100(发送成功)
...
...
@@ -597,7 +599,7 @@
}
else
{
console
.
log
(
'
用户点击了清空按钮,跳过前一次请求的回调。内容:
'
,
res
.
data
.
reply
);
}
}
else
{
}
else
{
// 处理 sseChannel没结束 云函数提前结束的情况
sseChannel
.
close
()
this
.
sseIndex
=
0
...
...
@@ -678,7 +680,7 @@
// 将流式响应计数值归零
this
.
sseIndex
=
0
// 将消息列表清空
this
.
msgList
.
splice
(
0
,
this
.
msgLength
);
this
.
msgList
.
splice
(
0
,
this
.
msgLength
);
}
}
});
...
...
@@ -700,6 +702,7 @@
display
:
flex
;
box-sizing
:
border-box
;
}
/* #endif */
...
...
@@ -803,6 +806,7 @@
.
send
:
:
after
{
display
:
none
;
}
/* #endif */
...
...
@@ -811,6 +815,7 @@
height
:
1px
;
width
:
750rpx
;
}
.noData
{
margin-top
:
15px
;
text-align
:
center
;
...
...
@@ -819,6 +824,7 @@
font-size
:
12px
;
justify-content
:
center
;
}
.tip-ai-ing
{
align-items
:
center
;
flex-direction
:
column
;
...
...
@@ -847,7 +853,7 @@
max-width
:
950px
;
}
.container
,
.container
{
box-shadow
:
0
0
5px
#e0e1e7
;
margin-top
:
44px
;
...
...
@@ -894,11 +900,6 @@
width
:
100%
!
important
;
}
.create_time-box
{
margin-top
:
15px
;
justify-content
:
center
;
}
.textarea-box
,
.textarea
,
textarea
,
...
...
@@ -906,7 +907,6 @@
height
:
120px
;
}
.container
,
.foot-box
,
.textarea-box
{
background-color
:
#FFF
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录