提现优化更新

This commit is contained in:
GaoHao
2025-01-07 15:28:42 +08:00
parent f82c31084d
commit 419f308802
11 changed files with 817 additions and 14 deletions

11
api/me/message.js Normal file
View File

@@ -0,0 +1,11 @@
import http from '@/http/http.js'
/**
* 获取消息列表
*/
export const selectMessageByUserId = (data) => {
return http.request({
url: '/message/selectMessageByUserId',
data: data,
})
}