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