@@ -62,9 +62,14 @@ | |||||
<text>{{order.orderNumber}}</text> | <text>{{order.orderNumber}}</text> | ||||
</view> | </view> | ||||
<view> | <view> | ||||
<text>订单金额</text> | |||||
<text class="jine">{{order.salePrice/100}}元</text> | |||||
<text>面额</text> | |||||
<text class="jine1" wx:if="{{order.unit==0}}">{{order.price/100}}元</text> | |||||
<text class="jine1" wx:if="{{order.unit==1}}">{{order.price/100}}小时</text> | |||||
</view> | </view> | ||||
<view> | |||||
<text>订单金额</text> | |||||
<text class="jine">{{order.salePrice/100}}元</text> | |||||
</view> | |||||
</view> | </view> | ||||
<!-- 待付款 显示立即购买的按钮 --> | <!-- 待付款 显示立即购买的按钮 --> | ||||
<view wx:if="{{order.orderStatus==0}}" class="buy-view app-border-top"> | <view wx:if="{{order.orderStatus==0}}" class="buy-view app-border-top"> | ||||
@@ -354,8 +354,13 @@ radio { | |||||
.jine { | .jine { | ||||
color: #f96563 !important; | color: #f96563 !important; | ||||
font-size: 36rpx !important; | font-size: 36rpx !important; | ||||
font-weight: 400!important; | |||||
} | |||||
.jine1 { | |||||
color: #b8b8b8 !important; | |||||
font-size: 30rpx !important; | |||||
font-weight: 400!important; | |||||
} | } | ||||
.buy-view { | .buy-view { | ||||
background: #fff; | background: #fff; | ||||
position: fixed; | position: fixed; | ||||