yanghao 2 өдөр өмнө
parent
commit
aab3dfdd13

+ 1 - 3
src/views/flow/todoListMobile.vue

@@ -32,7 +32,7 @@
           共 {{ pagination.total }} 条待办
         </div>
 
-        <div class="task-scroll-list" infinite-wrapper>
+        <div class="task-scroll-list">
           <div
             v-for="(item, index) in oaTasks"
             :key="item.requestId || `${item.requestName}-${index}`"
@@ -414,8 +414,6 @@ onMounted(() => {
 }
 
 .task-scroll-list {
-  max-height: 70vh;
-  overflow-y: auto;
   padding-right: 4px;
   background-color: transparent;
 }

+ 1 - 1
src/views/index.vue

@@ -745,7 +745,7 @@ const handleQuickAccessCommand = (command: string) => {
   let ua2 = navigator.userAgent.toLowerCase();
   let isMobile = ua2.indexOf("dingtalk") > -1;
   const routeMap: Record<string, string> = {
-    "todo-oa": "/todo-list?type=oa",
+    "todo-oa": "/mobile-todo-list?type=oa",
     "todo-crm": "/crm-todo-list?type=crm",
     "done-oa": "/oa-done-list?type=oa",
     "done-crm": "/crm-done-list?type=crm",