16 lines
763 B
Plaintext
16 lines
763 B
Plaintext
<!--packageD/energy/powerMember/powerMember.wxml-->
|
|
<view class="search">
|
|
<icon class="iconfont icon-sousuo1" style="margin-right:40rpx;font-size: 40rpx;color:#999999;" catchtap="goSearch"></icon>
|
|
<input placeholder="搜索会员id" placeholder-style="font-size: 32rpx;color: #999999;"bindinput="keywork"></input>
|
|
</view>
|
|
|
|
<view class="list" catchtap="goDetail" wx:for="{{list}}" wx:key='index' data-item="{{item}}">
|
|
<view class="left">
|
|
<image src="{{item.avatar_image}}"></image>
|
|
<text style="margin-left:32rpx;min-width:300rpx;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{item.nickname}}</text>
|
|
</view>
|
|
<view class="right">
|
|
<icon class="iconfont icon-advertise-next" style="font-size: 40rpx;"></icon>
|
|
</view>
|
|
</view>
|