53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
<!-- 地址信息 -->
|
||
<view class="besure_address" wx:if='{{addressDel}}' catchtap="goAddress">
|
||
<view style="flex:1;">
|
||
<view class="userinfo">{{addressDel.name}} {{addressDel.mobile}} <span class="type" wx:if='{{false}}'> 学校 </span>
|
||
<span class="moren"> 默认 </span></view>
|
||
<view class="des">{{addressDel.address}}</view>
|
||
</view>
|
||
<image class="icon_right" src="/static/images/icon_right.png" mode="widthFix" style="width:12rpx;"></image>
|
||
<image class="arrows-right" src="/static/mall_icon/address_back.png" mode="widthFix"></image>
|
||
</view>
|
||
<view wx:else class="besure_address jc_start" catchtap="goAddress">
|
||
添加收货地址
|
||
<image class="icon_right " src="/static/images/icon_right.png" mode="widthFix" style="width:13rpx;"></image>
|
||
<image class="arrows-right" src="/static/mall_icon/address_back.png" mode="widthFix"></image>
|
||
</view>
|
||
<!-- 商品信息 -->
|
||
<view class="besure_goods">
|
||
<image class="besure_goods_img" src="{{info.pictures[0]}}" />
|
||
<view class="besure_goods_right">
|
||
<view class="title">项目名称:{{info.title}}。</view>
|
||
<view class="price"> <span>¥{{info.price}}</span>x1</view>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
<!-- 物流备注 -->
|
||
<view class="besure_bottom mt20">
|
||
<view class="left">配送方式</view>
|
||
<span>{{info.shipping}}</span>
|
||
</view>
|
||
|
||
<view class="besure_bottom">
|
||
<view class="left">订单备注</view>
|
||
<input type="text" bindinput="input" placeholder="输入备注" />
|
||
</view>
|
||
<!-- 商家价格 -->
|
||
<view class="besure_bottom mt20">
|
||
<view class="left">商品总价</view>
|
||
<span>¥{{info.price}}</span>
|
||
</view>
|
||
|
||
<view class="besure_bottom">
|
||
<view class="left">应付总价</view>
|
||
<span style='font-weight:bold;'>¥{{info.price}}</span>
|
||
</view>
|
||
<view class="besure_notice">温馨提示:下单后未发货可自主申请退款,项目成功后,7日内由企业安排发货。</view>
|
||
|
||
|
||
<!-- 底部按钮 -->
|
||
<view class="besure_now_act {{acted?'acted':''}}" catchtap="nowActed" data-acted='{{acted}}'>
|
||
<view class="left"><span>合计:</span>¥{{info.price}}</view>
|
||
<span>{{acted?'已提交订单':'提交订单'}}</span>
|
||
</view> |