郭宇琦 2 өдөр өмнө
parent
commit
6cb64821fb

+ 5 - 3
components/basic-drag/index.vue

@@ -12,7 +12,7 @@
 					<image v-if="!item.isLock && isActiveEdit" @click="deleteTab(item)" :src="icons.edit"
 						class="right-icon" />
 					<image @click="clickTap(item)" :src="item.iconUrl" class="icon" />
-					<view>{{ item.name }}</view>
+					<view class="name">{{ item.name }}</view>
 				</view>
 			</view>
 		</movable-view>
@@ -305,7 +305,9 @@
 			position: relative;
 			margin-top: 24rpx;
 			height: 100px;
-
+			.name{
+				font-size: 26rpx;
+			}
 			.right-icon {
 				position: absolute;
 				right: 20rpx;
@@ -322,7 +324,7 @@
 			}
 
 			.name {
-				font-size: 28rpx;
+				font-size: 26rpx;
 				color: #060809;
 
 				&.shake {

+ 1 - 3
pages/carFunctionSet/more.vue

@@ -227,11 +227,9 @@
 					height: 112rpx;
 					margin-bottom: 20rpx;
 				}
-
 				.name {
-					font-size: 28rpx;
+					font-size: 26rpx;
 					color: #060809;
-
 					&.shake {
 						animation: shake 0.2s ease-in-out infinite;
 					}

+ 2 - 1
utils/util.js

@@ -2,7 +2,8 @@ import dayjs from 'dayjs'
 import duration from 'dayjs/plugin/duration'
 dayjs.extend(duration);
 const systemInfo = uni.getSystemInfoSync();
-const Language = systemInfo.language == 'zh_CN' ? 'zh' : 'en' // 'zh' | 'en'
+// const Language = systemInfo.language == 'zh_CN' ? 'zh' : 'en' // 'zh' | 'en'
+const Language = 'en' // 'zh' | 'en'
 const formatTime = (date) => {
 	const year = date.getFullYear();
 	const month = date.getMonth() + 1;