mini-system-examination-signup/pages/results/resultslist.wxml
dong_bo0602 19bde1b78c 0608
2022-06-08 16:49:02 +08:00

34 lines
1.4 KiB
Plaintext

<!--pages/branches/brancheslist.wxml-->
<cu-custom bgColor="bg-darkblue" isBack="{{true}}" isRelaunch="{{false}}">
<view slot="content" style="color:#FFFFFF;">成绩查询</view>
</cu-custom>
<!-- <view class="cu-bar bg-white search fixed" style="top:{{CustomBar}}px">
<view class="search-form round" style="margin-top:5rpx;margin-bottom:5rpx">
<text class="cuIcon-search"></text>
<input type="text" placeholder="请输入关键字" confirm-type="search" bindinput="doSearch"></input>
</view>
</view> -->
<view style="padding:30rpx;">
<view class="achievement">
<view class="achievement-box" wx:for="{{resultsList}}" wx:if="{{resultsList.length>0}}" wx:key="index">
<view class="row org-title">
{{item.orgName}}
</view>
<view class="row">
<text>作业类别:</text>{{item.parentWorkTypeName}}
</view>
<view class="row">
<text>准操项目:</text>{{item.workTypeName}}
</view>
<view class="row">
<text>培训班次:</text>{{item.planName}}
</view>
<view class="row">
<text>培训类别:</text>{{item.applyLeiBie}}
</view>
<view class="row">
<text>成绩:</text>{{item.examScore}}
</view>
</view>
</view>
</view>