zengh
2022-03-03 39a7107e86bdb07ee104574a0f6ba11f6100c290
1
2
3
4
5
6
7
8
9
10
11
12
13
import request from '@/router/axios';
 
export const getList = (current, size, params) => {
    return request({
        url: '/api/healthcode/healthcode/page',
        method: 'get',
        params: {
            ...params,
            current,
            size,
        }
    })
}