pyt
6 天以前 be31adc8150e5b21008aa7d6212fc105fc425818
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 })
}