From c04b99a9aa8764386b9a9c3f13d094dab4ef113a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=8E=E5=BF=97=E9=B9=8F?= <2916022834@qq.com>
Date: Fri, 19 Dec 2025 13:25:58 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=A4=B4=E9=83=A8=E6=A0=87?=
=?UTF-8?q?=E9=A2=98=E5=92=8C=E5=BA=95=E9=83=A8=E5=AF=BC=E8=88=AA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/assets/css/style.css | 3 +
src/assets/css/style.less | 1 +
src/assets/icons/profile.svg | 9 +
src/components/FooterNavigation.vue | 12 +-
src/components/HeaderTitle.vue | 86 +++---
src/types/enum.ts | 13 +
src/views/Workshop/creation/index.vue | 4 -
src/views/Workshop/customize.vue | 12 +-
src/views/Workshop/end.vue | 4 -
src/views/Workshop/home.vue | 4 -
src/views/Workshop/index.vue | 30 +-
src/views/Workshop/library.vue | 4 -
src/views/Workshop/profile.vue | 400 ++++++++++++++------------
src/views/Workshop/recommended.vue | 4 -
src/views/Workshop/uploadFace1.vue | 4 -
src/views/Workshop/uploadFace2.vue | 4 -
16 files changed, 307 insertions(+), 287 deletions(-)
create mode 100644 src/assets/icons/profile.svg
create mode 100644 src/types/enum.ts
diff --git a/src/assets/css/style.css b/src/assets/css/style.css
index 6d435a6..469c74a 100644
--- a/src/assets/css/style.css
+++ b/src/assets/css/style.css
@@ -71,6 +71,7 @@ html:root {
padding: 0 2rem;
min-height: fit-content;
}
+button.general,
.general_button {
border-radius: 0.7rem;
border: 3px solid #000;
@@ -79,11 +80,13 @@ html:root {
color: #fff;
font-family: satoshiMedium;
}
+button.general.smail,
.general_button.smail {
font-size: 3.6rem;
width: 24.6rem;
line-height: 6.7rem;
}
+button.general.big,
.general_button.big {
font-size: 3.8rem;
line-height: 7.4rem;
diff --git a/src/assets/css/style.less b/src/assets/css/style.less
index 92e7cff..5e6617f 100644
--- a/src/assets/css/style.less
+++ b/src/assets/css/style.less
@@ -83,6 +83,7 @@ html:root {
min-height: fit-content;
}
+button.general,
.general_button{
border-radius: .7rem;
border: 3px solid #000;
diff --git a/src/assets/icons/profile.svg b/src/assets/icons/profile.svg
new file mode 100644
index 0000000..acad237
--- /dev/null
+++ b/src/assets/icons/profile.svg
@@ -0,0 +1,9 @@
+
diff --git a/src/components/FooterNavigation.vue b/src/components/FooterNavigation.vue
index 56fc7c4..0f63833 100644
--- a/src/components/FooterNavigation.vue
+++ b/src/components/FooterNavigation.vue
@@ -33,7 +33,7 @@
const navs = [
{ label: 'Home', icon: 'home', size: 73, path: '/homeNav' },
{ label: 'Library', icon: 'library', size: 53, path: '/workshop/library' },
- { label: 'Profile', icon: 'profile', size: 55, path: '/workshop/profile' }
+ // { label: 'Profile', icon: 'profile', size: 55, path: '/workshop/profile' }
]
const onNavClick = (nav) => {
if (currentRoute.value !== nav.path) nav.on ? nav.on(nav) : nav.path && router.push(nav.path)
@@ -49,10 +49,10 @@
@click="onNavClick(nav)"
>
@@ -32,7 +29,6 @@