index.wxml 727 B

123456789101112131415
  1. <!-- 搜索 -->
  2. <van-search value="{{ value }}" placeholder="搜索产品" shape="round" use-action-slot bind:change="searchChange" bind:search="onSearch">
  3. <view wx:if="{{fisadministrator==1}}" class="search_left" slot="action" bind:tap="newAdd">
  4. <van-icon name="add" style="color: #1ABC9C;" /> 上架
  5. </view>
  6. </van-search>
  7. <view style="height: 10rpx;"></view>
  8. <!-- tabs -->
  9. <van-tabs active="{{ tabsActive }}" bind:change="tabsChange">
  10. <van-tab title="全部"></van-tab>
  11. <van-tab title="上架中"></van-tab>
  12. <van-tab title="已下架"></van-tab>
  13. </van-tabs>
  14. <!-- 产品 -->
  15. <My_product_item wx:for="{{productList}}" productItem="{{item}}" fisadministrator="{{fisadministrator}}"></My_product_item>