|
@@ -1,6 +1,7 @@
|
|
|
<template>
|
|
|
<div class="cell-box">
|
|
|
<van-cell
|
|
|
+ title-class="uni-app-fontsize-paragraph"
|
|
|
class="cell"
|
|
|
:title="
|
|
|
item.placeIssueName ||
|
|
@@ -25,7 +26,7 @@
|
|
|
<div class="icon">{{ index + 1 }}</div>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
- <div style="height:40rpx;width: 750rpx;"></div>
|
|
|
+ <div style="height: 40rpx; width: 750rpx"></div>
|
|
|
<m-classify-tip :content="classifyTip"></m-classify-tip>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -36,7 +37,9 @@ import utils from "@/utils/index";
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
- classifyTip:['地方题库,如有个别地区增加【地方题库】,请选择该区域的【地方题库】+【必学题】学习,如果没有无需学习地方题库'],
|
|
|
+ classifyTip: [
|
|
|
+ "地方题库,如有个别地区增加【地方题库】,请选择该区域的【地方题库】+【必学题】学习,如果没有无需学习地方题库",
|
|
|
+ ],
|
|
|
classData: [],
|
|
|
query: {},
|
|
|
};
|
|
@@ -63,7 +66,7 @@ export default {
|
|
|
api.exam
|
|
|
.studentQuestionInfoSelectDfQuestionInfo(this.query)
|
|
|
.then((res) => {
|
|
|
- res.data.shift()
|
|
|
+ res.data.shift();
|
|
|
this.classData = res.data;
|
|
|
});
|
|
|
},
|
|
@@ -88,15 +91,20 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.uni-app-fontsize-paragraph{
|
|
|
+ font-size: $uni-app-fontsize-paragraph;
|
|
|
+}
|
|
|
.cell-box {
|
|
|
display: flex;
|
|
|
padding: 30rpx 30rpx;
|
|
|
flex-wrap: wrap;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
.cell {
|
|
|
width: 334rpx;
|
|
|
margin-bottom: 30rpx;
|
|
|
box-shadow: 0rpx 0rpx 10rpx rgba(124, 129, 136, 0.2);
|
|
|
+ font-size: $uni-app-fontsize-paragraph;
|
|
|
}
|
|
|
.icon {
|
|
|
width: 40rpx;
|