租房掌柜微信小程序Api以及小程序前端模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
1.0 KiB

<cu-custom bgColor="bg-blue" isBack="{{true}}">
<view slot="backText">返回</view>
<view slot="content">会员管理</view>
</cu-custom>
<view class="cu-bar bg-white solid-bottom">
<view class='action'>
<text class='cuIcon-titles text-green'></text> 我的会员列表
</view>
</view>
<view class="cu-list menu-avatar">
<view class="cu-item" wx:for="{{dataList}}" bindtap="toDetail" data-id="{{item.id}}">
<view class="cu-avatar round lg" style="background-image:url({{item.headimg}});">
</view>
<view class="content">
<view class="text-grey">
<text class="text-cut">{{item.nickname}}</text>
<view wx:if="{{item.is_clean == 1}}" class="cu-tag round bg-orange sm">保洁</view>
</view>
<view class="text-gray text-sm flex">
<text class="text-cut">{{item.phone}}</text>
</view>
</view>
<view class="desc">
<view class="text-grey text-sm">{{item.vip_time}}</view>
<view class="cu-tag round bg-{{item.vip_level_color}} sm">{{item.vip_level}}</view>
</view>
</view>
</view>