|
@@ -1,4 +1,6 @@
|
|
|
<template>
|
|
|
+
|
|
|
+
|
|
|
<view class="container-view">
|
|
|
<view class="time-info">
|
|
|
<navBar bgColor="transparent" left="0"></navBar>
|
|
@@ -30,8 +32,11 @@
|
|
|
<view class="money-item">
|
|
|
<view :class="orderInfo.order_status == 4?'red-status':''">
|
|
|
<block v-if="orderInfo.hire_duration_time">{{orderInfo.hire_duration_time}}</block>
|
|
|
+ <block v-else>{{Number(orderInfo.hire_cycle) * (orderInfo.hire_duration)}}</block>
|
|
|
</view>
|
|
|
- <view>{{((orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3)?'租期剩余':(orderInfo.order_status == 4 ? '逾期时长':'租借周期')}}·<text style="opacity: 0.4;">天</text></view>
|
|
|
+
|
|
|
+ <view>{{((orderInfo.order_status == 2) || orderInfo.order_status == 3)?'租期剩余':(orderInfo.order_status == 4 ? '逾期时长':'租借周期')}}·<text style="opacity: 0.4;">{{leaseUnits(orderInfo.hire_duration_unit)}}</text></view>
|
|
|
+
|
|
|
<!-- <view v-if="(orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3">
|
|
|
租期剩余·天</view>
|
|
|
<view v-else-if="orderInfo.order_status == 4 " class="red-status">逾期时长·天</view>
|
|
@@ -57,6 +62,7 @@
|
|
|
:src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
<view v-if="orderInfo.order_type == 3" class="flex-row flex-between">
|
|
|
<view class="money-item">
|
|
|
<view></view>
|
|
@@ -76,6 +82,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view v-if="isExpanded" class="dashed-border"></view>
|
|
|
+
|
|
|
<view v-if="isExpanded">
|
|
|
<view class="big-text">订单信息</view>
|
|
|
<view class="sn-content flex-row flex-between">
|
|
@@ -307,6 +314,9 @@
|
|
|
import {
|
|
|
getRemainingTime
|
|
|
} from '@/utils/util';
|
|
|
+ import {
|
|
|
+ MAX_LIMITS,LEASE_TYPE_ARR
|
|
|
+ } from '@/common/constant.js'
|
|
|
var appWhiteListFilter = require('../../common/appWhiteListFilter.js');
|
|
|
import allPrice from '@/component/allPrice/allPrice';
|
|
|
import ReturnCar from '@/component/returnCar/returnCar';
|
|
@@ -315,6 +325,7 @@
|
|
|
import dayjs from 'dayjs'
|
|
|
import duration from 'dayjs/plugin/duration'
|
|
|
dayjs.extend(duration);
|
|
|
+
|
|
|
export default {
|
|
|
components: {
|
|
|
allPrice,
|
|
@@ -371,6 +382,14 @@
|
|
|
computed: {},
|
|
|
|
|
|
methods: {
|
|
|
+ leaseUnits(type){
|
|
|
+ const result = LEASE_TYPE_ARR.find(v => v.value == type);
|
|
|
+ return result ? result.unit : '';
|
|
|
+ },
|
|
|
+ leaseUnitsResult(type) {
|
|
|
+ const result = LEASE_TYPE_ARR.find(v => v.value == type);
|
|
|
+ return result ? result.label : '';
|
|
|
+ },
|
|
|
payReturn() {},
|
|
|
//逾期费用计算
|
|
|
async overdueMoneyFn(car_sn) {
|
|
@@ -508,19 +527,19 @@
|
|
|
hireDurationUnitsFn(time, type) {
|
|
|
|
|
|
if (type == 1) {
|
|
|
- return Math.ceil(time / 60 / 60 / 24) + '天'
|
|
|
+ return Math.ceil(time / 60 / 60 / 24)
|
|
|
} else if (type == 2) {
|
|
|
- return Math.ceil(time / 60 / 60 / 24 / 30) + '月'
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 30)
|
|
|
} else if (type == 3) {
|
|
|
- return Math.ceil(time / 60 / 60 / 24 / 30 / 365) + '年'
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 30 / 365)
|
|
|
} else if (type == 4) {
|
|
|
- return Math.ceil(time / 60 / 60) + '小时'
|
|
|
+ return Math.ceil(time / 60 / 60)
|
|
|
} else if (type == 5) {
|
|
|
- return Math.ceil(time / 60) + '分钟'
|
|
|
+ return Math.ceil(time / 60)
|
|
|
} else if (type == 6) {
|
|
|
- return Math.ceil(time / 60 / 60 / 24 / 7) + '周'
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 7)
|
|
|
} else if (type == 7) {
|
|
|
- return Math.ceil(time / 60 / 60 / 24 / 30 / 3) + '季'
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 30 / 3)
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -565,9 +584,11 @@
|
|
|
// 剩余租期判断
|
|
|
if (me.orderInfo.order_status == 1){
|
|
|
me.orderInfo.hire_duration_time=common.countToDay(me.orderInfo.hire_cycle*me.orderInfo.hire_duration,me.orderInfo.hire_duration_unit)
|
|
|
- console.log(me.orderInfo.hire_duration_time,'me.orderInfo.hire_duration_time');
|
|
|
- }else if((me.orderInfo.hire_type == 2 && me.orderInfo.order_status == 2) ||me.orderInfo.order_status == 3) {
|
|
|
+ ;
|
|
|
+ }else if((me.orderInfo.order_status == 2) ||me.orderInfo.order_status == 3) {
|
|
|
+
|
|
|
me.orderInfo.hire_duration_time = common.timestampToDays(Math.ceil(me.orderInfo.hire_end_time - Math.floor(new Date()) /1000))
|
|
|
+ console.log(me.orderInfo.hire_duration_time,'me.orderInfo.hire_duration_time')
|
|
|
} else {
|
|
|
if (me.orderInfo.order_status == 4) {
|
|
|
me.overdueMoneyFn(me.orderInfo.car_sn)
|