Browse Source

[c端元/小时单位的修改][修改]:c端元/小时单位的修改

tags/富茂链客2.2.8
meo 6 years ago
parent
commit
6aa7801076
2 changed files with 13 additions and 3 deletions
  1. +7
    -2
      pages/order/detail/index.wxml
  2. +6
    -1
      pages/order/detail/index.wxss

+ 7
- 2
pages/order/detail/index.wxml View File

@@ -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">


+ 6
- 1
pages/order/detail/index.wxss View File

@@ -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;


Loading…
Cancel
Save