|
@@ -24,7 +24,7 @@
|
|
|
<u-line color="#D6D6DB" />
|
|
|
</view>
|
|
|
<view class="intro" v-if="current == 0">
|
|
|
- <view class="content">
|
|
|
+ <view class="content" style="padding:10rpx;">
|
|
|
<rich-text :nodes="goodsData.mobileDetailHtml"></rich-text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -43,8 +43,10 @@
|
|
|
<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">
|
|
|
- <u-icon v-if="!item2.showList" name="arrow-up"></u-icon>
|
|
|
- <u-icon v-if="item2.showList" name="arrow-down"></u-icon>
|
|
|
+ <image src="/static/icon/down1.png" class="icon_up" v-if="item2.showList"></image>
|
|
|
+ <image src="/static/icon/up1.png" class="icon_up" v-if="!item2.showList"></image>
|
|
|
+ <!-- <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">
|
|
@@ -64,8 +66,10 @@
|
|
|
|
|
|
<template v-if="item1.type ==2">
|
|
|
<view class="section" :data-index1="index1" :data-id="item1.majorId" @click="changeItem" :data-type="item1.type">
|
|
|
- <u-icon v-if="!item1.showList" name="arrow-up"></u-icon>
|
|
|
- <u-icon v-if="item1.showList" name="arrow-down"></u-icon>
|
|
|
+ <image src="/static/icon/down1.png" class="icon_up" v-if="item1.showList"></image>
|
|
|
+ <image src="/static/icon/up1.png" class="icon_up" v-if="!item1.showList"></image>
|
|
|
+ <!-- <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" >
|