|
@@ -43,9 +43,9 @@
|
|
|
<template v-if="item1.showList">
|
|
|
<view v-for="(item2,index2) in item1.list" :key="index2" >
|
|
|
<view class="section" @click="changeItem" :data-index1="index1" :data-index2="index2" :data-id="item2.chapterExamId" :data-type="item1.type">
|
|
|
- <image src="/static/icon/up1.png" class="icon_up" v-if="!item2.showList"></image>
|
|
|
- <image src="/static/icon/down1.png" class="icon_up" v-if="item2.showList"></image>
|
|
|
- {{item2.name}}
|
|
|
+ <u-icon v-if="!item2.showList" name="arrow-up"></u-icon>
|
|
|
+ <u-icon v-if="item2.showList" name="arrow-down"></u-icon>
|
|
|
+ <text style="margin-left:34rpx;">{{ item2.name }}</text>
|
|
|
</view>
|
|
|
<view v-if="item2.showList">
|
|
|
<view class="article" :class="{active:showTest(article.examId)}" v-for="(article,index3) in item2.list" :key="index3">
|
|
@@ -64,9 +64,9 @@
|
|
|
|
|
|
<template v-if="item1.type ==2">
|
|
|
<view class="section" :data-index1="index1" :data-id="item1.majorId" @click="changeItem" :data-type="item1.type">
|
|
|
- <image src="/static/icon/up1.png" class="icon_up" v-if="!item1.showList"></image>
|
|
|
- <image src="/static/icon/down1.png" class="icon_up" v-if="item1.showList"></image>
|
|
|
- {{item1.name}}
|
|
|
+ <u-icon v-if="!item1.showList" name="arrow-up"></u-icon>
|
|
|
+ <u-icon v-if="item1.showList" name="arrow-down"></u-icon>
|
|
|
+ <text style="margin-left:34rpx;">{{ item1.name }}</text>
|
|
|
</view>
|
|
|
<view v-if="item1.showList" >
|
|
|
<view class="article" :class="{active:showTest(article.examId)}" :key="index3" v-for="(article,index2) in item1.list">
|
|
@@ -325,7 +325,7 @@ export default {
|
|
|
padding:10rpx 16rpx;
|
|
|
|
|
|
.module {
|
|
|
- font-size: 30rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
color: #333333;
|
|
|
|
|
|
.icon {
|
|
@@ -335,9 +335,7 @@ export default {
|
|
|
|
|
|
.section {
|
|
|
font-size: 30rpx;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-weight: bold;
|
|
|
- color: #333333;
|
|
|
+ color: #333;
|
|
|
white-space:nowrap;
|
|
|
overflow:hidden;
|
|
|
text-overflow:ellipsis;
|
|
@@ -350,7 +348,7 @@ export default {
|
|
|
height:80rpx;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
-
|
|
|
+ margin-left:64rpx;
|
|
|
font-size: 24rpx;
|
|
|
color: #666666;
|
|
|
border-bottom: 1rpx solid #EEEEEE;
|