Files
AGuestSaas/pages/home/beSureOrder/beSureOrder.wxml
2020-12-28 10:38:29 +08:00

46 lines
1.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 地址信息 -->
<view class="besure_address">
<view style="flex:1;">
<view class="userinfo">张冬雪 14745798066 <span class="type"> 学校 </span> <span class="moren"> 默认 </span></view>
<view class="des">黑龙江省哈尔滨市南岗区汉水路451号省科学院研究所7楼</view>
</view>
<image class="icon_right" src="/static/images/icon_right.png" mode="widthFix" style="width:12rpx;"></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>