田源
2023-08-08 4097158a48f86181c7c01ab0f8f52c3b8ef6ed6b
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
    }
  })
}