merManagement.wxml 1000 B

1234567891011121314151617181920
  1. <view style="width: 100wh; height: 100vh; background-color: #DCDCDC;">
  2. <van-divider />
  3. <view class="ert">
  4. <van-search value="{{ value }}" placeholder="请输入搜索关键词" shape="round" />
  5. <van-button color="#FF8C00" class="btn" round type="info" size="mini">搜索</van-button>
  6. </view>
  7. <view class="checks">
  8. <van-checkbox label-class="lable" style="font-size: 26rpx;" use-icon-slot value="{{ checked }}" bind:change="onChange">
  9. 全选
  10. <image style="width: 40rpx;height: 40rpx;" slot="icon" src="{{ checked ? activeIcon : inactiveIcon }}" />
  11. <view class="btn1">
  12. <van-button plain class="cst" color="#32CD32" style="margin-left:30rpx;" hairline round size="mini">一键上架</van-button>
  13. <van-button style="margin-left:30rpx;" color="#7232dd" round size="mini">一键下架</van-button>
  14. <van-button style="margin-left:30rpx;" color="#7232dd" round size="mini">删除</van-button>
  15. </view>
  16. </van-checkbox>
  17. </view>
  18. </view>