From cf07f6b60de9aaca14921f18f9f4f365bc48fd64 Mon Sep 17 00:00:00 2001 From: Hera Zhao Date: Fri, 10 Apr 2026 08:58:55 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=88=91=E7=9A=84=E9=85=8D=E6=96=B9?= =?UTF-8?q?=E5=8A=A0=E5=85=B1=E4=BA=AB=E6=8C=89=E9=92=AE=20+=20=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E5=91=98=E6=98=BE=E7=A4=BA=E7=89=88=E6=9C=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 我的配方卡片右上角加📤共享按钮,已共享/审核中显示状态标签 - 管理员账号标题下显示版本号和日期 Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/App.vue | 6 ++++++ frontend/src/views/RecipeSearch.vue | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 8a396ce..3de03fe 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -9,6 +9,7 @@

doTERRA 配方计算器

查询配方 · 计算成本 · 自制配方 · 导出卡片 · 精油知识

+

v2.0.0 · 2026-04-10

@@ -255,6 +256,11 @@ onMounted(async () => { letter-spacing: 0.5px; white-space: nowrap; } +.version-info { + font-size: 10px !important; + opacity: 0.5 !important; + margin-top: 1px !important; +} .header-right { flex-shrink: 0; cursor: pointer; diff --git a/frontend/src/views/RecipeSearch.vue b/frontend/src/views/RecipeSearch.vue index d221238..1f04aa1 100644 --- a/frontend/src/views/RecipeSearch.vue +++ b/frontend/src/views/RecipeSearch.vue @@ -64,6 +64,7 @@ /> +
暂无个人配方
@@ -688,6 +689,23 @@ function onCarouselTouchEnd(e) { color: #e65100; } +.share-btn { + position: absolute; + top: 8px; + right: 8px; + background: rgba(255,255,255,0.9); + border: 1px solid #d4cfc7; + border-radius: 8px; + padding: 2px 8px; + font-size: 14px; + cursor: pointer; +} + +.share-btn:hover { + background: #e8f5e9; + border-color: #7ec6a4; +} + .contrib-badge { font-size: 11px; color: #4a9d7e;