27 lines
1.4 KiB
Plaintext
27 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>
|
|
<scroll-view style="margin-top:70rpx;padding-left:10rpx;padding-right:10rpx;">
|
|
<view class="list" wx:if="{{resultsList.length>0}}">
|
|
<view class="item" wx:for="{{resultsList}}" wx:key="index" bindtap="showDetail" data-item="{{item}}">
|
|
<view class="cu-avatar radius xl"
|
|
style="background-image:url(https://img0.baidu.com/it/u=3328192120,981881484&fm=26&fmt=auto&gp=0.jpg);">
|
|
</view>
|
|
<view class="content">
|
|
<text class="text-cut-two text-black text-bold">2021年4月考试成绩</text>
|
|
<view class="text-cut">
|
|
<text class="cuIcon-time text-darkblue"></text>
|
|
<text class="text-darkblue margin-left-smm">考试日期:2021-12-12</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<van-empty description="暂无数据" wx:else />
|
|
</scroll-view> |