kongdeqiang
2022-11-04 98fcbf66162fba0a097a8abcaeba5e1c1e32000e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 统一请求路径前缀在libs/axios.js中修改
import { getRequest, getNoAuthRequest, postNoAuthRequest, postRequest } from '@/libs/axios';
 
//table1
export const table1 = (params) => {
    return getRequest('/pcStatistic3/table1', params)
}
 
export const table2 = (params) => {
    return getRequest('/pcStatistic3/table2', params)
}
 
export const table3 = (params) => {
    return getRequest('/pcStatistic3/table3', params)
}
 
export const table4 = (params) => {
    return getRequest('/pcStatistic3/table4', params)
}