体质测试
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
tizhiceshi/page/shareList/shareList.wxml

37 lines
1.2 KiB

<!--page/shareList/shareList.wxml-->
<view class="share">
<view class="sharelist" wx:for="{{lists}}" wx:key="index">
<view class="top">
<view class="picde">
<image src="{{userInfo.avatar}}"></image>
</view>
<view class="detailsInfo">
<view class="detailsItem">
<text class="first">测试时间:</text>
<text class="second">{{item.time}}</text>
</view>
<view>
<text class="first">测试得分:</text>
<text class="second score">{{item.score}}分</text>
</view>
<view>
<text class="first">测试结果:</text>
<text class="second">{{item.testname}}</text>
</view>
<view>
<text class="first">测试用时:</text>
<text class="second">{{item.usetime}}秒</text>
</view>
</view>
</view>
<view class="btngroup">
<view class="btnitem" bindtap="gorecord" data-test_id="{{item.id}}">浏览记录</view>
<view class="btnitem" data-test_id="{{item.id}}" bindtap="goDetail">详情</view>
<view class="btnitem sharebtn" data-test_id="{{item.id}}" bindtap="goDetail">分享</view>
</view>
</view>
<button class="zixun" open-type='contact' >
    <image src="../img/zixun.png"></image>
</button>
</view>