14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
import service from '@/utils/request'
|
|
|
|
const BASE_URL = '/billing'
|
|
|
|
/** @desc 通过rootid查询包含的任务列表 */
|
|
export function getTaskListByRootId(req) {
|
|
return service.post(`${BASE_URL}/queryTaskListByRootId`, req)
|
|
}
|
|
|
|
/** @desc 查询用户所含的rootId */
|
|
export function getLibraryImg(req) {
|
|
return service.get(`${BASE_URL}/page`, { params: req })
|
|
}
|