make.ts 181 B

1234567891011
  1. import { http } from '@/utils/http/axios';
  2. //获取文章
  3. export function makeList(params?) {
  4. return http.request({
  5. url: '/make/list',
  6. method: 'get',
  7. params,
  8. });
  9. }