liuyg
2021-07-27 9851a0abee66cfcbf14c3aa0d3a2a2114b1dff3a
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
        }
    })
}