Administrator
2021-12-06 a17e2d1457cabc823ce221db51b0f34469a7bb73
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
        }
    })
}