This commit is contained in:
dute7liang
2024-01-09 23:33:52 +08:00
parent b1cc6491ac
commit 3dcc5b672d
2 changed files with 40 additions and 216 deletions

View File

@@ -195,4 +195,15 @@ export const accountTypeList = [
{ value: 1, label: '余额',listClass: listClass.info},
{ value: 2, label: '收益',listClass: listClass.primary},
]
// 0=文本消息,1=图片消息,2=语音消息,3=视频消息,4=发送地理位置消息,6=发送文件消息,10=发送提示消息,100=发送第三方自定义消息
export const imTypeList = [
{ value: 0, label: '文本消息'},
{ value: 1, label: '图片消息'},
{ value: 2, label: '语音消息'},
{ value: 3, label: '视频消息'},
{ value: 4, label: '发送地理位置消息'},
{ value: 6, label: '发送文件消息'},
{ value: 10, label: '发送提示消息'},
{ value: 100, label: '发送第三方自定义消息'},
]