xiangpei
2025-01-07 8779375b26e23113ebfa5940e4e5dbe696980f53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import request from '@/utils/request'
import commonUtil from "@/utils/common";
 
// 获取我的待办
export const getAllTodoList = data => {
    const queryString = commonUtil.objectToQueryStr(data);
    return request({
        url: '/task/manage/alllist',
        method: 'post',
        data: queryString,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded'
        },
    });
}