This commit is contained in:
@fawn-nine
2024-09-26 15:43:57 +08:00
parent 86a1f754c2
commit b2221666e1
13 changed files with 132 additions and 73 deletions

View File

@@ -19,7 +19,7 @@
</view>
<view class="imgBox flex_box flex_between" v-if="item.certificateUrlList.length > 0">
<view class="img" v-for="(item1,index1) in item.certificateUrlList" :key="index1">
<image @click="preveImg(item1)" :src="item1" mode="widthFix"></image>
<image @click="preveImg(item1)" :src="item1" mode="heightFix"></image>
</view>
<view class="info flex_box align-items_box">
<text class="small_btn border_radius_10 moreBtn" @click="showMore(item)">详细信息</text>
@@ -32,16 +32,16 @@
<u-divider text="您还未获得证书"></u-divider>
</view>
<u-popup key="1" :show="showTestTips" :round="10" @close="closeManager">
<view class="padd20 " v-if="thisInfo">
<view class="padd20 " v-if="thisInfo" >
<view class="mtb20" style="text-align: center;">
<h3>证书详情</h3>
</view>
<view class="info">
<view>证书类型{{thisInfo.type}}</view>
<view>获得时间{{thisInfo.createTime}}</view>
<view class="info" style="line-height: 60rpx;">
<view><text style="color: #999;">证书类型</text>{{thisInfo.type}}</view>
<view><text style="color: #999;">获得时间</text>{{thisInfo.createTime}}</view>
<view class="">
获得途径{{thisInfo.title}}学习获得
<text style="color: #999;">获得途径</text>{{thisInfo.title}}学习获得
</view>
</view>
</view>
@@ -352,10 +352,10 @@
.item{margin-bottom: 20rpx;
h3{font-weight: normal; margin: 20rpx 0;}
}
.img{width: 36%; overflow: hidden;
.img{width: 36%; overflow: hidden; height: 300rpx;
image{width: 100%; height: 100%;}
}
.imgBox{overflow: hidden;}
.imgBox{ overflow: hidden; }
.moreBtn{
color: #55aaff; border: #55aaff 1px solid;
}