123456789101112131415161718192021222324252627282930313233 |
- <!--pages/role/introducerList.wxml-->
- <view class="container">
- <view class="cu-bar search bg-white margin-bottom-xs">
- <view class="search-form round">
- <text class="cuIcon-search"></text>
- <input type="text" placeholder="输入介绍人名称" confirm-type="search" data-name="searchParams.realname" catchinput="inputedit"></input>
- </view>
- <view class="action">
- <button class="cu-btn bg-blue shadow-blur round" bindtap="searchIntroducer">搜索</button>
- </view>
- </view>
- <view class="bg-white store-grid">
- <view class="grid col-2">
- <block wx:for="{{introducerList}}">
- <view>
- <view class="margin-xs padding-sm radius shadow-warp store-list-row" bindtap="toEdit" data-id="{{item.id}}">
- <view style="width:100%;">
- <view class="padding-bottom-sm store-name">{{item.realname}}</view>
- <view class="store-mobile">{{item.telephone}}</view>
- </view>
- <view class="store-img">
- <image src="../../static/images/my/mine_def_touxiang_3x.png"></image>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
-
- <tui-button type="blue" height="98rpx" shape="rightAngle" bindtap="toAddIntroducer">新增介绍人</tui-button>
- </view>
|