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