38 lines
1.9 KiB
Plaintext
38 lines
1.9 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> -->
|
|
<scroll-view style="padding-left:10rpx;padding-right:10rpx;margin-top:-10px;">
|
|
<view class="list" wx:if="{{resultsList.length>0}}">
|
|
<view class="item bg-white" wx:for="{{resultsList}}" wx:key="index" bindtap="showDetail" data-item="{{item}}">
|
|
<view class="content">
|
|
<text class="text-cut-two text-black text-bold">{{item.classPlanDTO.planName}}</text>
|
|
<view class="margin-top-sm">
|
|
<text class="cuIcon-time text-darkblue"></text>
|
|
<text>考试日期:{{item.examStartTime}}</text>
|
|
</view>
|
|
<view class="margin-top-sm">
|
|
<text class="cuIcon-location text-darkblue"></text>
|
|
<text>培训机构:{{item.classPlanDTO.orgName}}</text>
|
|
</view>
|
|
<view class="margin-top-sm">
|
|
<text class="cuIcon-form text-darkblue"></text>
|
|
<text>专业:{{item.classPlanDTO.workerCatalogName}}</text>
|
|
</view>
|
|
<view class="margin-top-sm flex align-center">
|
|
<text class="cuIcon-text text-darkblue"></text>
|
|
<view>成绩:
|
|
<text class="text-red text-xl">{{item.applyTestScores}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<van-empty description="暂无数据" wx:else />
|
|
</scroll-view> |