12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!-- 地址 -->
- <view class='address-box bg-white'>
- <view class='mar-l20 mar-r20 f-box'>
- <icon class='iconfont icon-dizhi mar-r20 f-box f-align-items-center c-orange'></icon>
- <view class='address-infor f-item'>
- <view class='f-box f-s30'><text>阿哥子</text><text>18888888888</text></view>
- <view class='mar-t20 f-s30'>
- 上海市 闵行区 虹漕路88号
- </view>
- </view>
- <view class='arrow'></view>
- </view>
- </view>
- <!-- 订单 -->
- <view class='goodsList-box mar-t20 bg-white'>
- <view class='goods-list' wx:for="{{goodsList}}">
- <view class='mar-r20 mar-l20'>
- <text class='f-s30'>{{item.customGoodsName}}</text>
- <view class='f-box f-align-items-center f-s28' style='margin:20rpx 0;'>
- <text class='f-item'>¥{{item.customgoodsPriceNow}}</text>
- <view> × {{item.customGoodsNum}}</view>
- </view>
- </view>
- <!-- 图片list -->
- <view class='f-box goods-img-list' >
- <image wx:for='{{item.imgArray}}' wx:for-item="itemSrc" src='{{host}}{{itemSrc}}' mode="aspectFit"></image>
- </view>
- </view>
- </view>
- <!-- 其他内容,邮费/备注等 -->
- <view class='other-box bg-white mar-t20'>
- <view class='mar-l20 mar-r20 f-s28'>
- <view class='other-list f-box'>
- <view class="f-item">运费</view>
- <view>包邮</view>
- </view>
- <!-- <view class='other-list'>
- <view class='mar-b20'>备注</view>
- <input placeholder='备注内容~'></input>
- </view> -->
-
- </view>
- </view>
- <!-- footer -->
- <view class='footer'>
- <view class='footer-box'>
- <view class='f-box mar-l20 f-justify-content-center'>
- <view class='f-item f-box f-align-items-end'>
- <text>合计:¥{{amount}}</text>
- </view>
- <view class='footer-btn bg-orange c-white mar-l20' bindtap='submitOrder'>结算</view>
- </view>
- </view>
- </view>
|