123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <view style="background: #f5f5f5; padding: 20rpx 0;">
- <view class="container">
- <!-- 地址选择 -->
- <view class="dizhi_boxs" bindtap="setGridView">
- <view class="address_info">
- <image src="{{dingweiimg}}" class="location_icon"></image>
- </view>
- <view class="contact_info">
- <view class="address_text">上海市浦东新区创新大道88号科技智慧城</view>
- <view style="margin-top: 10rpx;">
- <text class="name">陈宇轩</text>
- <text class="phone">16743435789</text>
- </view>
- </view>
- <image src="{{youjiantouimg}}" class="right_arrow"></image>
- </view>
- <!-- 购买商品列表 -->
- <view class="product_list">
- <block wx:for="{{products}}" wx:key="index">
- <view class="product_item">
- <image src="{{item.image}}" class="product_image"></image>
- <view class="product_details">
- <view class="product_name">{{item.name}}</view>
- <view class="product_desc">{{item.desc}}</view>
- <view class="price_and_quantity">
- <text class="product_price">¥{{item.price}}</text>
- <view class="quantity_selector">
- <van-stepper
- value="{{item.quantity}}"
- data-id="{{item.id}}"
- bind:change="onChange"
- />
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- <!-- 底部结算栏 -->
- <view class="footer">
- <view class="total_amount">
- <text>合计:¥{{totalAmount}}</text>
- </view>
- <view>
- <button class="pay_button" bindtap="handlePay">立即支付</button>
- </view>
- </view>
- </view>
- </view>
|