From 4da9c43056fa8d78503e9cb3ced28c91f07edbac Mon Sep 17 00:00:00 2001 From: WX0lxh <2062408239@qq.com> Date: Thu, 6 Nov 2025 14:53:39 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packageB/train/mockExam/examList.vue | 347 +++++++++++++++++--- packageB/train/practice/startPracticing.vue | 2 +- 2 files changed, 297 insertions(+), 52 deletions(-) diff --git a/packageB/train/mockExam/examList.vue b/packageB/train/mockExam/examList.vue index fa2ad83..19b9bf2 100644 --- a/packageB/train/mockExam/examList.vue +++ b/packageB/train/mockExam/examList.vue @@ -26,38 +26,103 @@ -
+
-
2025年注册会计师证
-
未开始
+
{{item.name}}
+
已完成
+
未开始
+
+ 进行中 +
+
已过期
-
立即练习
+
开始考试
+
继续考试
-
考试时长:120分钟
-
题目数量:88题
-
及格分数:60分
-
截止日期:2025-12-31
+
考试时长:{{item.timeLimit}}分钟
+
题目数量:{{item.totalQuestions}}题
+
分类: + + + +
+
成绩: + {{ item.gradeUser.score }}分 + -- +
+
开始时间:{{item.startDate}}
+
截止时间:{{item.dueDate}}
-
查看成绩
-
详情
-
收藏
+
查看成绩
+
详情
+
+ + 收藏 +
+
+ + 取消 +
-
-
-
-
+
+
{{examInfo.name}}
×
+
+
已完成
+
未开始
+
+ 进行中 +
+
已过期
+
初级
+
中级
+
高级
+
+
考试简介
+
{{ examInfo.description }}
+
+
+
{{ examInfo.timeLimit }}
+
考试时长
+
(分钟)
+
+
+
+
{{ examInfo.totalQuestions }}
+
题目总数
+
+
+
+
{{ examInfo.passScore }}
+
及格分数
+
+
+
+
{{ examInfo.totalScore }}
+
总分
+
+
+
考试要求
+
考试过程中请勿刷新页面或关闭浏览器
+
请在规定时间内完成所有题目
+
考试开始后不可暂停,请确保网络连接稳定
+
考试结束后可查看成绩和答案解析
+ +
+
开始考试
+
继续考试
+
@@ -66,22 +131,138 @@ + + \ No newline at end of file diff --git a/pages.json b/pages.json index 558ca32..84e0557 100644 --- a/pages.json +++ b/pages.json @@ -359,10 +359,17 @@ { "path": "train/mockExam/examList", "style": { - "navigationBarTitleText": "模拟考试", + "navigationBarTitleText": "考试列表", "navigationBarTitleTextSize": "30rpx" } }, + { + "path": "train/mockExam/startExam", + "style": { + "navigationBarTitleText": "模拟考试", + "navigationBarTitleTextSize": "30rpx" + } + }, { "path": "train/mockExam/viewGrades", "style": { From a19458c12df963ea48f8d96dd0422a5f97b730cd Mon Sep 17 00:00:00 2001 From: lijie_ycrj <1540286404@qq.com> Date: Thu, 6 Nov 2025 15:15:17 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E5=B8=AE=E6=89=B6=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packageB/priority/helpFilter.vue | 965 +++++++++--------- packageB/priority/helpFollow.vue | 879 ++++++++-------- pages.json | 16 +- pages/index/components/index-one.vue | 9 + uni_modules/uni-icons/changelog.md | 6 +- .../components/uni-icons/uni-icons.uvue | 158 +-- .../components/uni-icons/uni-icons.vue | 6 +- uni_modules/uni-icons/package.json | 110 +- uni_modules/uni-steps/changelog.md | 18 + .../components/uni-steps/uni-steps.vue | 280 +++++ uni_modules/uni-steps/package.json | 87 ++ uni_modules/uni-steps/readme.md | 13 + 12 files changed, 1528 insertions(+), 1019 deletions(-) create mode 100644 uni_modules/uni-steps/changelog.md create mode 100644 uni_modules/uni-steps/components/uni-steps/uni-steps.vue create mode 100644 uni_modules/uni-steps/package.json create mode 100644 uni_modules/uni-steps/readme.md diff --git a/packageB/priority/helpFilter.vue b/packageB/priority/helpFilter.vue index 5e41f6d..ad3a496 100644 --- a/packageB/priority/helpFilter.vue +++ b/packageB/priority/helpFilter.vue @@ -1,497 +1,500 @@ - - \ No newline at end of file + border: 2rpx solid #FF7D26; + font-size: 24rpx + color: #F1690E + padding: 4rpx 10rpx +.form-item + display: flex + align-items: center + justify-content: space-between + margin-top: 30rpx +.item-left + display: flex + align-items: center +.item-img + width: 26rpx + height: 26rpx + margin-right: 10rpx +.item-label + font-size: 26rpx + color: #B3B3B3 +.item-right + font-size: 26rpx + color: #737373 +.form-btns + margin-top:30rpx +.form-box-btn + border-radius: 50rpx !important + margin-right: 24rpx + padding: 0rpx 40rpx +.detail-btn + background: #EDF5FF + border: 1px solid #3088FF + font-size: 28rpx + color: #3088FF +.follow-btn + background: #EEF9F3 + border: 1px solid #00933E + font-size: 28rpx + color: #00933E +.recommend-btn + background: linear-gradient(92deg, #0DCCFF 0%, #4760FF 100%) + font-size: 28rpx + color: #FFFFFF + diff --git a/packageB/priority/helpFollow.vue b/packageB/priority/helpFollow.vue index 1daf656..893c672 100644 --- a/packageB/priority/helpFollow.vue +++ b/packageB/priority/helpFollow.vue @@ -1,442 +1,503 @@