Commit 5806a28f authored by 前端-黄佳鑫's avatar 前端-黄佳鑫
parents d4ec8de0 155a3d61
......@@ -23,7 +23,10 @@ export const toChatRoom = (memberId: string = '', shopType: number = 1) => {
window.open(CHATROOM_URL);
return;
}
PublicApi.getMessageImHistorySession({ memberId: memberId }).then(res => {
const _params: any = {
memberId
}
PublicApi.getMessageImHistorySession(_params).then(res => {
if (res.code === 1000) {
let _userId = '';
const _list = res.data;
......@@ -92,7 +95,7 @@ export const notificationChatRoom = (content: any) => {
}
notification.open({
message: '你收到一条消息',
description: <Typography.Text ellipsis>{_text}</Typography.Text>,
description: <Typography.Text style={{ width: 200 }} ellipsis>{_text}</Typography.Text>,
btn,
key,
duration: 10,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment