guoshilong
2023-10-27 2311b03aee9db1bebacdd2ced13c071efda6a011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import http from '@/http/api.js'
 
//获取站内信数量
export const messageCount = (params) => {
    return http.request({
        url: '/api/blade-sm/message/record/count',
        method: 'GET',
        params
    })
}
 
//获取站内信列表
export const getMessageList = (params) => {
    return http.request({
        url: '/api/blade-sm/message/record/page',
        method: 'GET',
        params
    })
}
 
//已读
export const readMessage = (data) => {
    return http.request({
        url: '/api/blade-sm/message/record/editRead',
        method: 'POST',
        data
    })
}