Administrator
2021-09-11 72c562b77f4c4bd5f5251cbd4c77c4879239744c
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
        }
    })
}