取消enx活动图片 费率改为1%

This commit is contained in:
2025-04-22 14:26:41 +08:00
parent 4d436c725e
commit 368d0a8a10
45 changed files with 2581 additions and 234 deletions

View File

@@ -0,0 +1,68 @@
import request from '../utils/request'
//历史聊天记录查询 用户查询七天前的聊天信息
export function getHistory() {
return request({
url: `chat/message/find/history/message`,
method: 'get',
})
}
//历史聊天记录查询 查询七天内记录
export function getHistory7() {
return request({
url: `chat/message/find/recently/message`,
method: 'get',
})
}
//用户点击对话框默认已读
export function getReadMessage(data) {
return request({
url: `chat/message/read/message`,
method: 'post',
data
})
}
//聊天列表
export function getRoomList() {
return request({
url: `/chat/rooms/find/room/list`,
method: 'get',
})
}
//重要聊天标记
export function getUpdateRoom(data) {
return request({
url: `/chat/rooms/update/room`,
method: 'post',
data
})
}
//图片上传接口
export function getFileUpdate(data) {
return request({
url: `file/update`,
method: 'post',
data
})
}
//图根据当前用户邮箱查询聊天室id
export function getUserid() {
return request({
url: `chat/rooms/find/room/by/userid`,
method: 'get',
})
}