|
@@ -35,7 +35,7 @@
|
|
|
共 {{ pagination.total }} 条待办
|
|
共 {{ pagination.total }} 条待办
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <div class="task-scroll-list">
|
|
|
|
|
|
|
+ <div class="task-scroll-list" infinite-wrapper>
|
|
|
<div
|
|
<div
|
|
|
v-for="(item, index) in oaTasks"
|
|
v-for="(item, index) in oaTasks"
|
|
|
:key="item.requestId || `${item.requestName}-${index}`"
|
|
:key="item.requestId || `${item.requestName}-${index}`"
|
|
@@ -145,6 +145,7 @@
|
|
|
<InfiniteLoading
|
|
<InfiniteLoading
|
|
|
:identifier="infiniteId"
|
|
:identifier="infiniteId"
|
|
|
spinner="spiral"
|
|
spinner="spiral"
|
|
|
|
|
+ :force-use-infinite-wrapper="true"
|
|
|
@infinite="loadMore"
|
|
@infinite="loadMore"
|
|
|
>
|
|
>
|
|
|
<template #no-more>
|
|
<template #no-more>
|
|
@@ -422,9 +423,10 @@ onMounted(() => {
|
|
|
|
|
|
|
|
.task-scroll-list {
|
|
.task-scroll-list {
|
|
|
padding-right: 4px;
|
|
padding-right: 4px;
|
|
|
- background-color: transparent;
|
|
|
|
|
- height: calc(100vh - 100px);
|
|
|
|
|
- /* overflow-y: auto; */
|
|
|
|
|
|
|
+ background: var(--bg-table);
|
|
|
|
|
+ height: calc(100vh - 180px);
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+ border-radius: 12px;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.task-card {
|
|
.task-card {
|