From 423034bf8b43413b515d8a6eaaaa081850eb6dcb Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Thu, 13 Nov 2025 08:51:28 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=BE=E6=9C=9F=E6=9C=AA=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/task/list/index.vue | 2 +- utils/request/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/task/list/index.vue b/pages/task/list/index.vue index bf16e65..f0d9f7b 100644 --- a/pages/task/list/index.vue +++ b/pages/task/list/index.vue @@ -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') { diff --git a/utils/request/index.js b/utils/request/index.js index 1a9501b..a397cd6 100644 --- a/utils/request/index.js +++ b/utils/request/index.js @@ -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 })