You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
420 B
24 lines
420 B
|
1 month ago
|
import request from '@/axios';
|
||
|
|
|
||
|
|
// 获取列表数据
|
||
|
|
export const getList = (current, size, params) => {
|
||
|
|
return request({
|
||
|
|
url: '/blade-desk/dsTasking/disposeList',
|
||
|
|
method: 'get',
|
||
|
|
params: {
|
||
|
|
...params,
|
||
|
|
current,
|
||
|
|
size,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
// 完成
|
||
|
|
export const completeSet = data => {
|
||
|
|
return request({
|
||
|
|
url: '/blade-desk/dsTasking/taskComplete',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
});
|
||
|
|
};
|