24 lines
1.5 KiB
Plaintext
24 lines
1.5 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="{{noticeList.length>0}}">
|
||
|
<view class="item" wx:for="{{noticeList}}" wx:key="index" bindtap="showDetail" data-item="{{item}}">
|
||
|
<view class="cu-avatar radius xl"
|
||
|
style="background-image:url(https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fwww.czcaizhi.com%2FContent%2FUploadFiles%2Fimage%2F20180920%2F20180920133956_3429.jpg&refer=http%3A%2F%2Fwww.czcaizhi.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1622110389&t=4ae9d4f943c30ac6d43801515eec97e5);">
|
||
|
</view>
|
||
|
<view class="content">
|
||
|
<text class="text-cut text-black text-bold">2021年4-6月特种设备作业人员培训开班通知</text>
|
||
|
<text class="text-cut">新东方在线</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<van-empty description="暂无数据" wx:else />
|
||
|
</scroll-view>
|