From 12a0cf7b04fd90402d3b163a7420f4b81198fb2a Mon Sep 17 00:00:00 2001 From: gcd Date: Tue, 25 Mar 2025 23:07:32 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E3=80=81=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/me-button/me-button.vue | 147 +++++++++++++++++++++++++++++ components/me-icon/me-icon.vue | 4 +- pages.json | 2 +- pages/user/login.vue | 88 ++++++++++++++++- 4 files changed, 235 insertions(+), 6 deletions(-) create mode 100644 components/me-button/me-button.vue diff --git a/components/me-button/me-button.vue b/components/me-button/me-button.vue new file mode 100644 index 0000000..da52a06 --- /dev/null +++ b/components/me-button/me-button.vue @@ -0,0 +1,147 @@ + + + + + diff --git a/components/me-icon/me-icon.vue b/components/me-icon/me-icon.vue index d2cf7af..3dfcd8a 100644 --- a/components/me-icon/me-icon.vue +++ b/components/me-icon/me-icon.vue @@ -15,7 +15,7 @@ const props = defineProps({ }, color: { type: String, - default: 'var(--contentColor50)' + default: 'var(--summaryColor)' }, size: { type: [Number, String], @@ -45,4 +45,4 @@ const styleObj = () => { text-decoration: none; text-align: center; } - \ No newline at end of file + diff --git a/pages.json b/pages.json index 88a2d74..7cf00ae 100644 --- a/pages.json +++ b/pages.json @@ -4,7 +4,7 @@ "path" : "pages/user/login", "style" : { - "navigationBarTitleText" : "", + "navigationBarTitleText" : "登录", "disableScroll": true } }, diff --git a/pages/user/login.vue b/pages/user/login.vue index b66aa76..a68f17c 100644 --- a/pages/user/login.vue +++ b/pages/user/login.vue @@ -1,13 +1,33 @@