From 8f6a2095d907c2a892df84476ea1ccd23b984ecd Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期四, 13 六月 2024 15:40:19 +0800
Subject: [PATCH] fix(培训列表):修改横向滚动条问题

---
 src/components/ExamInfo/index.vue |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/components/ExamInfo/index.vue b/src/components/ExamInfo/index.vue
index e776b51..8fd4032 100644
--- a/src/components/ExamInfo/index.vue
+++ b/src/components/ExamInfo/index.vue
@@ -1,7 +1,7 @@
 <template>
   <div class="info-container w-full">
     <div class="exam-title break-all mb-4 text-base text-gray-700">
-      1.娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯娴嬭瘯
+      {{ title }}
     </div>
     <div class="img-container flex">
       <div class="img-item">
@@ -12,7 +12,16 @@
 </template>
 
 <script setup>
-
+const props = defineProps({
+  questionIndex: {
+    type: Number,
+    required: true
+  },
+  title: {
+    type: String,
+    required: true
+  }
+})
 </script>
 
 <style lang="scss" scoped>

--
Gitblit v1.8.0