From df481aebfb7a19eea5d6c02f93c6f5776b0fdc19 Mon Sep 17 00:00:00 2001
From: cuiqian2004 <cuiqian2004@163.com>
Date: 星期五, 23 五月 2025 18:30:41 +0800
Subject: [PATCH] 界面大模式

---
 components/oi-form/list/input/index.vue |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/components/oi-form/list/input/index.vue b/components/oi-form/list/input/index.vue
index 5c0c04a..47c85ff 100644
--- a/components/oi-form/list/input/index.vue
+++ b/components/oi-form/list/input/index.vue
@@ -38,6 +38,11 @@
 				default: false
 			},
 		},
+		data() {
+			return {
+				largeMode: getApp().globalData?.largeMode || false,
+			}
+		},
 		methods: {
 			onChange(e) {
 				this.$emit("on-change", e)
@@ -119,4 +124,19 @@
 	.oi-form-input:hover {
 		border: 1px solid rgb(41, 121, 255);
 	}
+
+	.large-mode {
+		.oi-form-input {
+			.oi-input {
+				font-size: 24px;
+				height: 36px;
+			}
+
+			.form-input-icon {
+				font-size: 30px;
+				height: 36px;
+				width: 36px;
+			}
+		}
+	}
 </style>
\ No newline at end of file

--
Gitblit v1.9.1