From 261bfbb768b7785d8fddd7223ee0b5766976fd8b Mon Sep 17 00:00:00 2001 From: yuanshun <1422672890@qq.com> Date: Wed, 3 Jan 2024 18:00:40 +0800 Subject: [PATCH] ts --- src/api/task.ts | 9 +++ src/components/FooterTabbar.vue | 2 + src/components/list/TaskList.vue | 33 ++++---- src/main.ts | 5 +- src/view/task/components/Banner.vue | 2 +- src/view/task/components/PositionType.vue | 18 ++--- src/view/task/index.vue | 96 ++++++++++++++++++----- 7 files changed, 118 insertions(+), 47 deletions(-) diff --git a/src/api/task.ts b/src/api/task.ts index b89f649..f09d832 100644 --- a/src/api/task.ts +++ b/src/api/task.ts @@ -32,4 +32,13 @@ export function screenList(data: any) { method: 'get', params: data }) +} + +//任务列表接口 +export function taskAllList(data: any) { + return request({ + url: '/task/taskAllList', + method: 'get', + params: data + }) } \ No newline at end of file diff --git a/src/components/FooterTabbar.vue b/src/components/FooterTabbar.vue index 3c2b1fb..0b16557 100644 --- a/src/components/FooterTabbar.vue +++ b/src/components/FooterTabbar.vue @@ -33,6 +33,8 @@ height:3rem; position:fixed; bottom:0px; + z-index: 100; + background: #ffffff; left:0px; border-top:1px solid #dddddd; } diff --git a/src/components/list/TaskList.vue b/src/components/list/TaskList.vue index 7d9c4cc..d95db23 100644 --- a/src/components/list/TaskList.vue +++ b/src/components/list/TaskList.vue @@ -1,35 +1,35 @@ - \ No newline at end of file