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