From 71eae187f2a446b2584ffb0e1edfececd076b3ab Mon Sep 17 00:00:00 2001
From: zhuyiyi <649091362@qq.com>
Date: Wed, 29 Apr 2026 14:37:44 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=99=BB=E5=BD=95=E9=A1=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
quoted-ui/.env.development | 4 +-
quoted-ui/.env.production | 4 +-
quoted-ui/.env.staging | 4 +-
quoted-ui/package.json | 1 +
.../src/components/CheckBoxOnly/index.vue | 34 ++
.../components/LoginCharacters/EyeBall.vue | 97 +++
.../src/components/LoginCharacters/Pupil.vue | 35 ++
.../src/components/LoginCharacters/index.vue | 571 ++++++++++++++++++
quoted-ui/src/settings.js | 2 +-
quoted-ui/src/views/login.vue | 281 +++++----
.../product/sticker/crafts/copperplate.vue | 90 +++
quoted-ui/src/views/product/sticker/index.vue | 127 ++++
12 files changed, 1118 insertions(+), 132 deletions(-)
create mode 100644 quoted-ui/src/components/CheckBoxOnly/index.vue
create mode 100644 quoted-ui/src/components/LoginCharacters/EyeBall.vue
create mode 100644 quoted-ui/src/components/LoginCharacters/Pupil.vue
create mode 100644 quoted-ui/src/components/LoginCharacters/index.vue
create mode 100644 quoted-ui/src/views/product/sticker/crafts/copperplate.vue
create mode 100644 quoted-ui/src/views/product/sticker/index.vue
diff --git a/quoted-ui/.env.development b/quoted-ui/.env.development
index af9ba00..78cf244 100644
--- a/quoted-ui/.env.development
+++ b/quoted-ui/.env.development
@@ -1,8 +1,8 @@
# 页面标题
-VITE_APP_TITLE = 若依管理系统
+VITE_APP_TITLE = 报价管理系统
# 开发环境配置
VITE_APP_ENV = 'development'
-# 若依管理系统/开发环境
+# 报价管理系统/开发环境
VITE_APP_BASE_API = '/dev-api'
diff --git a/quoted-ui/.env.production b/quoted-ui/.env.production
index cbabf89..c4592db 100644
--- a/quoted-ui/.env.production
+++ b/quoted-ui/.env.production
@@ -1,10 +1,10 @@
# 页面标题
-VITE_APP_TITLE = 若依管理系统
+VITE_APP_TITLE = 报价管理系统
# 生产环境配置
VITE_APP_ENV = 'production'
-# 若依管理系统/生产环境
+# 报价管理系统/生产环境
VITE_APP_BASE_API = '/prod-api'
# 是否在打包时开启压缩,支持 gzip 和 brotli
diff --git a/quoted-ui/.env.staging b/quoted-ui/.env.staging
index b11336d..21eee4a 100644
--- a/quoted-ui/.env.staging
+++ b/quoted-ui/.env.staging
@@ -1,10 +1,10 @@
# 页面标题
-VITE_APP_TITLE = 若依管理系统
+VITE_APP_TITLE = 报价管理系统
# 生产环境配置
VITE_APP_ENV = 'staging'
-# 若依管理系统/生产环境
+# 报价管理系统/生产环境
VITE_APP_BASE_API = '/stage-api'
# 是否在打包时开启压缩,支持 gzip 和 brotli
diff --git a/quoted-ui/package.json b/quoted-ui/package.json
index fa6a19e..c90af20 100644
--- a/quoted-ui/package.json
+++ b/quoted-ui/package.json
@@ -25,6 +25,7 @@
"element-plus": "2.13.1",
"file-saver": "2.0.5",
"fuse.js": "7.1.0",
+ "gsap": "^3.15.0",
"js-beautify": "1.15.4",
"js-cookie": "3.0.5",
"jsencrypt": "3.3.2",
diff --git a/quoted-ui/src/components/CheckBoxOnly/index.vue b/quoted-ui/src/components/CheckBoxOnly/index.vue
new file mode 100644
index 0000000..7538c89
--- /dev/null
+++ b/quoted-ui/src/components/CheckBoxOnly/index.vue
@@ -0,0 +1,34 @@
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
diff --git a/quoted-ui/src/components/LoginCharacters/EyeBall.vue b/quoted-ui/src/components/LoginCharacters/EyeBall.vue
new file mode 100644
index 0000000..6a5b813
--- /dev/null
+++ b/quoted-ui/src/components/LoginCharacters/EyeBall.vue
@@ -0,0 +1,97 @@
+
+
+
+
+
+
diff --git a/quoted-ui/src/components/LoginCharacters/Pupil.vue b/quoted-ui/src/components/LoginCharacters/Pupil.vue
new file mode 100644
index 0000000..da7330e
--- /dev/null
+++ b/quoted-ui/src/components/LoginCharacters/Pupil.vue
@@ -0,0 +1,35 @@
+
+
+
+
+
diff --git a/quoted-ui/src/components/LoginCharacters/index.vue b/quoted-ui/src/components/LoginCharacters/index.vue
new file mode 100644
index 0000000..7aac10b
--- /dev/null
+++ b/quoted-ui/src/components/LoginCharacters/index.vue
@@ -0,0 +1,571 @@
+
+
+
+
+
diff --git a/quoted-ui/src/settings.js b/quoted-ui/src/settings.js
index 70a77ea..0ea784e 100644
--- a/quoted-ui/src/settings.js
+++ b/quoted-ui/src/settings.js
@@ -62,6 +62,6 @@ export default {
/**
* 底部版权文本内容
*/
- footerContent: 'Copyright © 2018-2026 RuoYi. All Rights Reserved.'
+ footerContent: 'Copyright © 2018-2026 LINGTAO. All Rights Reserved.'
}
diff --git a/quoted-ui/src/views/login.vue b/quoted-ui/src/views/login.vue
index f4b6398..e9bbc29 100644
--- a/quoted-ui/src/views/login.vue
+++ b/quoted-ui/src/views/login.vue
@@ -1,62 +1,49 @@
-
- {{ title }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
![]()
-
-
- 记住密码
-
-
- 登 录
- 登 录 中...
-
-
- 立即注册
-
-
-
+
+
+
+
+
+ {{ title }}
+ 账号
+
+
+
+ 密码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 验证码
+
+
+
+
![]()
+
+
+ 记住密码
+
+
+ 登 录
+ 登 录 中...
+
+
+ 立即注册
+
+
+
+