田源
2023-09-20 c60e588944ffbe400cb1f82a00f49df49eec81cf
1
2
3
4
5
6
7
8
9
10
11
import request from '@/router/axios';
 
export const getList = (url, params) => {
  return request({
    url: url,
    method: 'get',
    params: {
      ...params
    }
  })
}