Browse Source

bugfix_3960-dly

pingan\平安 2 days ago
parent
commit
9b1bfff8dc
2 changed files with 5 additions and 5 deletions
  1. 4 4
      common/common.js
  2. 1 1
      pages/batteryPackage/batteryPackage.vue

+ 4 - 4
common/common.js

@@ -878,8 +878,8 @@ function formatTimeDifference(timestamp) {
 		hours = Math.round(totalHours % 24); // 剩余小时四舍五入
 		
 		const result = [];
-		if (days > 0) result.push(`${days}`);
-		if (hours > 0 || result.length === 0) result.push(`${hours}小时`);
+		if (days > 0) result.push(`${days + i18n.t('天')}`);
+		if (hours > 0 || result.length === 0) result.push(`${hours + i18n.t('小时')}`);
 		return result.join("");
 		
 	} else {
@@ -896,9 +896,9 @@ function formatTimeDifference(timestamp) {
 		}
 		days = 0;
 		if (hours) {
-			return `${hours}小时 ${minutes}分钟`;
+			return `${hours + i18n.t('小时')} ${minutes + i18n.t('分钟')}`;
 		}else {
-			return `${minutes}分钟`;
+			return `${minutes + i18n.t('分钟')}`;
 		}
 		
 	}

+ 1 - 1
pages/batteryPackage/batteryPackage.vue

@@ -89,7 +89,7 @@ import { fenToYuan, msg } from '../../utils/util.js';
 				}
 				uni.showLoading({
 					mask:true,
-					title:this.$t('提交中...')
+					title:this.$t('提交中')+'...'
 				})
 				let {
 					data