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.
 

32 lines
969 B

<view>
<view>
<image class="head-img" src="{{product['image-url']}}" mode="aspectFill" />
</view>
<text class="product-name">{{product.name}}</text>
<view>
<form>
<view class="line">
<view class="section price">
<text id="price">¥{{product.price}}</text>
</view>
<view class="section quantity">
<view>购买数量:</view>
<input id="quantity" name="quantity" bindinput="bindQuantityInput" value="1" />
</view>
</view>
<view class="btn-area">
<button bindtap="bindAddToCart" type="primary">加入购物车</button>
</view>
</form>
</view>
<view class="desc-container">
<block wx:for="{{product.desc}}" wx:for-item="desc" wx:key="id">
<view class="desc-image-view">
<image class="desc-image" src="{{desc[0]}}" style="height: {{desc[2] / desc[1] * windowWidth}}px;" mode="aspectFit"/>
</view>
</block>
</view>
</view>