钟日健
2022-03-19 609729b91832aad1e8a1c7b16e3c0cea6fa8ba1f
1
2
3
4
5
6
7
8
9
10
11
12
13
import request from '@/router/axios';
 
export const getList = (current, size, params) => {
    return request({
        url: '/api/blade-desk/notice/list',
        method: 'get',
        params: {
            ...params,
            current,
            size,
        }
    })
}