逾期未完成任务列表

This commit is contained in:
WindowBird 2025-11-13 08:51:28 +08:00
parent 769e0d169e
commit 423034bf8b
2 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ const loadTaskList = async () => {
if (statusFilter.value === 'completed') {
res = await getTaskList({ statusList: [4], ownerId: ownerId });
} else if (statusFilter.value === 'overdue') {
res = await getTaskList({ overdue: true, ownerId: ownerId });
res = await getTaskList({ statusList: [2],overdue: true, ownerId: ownerId });
} else if (statusFilter.value === 'pending') {
res = await getTaskList({ statusList: [2], ownerId: ownerId });
} else if (statusFilter.value === 'imminent') {

View File

@ -11,7 +11,7 @@ export const Request = () => {
uni.$uv.http.setConfig((config) => {
/* config 为默认全局配置*/
config.baseURL = 'http://192.168.1.5:4001'; /* 根域名 */
// config.baseURL = 'https://pm.ccttiot.com/prod-api'; /* 根域名 */
config.baseURL = 'https://pm.ccttiot.com/prod-api'; /* 根域名 */
return config
})