mini-system-examination-signup/pages/institutions/institutionslist.wxml
2021-04-29 10:08:41 +08:00

41 lines
2.6 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="{{institutionsList.length>0}}">
<view class="item bg-white" wx:for="{{institutionsList}}" wx:key="index">
<view class="cu-avatar radius xl" bindtap="showDetail" data-item="{{item}}"
style="background-image:url(https://gimg2.baidu.com/image_search/src=http%3A%2F%2F5b0988e595225.cdn.sohucs.com%2Fimages%2F20180322%2F838c068557384d70a2fc27e2fce74af2.jpeg&refer=http%3A%2F%2F5b0988e595225.cdn.sohucs.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1622183422&t=99df214728b454e7b725de7d6a3d85b9);">
</view>
<view class="content">
<text class="text-cut-two text-black text-bold" bindtap="showDetail"
data-item="{{item}}">包头市东方红培训机构</text>
<view class="text-cut text-gray" bindtap="showDetail" data-item="{{item}}">
<text class="cuIcon-mobile text-darkblue"></text><text class="margin-left-smm">0472-8888888</text>
</view>
<view class="text-cut text-gray" bindtap="showDetail" data-item="{{item}}">
<text class="cuIcon-location text-darkblue"></text><text
class="margin-left-smm">包头市昆区团结路88号包头市昆区团结路88号包头市昆区团结路88号包头市昆区团结路88号</text>
</view>
<view class="bottom-action">
<view>
<text class="cuIcon-time text-darkblue"></text>
<text class="margin-left-smm">2021-12-12</text>
</view>
<view bindtap="doNavigation" data-item="{{item}}">
<text class="cuIcon-taxi text-darkblue"></text>
<text class="text-darkblue margin-left-smm">去这里</text>
</view>
</view>
</view>
</view>
</view>
<van-empty description="暂无数据" wx:else />
</scroll-view>