董国庆
2025-06-30 9fe11a3b1c7ca926e2f4e97e36c2911c290a0ab2
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 })
}