zhengpz
2021-11-21 5e607244d769762038b852403a5f51d6b20700d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
import request from '@/router/axios';
 
export const getLisperetaskDistribution = (current, size, params) => {
    return request({
        url: '/api/directive/page',
        method: 'get',
        params: {
            ...params,
            current,
            size
        }
    })
}