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.

29 lines
850 B

8 years ago
<view>
8 years ago
<image src="{{product.attributes['image-url']}}" mode="aspectFill"/>
8 years ago
<text>{{product.attributes.name}}</text>
8 years ago
8 years ago
<view wx:if="{{ address > 0 }}" bindtap="bindTapAddress">
<text>{{address}}</text>
<text>edit</text>
8 years ago
</view>
8 years ago
<view wx:else bindtap="bindTapAddress">
<text>add new address</text>
</view>
<view>
8 years ago
<form bindsubmit="formSubmit" bindreset="formReset" data-sku="{{product.attributes.sku}}">
8 years ago
<view class="section">
<text class="">数量</text>
<input name="quantity" value="1" />
</view>
<view class="section">
8 years ago
<text>¥{{product.attributes.price || '无法获取价格'}}</text>
8 years ago
</view>
<view class="btn-area">
<button formType="submit">buy it!</button>
<button formType="reset">Reset</button>
</view>
</form>
8 years ago
</view>
</view>