123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!-- 地址 -->
- <view class='address-box bg-white'>
- <view class='mar-l20 mar-r20 f-box'>
- <view class='address-infor f-item'>
- <view class='f-box f-s30'><text>阿哥子</text><text>15055166539</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' wx:for='{{item.imgArray}}' wx:for-item="itemSrc">
- <image 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>
|