index.wxml 1.2 KB

123456789101112131415161718192021222324252627
  1. <!-- top-view -->
  2. <view class="top-view">
  3. <!-- 导航栏 -->
  4. <van-nav-bar custom-style="background-color: #E92020">
  5. <van-icon slot="left" name="arrow-left" size="25px" color="white" bind:click="backToParent"/>
  6. <text slot="title" style="color: white;">钻石首饰</text>
  7. </van-nav-bar>
  8. <!-- 搜索视图 -->
  9. <van-search model:value="{{result}}" use-action-slot background="#2270D9" shape="round" placeholder="搜索首饰" bind:change="onChange">
  10. <view slot="action" bind:tap="onSearch" style="color: white;">搜索</view>
  11. </van-search>
  12. </view>
  13. <!-- 商品卡片 -->
  14. <view class="goodscard" style="padding-bottom: {{safeBottom}}px;">
  15. <view class="goodscard-item" wx:for="{{sellOrders}}" wx:for-item="itm" wx:for-index="idx" wx:key="idx" data-num="{{ idx }}" bindtap="onItemClick">
  16. <image class="goods-icon" mode="widthFix" src="https://img.yzcdn.cn/vant/cat.jpeg"></image>
  17. <text class="goods-title">{{itm.zsstyletypedisplay}}{{itm.totalqty}}ct{{itm.stonedesc}}</text>
  18. <text class="goods-price">¥{{ itm.price }}</text>
  19. </view>
  20. </view>
  21. <!-- 无数据 -->
  22. <van-empty wx:if="{{isEmpty}}" class="custom-image" description="无数据"/>
  23. <!-- toast -->
  24. <van-toast id="van-toast" />