|
@@ -89,6 +89,8 @@
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
</div>
|
|
|
+ <div style="height:20px;width: 100%;"></div>
|
|
|
+ <m-classify-tip :content="classifyTip"></m-classify-tip>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -103,6 +105,7 @@ const {
|
|
|
const classDataLeft = ref([]);
|
|
|
const classDataRight = ref([]);
|
|
|
const classData = ref([]);
|
|
|
+const classifyTip = ref(["软件题库已同步更新至车管所最新,左边的红色必学题,每套题必须学完.", "模拟考试能连续5次以上达到96分左右,即可参加考试", "如果模拟考试达不到要求,请把右边的选学题也学习一遍"]);
|
|
|
getTopicClass(query.path as string, {
|
|
|
...query,
|
|
|
excellIssueName: "必",
|
|
@@ -124,7 +127,6 @@ getTopicClass(query.path as string, {
|
|
|
// data.data.shift();
|
|
|
classDataLeft.value = [...classDataLeft.value, ...data.data];
|
|
|
});
|
|
|
-
|
|
|
});
|
|
|
|
|
|
getTopicClass(query.path as string, {
|
|
@@ -139,10 +141,13 @@ getTopicClass(query.path as string, {
|
|
|
.cell-container {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ padding: 5px 15px;
|
|
|
+ justify-content: space-between;
|
|
|
}
|
|
|
.cell-box {
|
|
|
display: flex;
|
|
|
- padding: 5px 15px;
|
|
|
+
|
|
|
flex-wrap: wrap;
|
|
|
flex-direction: column;
|
|
|
|