mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-09 00:42:45 +08:00
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
import request from '@/utils/request'
|
|
|
|
|
|
// 获得我的站内信分页
|
|
export function getNotifyLogPage(query) {
|
|
return request({
|
|
url: '/system/notify-log/page',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|