You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.2 KiB

<view class="container">
<view class="header">
<text class="title">选择商品</text>
</view>
<view class="content">
<!-- 加载中状态 -->
<view wx:if="{{loading}}" class="loading">
<view class="loading-spinner"></view>
<text>加载中...</text>
</view>
<!-- 错误提示 -->
<view wx:if="{{error}}" class="error">
<view class="error-icon">⚠️</view>
<text>{{error}}</text>
<button bindtap="loadProductNames" type="primary" class="retry-button">重试</button>
</view>
<!-- 商品名称列表 -->
<view wx:else class="product-list">
<view class="section-header">
<text class="section-title">商品名称</text>
<text class="section-count">{{productNames.length}}个</text>
</view>
<view class="product-items">
<view
wx:for="{{productNames}}"
wx:key="*this"
class="product-item"
data-product="{{item}}"
bindtap="selectProduct"
>
<text class="product-name">{{item}}</text>
<view class="product-arrow">→</view>
</view>
</view>
</view>
</view>
</view>