41 lines
2.3 KiB
Plaintext
41 lines
2.3 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">
|
|
<image class="cu-avatar radius" style="width:200rpx;height:120rpx;min-width:200rpx;min-height:120rpx;"
|
|
src="{{item.showPhoto}}" mode="scaleToFill" bindtap="showDetail" data-item="{{item}}"></image>
|
|
<view class="content">
|
|
<text class="text-cut-two text-black text-bold" bindtap="showDetail"
|
|
data-item="{{item}}">{{item.institutionName}}</text>
|
|
<view class="text-cut text-gray" bindtap="showDetail" data-item="{{item}}">
|
|
<text class="cuIcon-mobile text-darkblue"></text><text
|
|
class="margin-left-smm">{{item.institutionContact}}</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">{{item.institutionAddress}}</text>
|
|
</view>
|
|
<view class="bottom-action">
|
|
<view>
|
|
<text class="cuIcon-time text-darkblue"></text>
|
|
<text class="margin-left-smm">{{item.institutionFoundingTime}}</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> |