1
2
3
4
5
6
7
8
9
10
11
12
| import axios from '@/utils/request';
|
| // 列表
| export const getList = (data) => {
| return axios.post('/api/t-strain-report/pageListAll', { ...data })
| }
|
| export const add = (data) => {
| console.log('qweqwe',data);
|
| return axios.post('/api/t-strain-report/add', { ...data })
| }
|
|