operationList.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <!--pages/role/addOperation.wxml-->
  2. <view class="container">
  3. <view class="cu-bar search bg-white margin-bottom-xs">
  4. <view class="search-form round">
  5. <text class="cuIcon-search"></text>
  6. <input type="text" placeholder="输入运维人员名称" confirm-type="search" data-name="searchParams.realname" catchinput="inputedit"></input>
  7. </view>
  8. <view class="action">
  9. <button class="cu-btn bg-blue shadow-blur round" bindtap="searchOperation">搜索</button>
  10. </view>
  11. </view>
  12. <view class="bg-white store-grid">
  13. <view class="grid col-2">
  14. <block wx:for="{{operationList}}">
  15. <view>
  16. <view class="margin-xs padding-sm radius shadow-warp store-list-row" bindtap="toEdit" data-id="{{item.id}}">
  17. <view style="width:100%;">
  18. <view class="padding-bottom-sm store-name">{{item.realname}}</view>
  19. <view class="store-mobile">{{item.telephone}}</view>
  20. </view>
  21. <view class="store-img">
  22. <image src="../../static/images/my/mine_def_touxiang_3x.png"></image>
  23. </view>
  24. </view>
  25. </view>
  26. </block>
  27. </view>
  28. </view>
  29. <tui-button type="blue" height="98rpx" shape="rightAngle" bindtap="toAddOperation">新增运维</tui-button>
  30. </view>