import request from '@/sheep/request'; export default { list: () => request({ url: '/api/notice/list', method: 'GET', custom: { showLoading: false, auth: false, }, }), detail: (id) => request({ url: '/api/notice/detail', method: 'GET', params: { id: id, }, custom: { showLoading: false, auth: false, }, }), };