1234567891011121314151617181920212223242526272829303132 |
- <!--pages/role/addOperation.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="searchOperation">搜索</button>
- </view>
- </view>
- <view class="bg-white store-grid">
- <view class="grid col-2">
- <block wx:for="{{operationList}}">
- <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="toAddOperation">新增运维</tui-button>
- </view>
|