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