2 Commits c2642559de ... f25b5ce0c1

Author SHA1 Message Date
  郭宇琦 f25b5ce0c1 Merge branch 'gyq_test' of http://git.bms16.com/liuwei/zx_flk_app into gyq_test 2 days ago
  郭宇琦 28f0510dc8 bug修改 2 days ago
3 changed files with 17 additions and 4 deletions
  1. 2 2
      locale/en.json
  2. 2 1
      locale/zh.json
  3. 13 1
      pages/orderStatus/orderStatus.vue

+ 2 - 2
locale/en.json

@@ -855,6 +855,6 @@
 	"已选择": "Selected",
 	"已选择": "Selected",
 	"用车方案": "Vehicle Usage Plan",
 	"用车方案": "Vehicle Usage Plan",
 	"时长": "Rental Duration",
 	"时长": "Rental Duration",
-	"系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。": "The system will determine whether you have arrived at the return location based on your positioning. If you have already arrived at the store, please click the 'I have arrived at the store' button. After the store confirms the return, the car return process will be successfully completed"
-
+	"系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。": "The system will determine whether you have arrived at the return location based on your positioning. If you have already arrived at the store, please click the 'I have arrived at the store' button. After the store confirms the return, the car return process will be successfully completed",
+	"购买时间":"Buy Time"
 }
 }

+ 2 - 1
locale/zh.json

@@ -855,5 +855,6 @@
 	"已选择": "已选择",
 	"已选择": "已选择",
 	"用车方案": "用车方案",
 	"用车方案": "用车方案",
 	"时长": "时长",
 	"时长": "时长",
-	"系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。": "系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。"
+	"系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。": "系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。",
+	"购买时间":"购买时间"
 }
 }

+ 13 - 1
pages/orderStatus/orderStatus.vue

@@ -186,7 +186,7 @@
 			<!-- </view> -->
 			<!-- </view> -->
 		</view>
 		</view>
 
 
-		<view v-if="(orderInfo.hire_begin_time!=0&&orderInfo.hire_end_time!=0)||orderInfo.order_type!=3 ||orderInfo.order_status!=5||orderInfo.order_status!=6" class="return-info">
+		<view v-if="(orderInfo.hire_begin_time!=0&&orderInfo.hire_end_time!=0 && orderInfo.order_type!=3) && orderInfo.order_status!=5 && orderInfo.order_status!=6 " class="return-info">
 			<view class="return-top flex-row flex-between">
 			<view class="return-top flex-row flex-between">
 				<view>{{ $t('取还时间') }}</view>
 				<view>{{ $t('取还时间') }}</view>
 				<view>
 				<view>
@@ -206,6 +206,15 @@
 				<view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
 				<view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
 			</view>
 			</view>
 		</view>
 		</view>
+		
+		<view v-if="orderInfo.order_type == 3" class="return-info">
+			<view class="return-top flex-row flex-between">
+				<view>{{ $t('购买时间') }}</view>
+			</view>
+			<view class="return-bottom flex-row">
+				<view>{{dayjsFn(orderInfo.pay_time)}}</view>
+			</view>
+		</view>
 
 
 
 
 		<view v-if="orderInfo.order_status==2||orderInfo.order_status==3||orderInfo.order_status==4"
 		<view v-if="orderInfo.order_status==2||orderInfo.order_status==3||orderInfo.order_status==4"
@@ -413,6 +422,9 @@
 		computed: {},
 		computed: {},
 
 
 		methods: {
 		methods: {
+			dayjsFn(time){
+				return dayjs(time * 1000).format('YYYY-MM-DD HH:mm:ss')
+			},
 			getAddressName(latitude, longitude) {
 			getAddressName(latitude, longitude) {
 				const pData = {
 				const pData = {
 					lng: longitude,
 					lng: longitude,