11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
|
|
import { http } from '@/utils/http'
|
||
|
|
|
||
|
|
// 获取项目列表
|
||
|
|
export const getProjectListApi = (data) => {
|
||
|
|
return http({
|
||
|
|
method: 'GET',
|
||
|
|
url: '/project/list',
|
||
|
|
data,
|
||
|
|
})
|
||
|
|
}
|