| | |
| | | <view class="details_head_a">合计消费:</view> |
| | | <view class="details_head_b">¥{{ (info.amount / 100).toFixed(2) }}</view> |
| | | <view class="details_head_c"> |
| | | <text>结算车型:{{info.bikeType}}</text> |
| | | <text>计费时长:{{ info.duration }}分钟</text> |
| | | <text>结算车型:{{ info.bikeType ? info.bikeType : '-' }}</text> |
| | | <text>计费时长:{{ info.duration ? info.duration : '-' }}分钟</text> |
| | | </view> |
| | | </view> |
| | | <view class="details_list"> |
| | |
| | | <text>{{ item.bikeType }}</text> |
| | | <text>编号:{{ item.bikeCode }}</text> |
| | | </view> |
| | | <view class="details_list_item_b"> |
| | | 骑行时间:{{ item.rideStartTime }} ~ {{ item.rideEndTime }} | {{ item.rideTime }}分钟 |
| | | <view class="details_list_item_b" v-if="item.rideStartTime.substring(5, 10) === item.rideEndTime.substring(5, 10)"> |
| | | 骑行时间:{{ item.rideStartTime.substring(5, 10) }} {{ item.rideStartTime.substring(11, 16) }} ~ {{ item.rideEndTime.substring(11, 16) }} | {{ item.rideTime }}分钟 |
| | | </view> |
| | | <view class="details_list_item_b" v-else> |
| | | 骑行时间:{{ item.rideStartTime.substring(5, 10) }} {{ item.rideStartTime.substring(11, 16) }} ~ {{ item.rideEndTime.substring(5, 10) }} {{ item.rideEndTime.substring(11, 16) }} | {{ item.rideTime }}分钟 |
| | | </view> |
| | | <view class="details_list_item_b"> |
| | | 计费时长:{{ item.duration }}分钟 |