From 245895f78be2ed25a615608a092490a4042a906b Mon Sep 17 00:00:00 2001
From: cuiqian2004 <cuiqian2004@163.com>
Date: 星期一, 29 九月 2025 17:43:08 +0800
Subject: [PATCH] test

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

diff --git a/pages/login/language.vue b/pages/login/language.vue
index 5194206..c0782e0 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>
@@ -8,9 +8,12 @@
 
 <script>
 	import utils from "@/js/utils.js"
+	import {showInfo,
+		showError} from "@/js/Page.js"
 	export default {
 		data() {
 			return {
+				largeMode: getApp().globalData.largeMode || false,
 				langList: [{
 						value: "zh-Hans",
 						name: "涓枃绠�綋"
@@ -44,7 +47,7 @@
 			},
 		},
 		onLoad() {
-	
+
 			this.curLang = uni.getLocale()
 			this.oldLang = this.curLang
 		},
@@ -58,7 +61,7 @@
 	}
 </script>
 
-<style lang="less">
+<style lang="scss">
 	.uni-page-login-language {
 		display: flex;
 		width: 720rpx;

--
Gitblit v1.9.1