import request from '@/utils/request.js'; export const notificationApi = { getList(page = 1, page_size = 20) { return request({ url: '/api/c/v1/notifications', method: 'GET', data: { page, page_size } }); }, getUnreadCount() { return request({ url: '/api/c/v1/notifications/unread-count', method: 'GET' }); }, markRead(id) { return request({ url: `/api/c/v1/notifications/${id}/read`, method: 'PUT' }); }, markAllRead() { return request({ url: '/api/c/v1/notifications/read-all', method: 'PUT' }); } };