董国庆
6 天以前 653a7a72f7d6a816b4b5e24a07b7d2f450cfb287
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 })
}