Browse Source

edit

tags/2.2.4
shark 6 years ago
parent
commit
dd626738a0
2 changed files with 24 additions and 2 deletions
  1. +22
    -0
      pages/passCar/passCar.wxml
  2. +2
    -2
      pages/passCar/passCar.wxss

+ 22
- 0
pages/passCar/passCar.wxml View File

@@ -17,6 +17,28 @@
<label class='carNumber'></label> <label class='carNumber'></label>
</view> </view>
<view class='passNumberBox' wx:for='{{carList}}' wx:key='{{index}}'> <view class='passNumberBox' wx:for='{{carList}}' wx:key='{{index}}'>
<view class='passUp'>
<view class='passNumber' bindtap='orderPay' style='height:{{dataHeight}};font-weight:{{dataWeight}};line-height:{{dataLineHeight}}'>
<text class='number'>{{item.carNumber}}</text>
<!-- <text class='price'>待缴金额:¥{{item.remainingParkFee?item.remainingParkFee:'0'}}</text> -->
<!-- <text class='parkPrice'>待缴金额:¥500</text> -->
<!-- <text>已缴:{{item.stopFee.paidFee}}</text>
<text>优免金额{{item.stopFee.discountAmount}}</text> -->
</view>
<button class='deleteButton' bindtap='unbindCarBtn' data-car='{{item.carNumber}}'>解绑</button>
</view>
<view class='orderBox' wx:if='{{!item.remainingFee}}'>
<view class='priceBox'>
<text>{{'待支付金额:¥'+item.remainingFee}}</text>
</view>
<view class='payBox'>
<navigator target="miniProgram" open-type="navigate" app-id="wx192b7d2e8dcbefd0" path="" extra-data="{{item.extraData}}" version="release">
<button>去支付</button>
</navigator>
</view>
</view>
</view>
<view class='passNumberBox' wx:for='{{carList}}' wx:key='{{index}}'>
<view class='passUp'> <view class='passUp'>
<view class='passNumber' bindtap='orderPay' style='height:{{dataHeight}};font-weight:{{dataWeight}};line-height:{{dataLineHeight}}'> <view class='passNumber' bindtap='orderPay' style='height:{{dataHeight}};font-weight:{{dataWeight}};line-height:{{dataLineHeight}}'>
<text class='number'>{{item.carNumber}}</text> <text class='number'>{{item.carNumber}}</text>


+ 2
- 2
pages/passCar/passCar.wxss View File

@@ -117,7 +117,7 @@ color: transparent;
width: 750rpx; width: 750rpx;
position: relative; position: relative;
background-color: white; background-color: white;
border-bottom: 1rpx #f8f8f8 solid;
border-bottom: 1rpx #f8f8f8 solid ;
} }
.passNumber{ .passNumber{
width: 400rpx; width: 400rpx;
@@ -249,7 +249,7 @@ color: transparent;
.orderBox { .orderBox {
width: 100%; width: 100%;
height: 100rpx; height: 100rpx;
border-top: 1rpx #cbcbcb dashed;
border-top: 1rpx #f8f8f8 solid;
position: relative; position: relative;
display: flex; display: flex;
} }


Loading…
Cancel
Save