董国庆
2025-06-28 97f625ff89bee0daa53a0f4a71be86a1135479d1
1
2
3
4
5
6
7
8
9
import axios from '@/utils/request';
 
// 登录
export const getList = (data) => {
    return axios.get('/open/t-notice/list', { ...data })
}
export const read = (data) => {
    return axios.get(`/open/t-notice/read?id=${data.id}`, { ...data })
}