zengh
2022-06-21 4fde32f8037fef94e41c65ab62a186477e3ccd16
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,
        }
    })
}