feat(api): 新增组件市场审核列表接口

master
钟良源 3 months ago
parent ab9d8ee2ef
commit 6295f710ff

@ -0,0 +1,10 @@
import axios from 'axios';
import { ReviewGroup } from '@/api/interface';
// 公共路径
const urlPrefix = '/api/v1/bpms-workbench';
// 组件审核列表
export function getReviewGroupByNew(params: ReviewGroup) {
return axios.get(`${urlPrefix}/componentMarket/reviewGroupByNew`, { params });
}
Loading…
Cancel
Save