1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import axios from '@/utils/request';
|
| // 列表
| export const getList = (data) => {
| return axios.post('/api/t-experiment-scheme/auditPageList', { ...data })
| }
| // 详情
| export const getDetail = (data) => {
| return axios.get('/open/t-experiment-scheme/getDetailById', { params:data })
| }
|
|
| // 审批
| export const audit = (data) => {
| return axios.post('/api/t-experiment-scheme/audit', { ...data })
| }
|
|