diff --git a/src/pages/index/components/todo.vue b/src/pages/index/components/todo.vue
index d59dcbcf..3450eec3 100644
--- a/src/pages/index/components/todo.vue
+++ b/src/pages/index/components/todo.vue
@@ -6,7 +6,7 @@
待办事项
-
+
{{activeDate}}
diff --git a/src/pages/learningTasks/components/details-item.vue b/src/pages/learningTasks/components/details-item.vue
index 02409e35..8a0c26a8 100644
--- a/src/pages/learningTasks/components/details-item.vue
+++ b/src/pages/learningTasks/components/details-item.vue
@@ -1,8 +1,159 @@
+
+
+
+
+
+
+ 柜面业务操作业务操作规范及流程
+
+
+
+
+
+
+ 完成学习
+
+
+
+
+
+ 完成学习
+
+
+
+
+
+
+
-
-
\ No newline at end of file
+
diff --git a/src/pages/learningTasks/details.vue b/src/pages/learningTasks/details.vue
index 9077e4a5..df107c70 100644
--- a/src/pages/learningTasks/details.vue
+++ b/src/pages/learningTasks/details.vue
@@ -1,30 +1,66 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ 任务详情
+
+
+
+
+
+
+
+
+
+ {{ detailData.taskName }}
+
+
+
+ 起止时间:{{ detailData.startTm?.substr(0, 10) }}至{{ detailData.endTm?.substr(0, 10) }}
+
+
+
+
+
+
+
+
+ 完成人数
+ :
+
+
+ {{ detailData.taskFinishSums ?? 0 }}/{{ detailData.taskSums ?? 0 }}
+
+
+
+
+
+
+
+ 32%
+
+
+
- 任务详情
-
-
-
-
-
+
+
+
+
+
+
@@ -34,6 +70,7 @@
import { queryAllTraTaskCrsInfo, queryTraTaskInfoByTaskId } from '@/api/learningTasks.js';
import { passTheExamIcon, completeTheExercisesIcon, lockIcon } from '@/common/imgSvg';
import { insertTraPersonalCollectionTask, deleteTraPersonalCollectionById } from '@/api/favorites.js';
+ import detailsItem from './components/details-item';
import common from '@/common/common';
import { getPageCache } from '@/common/common';
@@ -42,7 +79,7 @@
const data_list = ref([]);
const total = ref(-1);
const taskId = ref('');
-
+ const progress = computed(() => '30%');
const queryList = async (pageNo, pageSize, from) => {
const requests = [queryAllTraTaskCrsInfo({ taskId: taskId.value })];
// 如果不是第一次请求,才添加第二个请求
@@ -202,19 +239,134 @@