From a2f5317f01290597eb44aaf80aa535ff468a61c5 Mon Sep 17 00:00:00 2001
From: cuiqian2004 <cuiqian2004@163.com>
Date: 星期四, 05 六月 2025 17:10:46 +0800
Subject: [PATCH] 3202 set_subtable_page_content

---
 pages/login/language.vue |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/pages/login/language.vue b/pages/login/language.vue
index e54be5b..ff3da5f 100644
--- a/pages/login/language.vue
+++ b/pages/login/language.vue
@@ -1,5 +1,5 @@
 <template>
-	<view class="uni-page-login-language">
+	<view class="uni-page-login-language" :class="largeMode?'large-mode':''">
 		<view class="uni-line" v-for="item in langList" :key='item.value' @click="clickLanguage(item.value)"><text
 				class="name">{{item.name }}</text> <uni-icons v-if="curLang==item.value " type="checkmarkempty"
 				:size="20"></uni-icons> </view>
@@ -11,6 +11,7 @@
 	export default {
 		data() {
 			return {
+				largeMode: getApp().globalData.largeMode || false,
 				langList: [{
 						value: "zh-Hans",
 						name: "涓枃绠�綋"
@@ -44,7 +45,7 @@
 			},
 		},
 		onLoad() {
-	
+
 			this.curLang = uni.getLocale()
 			this.oldLang = this.curLang
 		},

--
Gitblit v1.9.1