Files
HnyhuaXCX/pages/myproducts/index.wxml

19 lines
689 B
Plaintext
Raw Normal View History

<view class="container">
<view class="myproducts-box">
<view class="myproducts-item" wx:for="{{mybalance}}" wx:for-index="index">
<view class="myproducts-item-to">
<view class="imgbox"><img src="{{item.image}}" /></view>
<view class="title">{{item.name}}</view>
<view class="price">¥{{item.hyje}}</view>
</view>
</view>
</view>
</view>
<view class="nodata" hidden="{{nodataHidden}}">
<image src="../../images/order-null.png"/>
<view>暂无数据</view>
</view>
<loading hidden="{{loadingHidden}}">
加载中...
</loading>