From a262c52c7320e07b79f7469c59ec6a813e7c5a22 Mon Sep 17 00:00:00 2001 From: zguiy <1415466602@qq.com> Date: Sun, 29 Jun 2025 03:01:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=8D=B0=E7=AB=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/tools/CryptoTools.vue | 6 +- src/components/tools/DateCalculator.vue | 8 +- src/components/tools/NumberBaseConverter.vue | 4 +- src/components/tools/RegexTester.vue | 4 +- src/components/tools/SealGenerator.vue | 1533 ++++++++++++++++++ src/config/i18n/en.ts | 156 +- src/config/i18n/zh.ts | 156 +- src/config/tools.ts | 8 +- src/main.ts | 4 +- src/views/ToolView.vue | 3 +- test-seal.html | 290 ++++ 11 files changed, 1942 insertions(+), 230 deletions(-) create mode 100644 src/components/tools/SealGenerator.vue create mode 100644 test-seal.html diff --git a/src/components/tools/CryptoTools.vue b/src/components/tools/CryptoTools.vue index fc3b2e1..3f75497 100644 --- a/src/components/tools/CryptoTools.vue +++ b/src/components/tools/CryptoTools.vue @@ -10,7 +10,7 @@ :class="[ 'px-3 py-2 text-sm font-medium rounded transition-all', activeAlgorithm === algorithm.type - ? 'bg-primary text-white shadow-sm' + ? 'bg-primary-500 text-white shadow-sm' : 'bg-block text-secondary border hover:bg-hover' ]" @click="setActiveAlgorithm(algorithm.type)" @@ -27,7 +27,7 @@ + + + +
+

印章预览

+ +

+ +
+ + + + + \ No newline at end of file -- 2.49.0