Commit 1228eb37 by pangchong

Merge branch 'master' of 122.112.146.86:qlintonger/standalone-anyremote

parents 2fcd0413 c6a268ca
...@@ -119,7 +119,7 @@ const { ...@@ -119,7 +119,7 @@ const {
total: (res) => parseInt(res.data.total), total: (res) => parseInt(res.data.total),
data: (res) => res.data.list, data: (res) => res.data.list,
sendable: () => { sendable: () => {
return chooseContactsItem?.value?.id ? true : false return !!chooseContactsItem?.value?.id
} }
} }
) )
...@@ -139,6 +139,7 @@ const showDetails = async (channelId: string) => { ...@@ -139,6 +139,7 @@ const showDetails = async (channelId: string) => {
projectName: 'mu', projectName: 'mu',
channelId channelId
} }
// @ts-ignore
const res = await alova.Post<any>('/call/getChatRoomMsgList', params, { meta: { loading: true } }) const res = await alova.Post<any>('/call/getChatRoomMsgList', params, { meta: { loading: true } })
if (res.code == 200) { if (res.code == 200) {
console.log(res.data) console.log(res.data)
......
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