1 Commits

Author SHA1 Message Date
42aefaab17 fix: 保存配方卡片所有英文翻译(含精油名称)
Some checks failed
Test / unit-test (push) Successful in 7s
Test / build-check (push) Successful in 3s
Test / e2e-test (push) Failing after 1m19s
PR Preview / test (pull_request) Has been skipped
PR Preview / teardown-preview (pull_request) Successful in 14s
PR Preview / deploy-preview (pull_request) Has been skipped
之前保存翻译时只保存了配方名的 en_name,精油的自定义英文名
(customOilNameEn)没有持久化,刷新后丢失。

- backend: recipes 表新增 en_oils(JSON 字符串)列
- RecipeUpdate 模型增加 en_oils 字段,update_recipe 写入 DB
- 所有 SELECT 语句补上 en_oils,_recipe_to_dict 返回该字段
- frontend: applyTranslation() 同时提交 en_oils
- onMounted 优先从 r.en_oils 还原精油译名,再 fallback 静态表
- recipes store 映射 en_oils 字段

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-08 19:57:52 +00:00
26 changed files with 804 additions and 3409 deletions

1
.gitignore vendored
View File

@@ -8,4 +8,3 @@ backups/
# Frontend
frontend/node_modules/
frontend/dist/
frontend/.vite/

View File

@@ -221,8 +221,6 @@ def init_db():
c.execute("ALTER TABLE oils ADD COLUMN retail_price REAL")
if "is_active" not in oil_cols:
c.execute("ALTER TABLE oils ADD COLUMN is_active INTEGER DEFAULT 1")
if "en_name" not in oil_cols:
c.execute("ALTER TABLE oils ADD COLUMN en_name TEXT DEFAULT ''")
# Migration: add new columns to category_modules if missing
cat_cols = [row[1] for row in c.execute("PRAGMA table_info(category_modules)").fetchall()]
@@ -242,6 +240,8 @@ def init_db():
c.execute("ALTER TABLE recipes ADD COLUMN updated_by INTEGER")
if "en_name" not in cols:
c.execute("ALTER TABLE recipes ADD COLUMN en_name TEXT DEFAULT ''")
if "en_oils" not in cols:
c.execute("ALTER TABLE recipes ADD COLUMN en_oils TEXT DEFAULT '{}'")
# Seed admin user if no users exist
count = c.execute("SELECT COUNT(*) FROM users").fetchone()[0]

View File

@@ -79,8 +79,6 @@ class OilIn(BaseModel):
bottle_price: float
drop_count: int
retail_price: Optional[float] = None
en_name: Optional[str] = None
is_active: Optional[int] = None
class IngredientIn(BaseModel):
@@ -98,6 +96,7 @@ class RecipeIn(BaseModel):
class RecipeUpdate(BaseModel):
name: Optional[str] = None
en_name: Optional[str] = None
en_oils: Optional[str] = None
note: Optional[str] = None
ingredients: Optional[list[IngredientIn]] = None
tags: Optional[list[str]] = None
@@ -311,7 +310,7 @@ def symptom_search(body: dict, user=Depends(get_current_user)):
conn = get_db()
# Search in recipe names
rows = conn.execute(
"SELECT id, name, note, owner_id, version, en_name FROM recipes ORDER BY id"
"SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes ORDER BY id"
).fetchall()
exact = []
related = []
@@ -324,7 +323,7 @@ def symptom_search(body: dict, user=Depends(get_current_user)):
# If user reports no match, notify editors
if body.get("report_missing"):
who = user.get("display_name") or user.get("username") or "用户"
for role in ("admin", "senior_editor"):
for role in ("admin", "senior_editor", "editor"):
conn.execute(
"INSERT INTO notifications (target_role, title, body) VALUES (?, ?, ?)",
(role, "🔍 用户需求:" + query,
@@ -651,7 +650,7 @@ def impersonate(body: dict, user=Depends(require_role("admin"))):
@app.get("/api/oils")
def list_oils():
conn = get_db()
rows = conn.execute("SELECT name, bottle_price, drop_count, retail_price, is_active, en_name FROM oils ORDER BY name").fetchall()
rows = conn.execute("SELECT name, bottle_price, drop_count, retail_price, is_active FROM oils ORDER BY name").fetchall()
conn.close()
return [dict(r) for r in rows]
@@ -660,11 +659,9 @@ def list_oils():
def upsert_oil(oil: OilIn, user=Depends(require_role("admin", "senior_editor"))):
conn = get_db()
conn.execute(
"INSERT INTO oils (name, bottle_price, drop_count, retail_price, en_name, is_active) VALUES (?, ?, ?, ?, ?, ?) "
"ON CONFLICT(name) DO UPDATE SET bottle_price=excluded.bottle_price, drop_count=excluded.drop_count, "
"retail_price=excluded.retail_price, en_name=COALESCE(excluded.en_name, oils.en_name), "
"is_active=COALESCE(excluded.is_active, oils.is_active)",
(oil.name, oil.bottle_price, oil.drop_count, oil.retail_price, oil.en_name, oil.is_active),
"INSERT INTO oils (name, bottle_price, drop_count, retail_price) VALUES (?, ?, ?, ?) "
"ON CONFLICT(name) DO UPDATE SET bottle_price=excluded.bottle_price, drop_count=excluded.drop_count, retail_price=excluded.retail_price",
(oil.name, oil.bottle_price, oil.drop_count, oil.retail_price),
)
log_audit(conn, user["id"], "upsert_oil", "oil", oil.name, oil.name,
json.dumps({"bottle_price": oil.bottle_price, "drop_count": oil.drop_count}))
@@ -702,6 +699,7 @@ def _recipe_to_dict(conn, row):
"id": rid,
"name": row["name"],
"en_name": row["en_name"] if "en_name" in row.keys() else "",
"en_oils": row["en_oils"] if "en_oils" in row.keys() else "{}",
"note": row["note"],
"owner_id": row["owner_id"],
"owner_name": (owner["display_name"] or owner["username"]) if owner else None,
@@ -716,19 +714,19 @@ def list_recipes(user=Depends(get_current_user)):
conn = get_db()
# Admin sees all; others see admin-owned (adopted) + their own
if user["role"] == "admin":
rows = conn.execute("SELECT id, name, note, owner_id, version, en_name FROM recipes ORDER BY id").fetchall()
rows = conn.execute("SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes ORDER BY id").fetchall()
else:
admin = conn.execute("SELECT id FROM users WHERE role = 'admin' LIMIT 1").fetchone()
admin_id = admin["id"] if admin else 1
user_id = user.get("id")
if user_id:
rows = conn.execute(
"SELECT id, name, note, owner_id, version, en_name FROM recipes WHERE owner_id = ? OR owner_id = ? ORDER BY id",
"SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes WHERE owner_id = ? OR owner_id = ? ORDER BY id",
(admin_id, user_id)
).fetchall()
else:
rows = conn.execute(
"SELECT id, name, note, owner_id, version, en_name FROM recipes WHERE owner_id = ? ORDER BY id",
"SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes WHERE owner_id = ? ORDER BY id",
(admin_id,)
).fetchall()
result = [_recipe_to_dict(conn, r) for r in rows]
@@ -739,7 +737,7 @@ def list_recipes(user=Depends(get_current_user)):
@app.get("/api/recipes/{recipe_id}")
def get_recipe(recipe_id: int):
conn = get_db()
row = conn.execute("SELECT id, name, note, owner_id, version, en_name FROM recipes WHERE id = ?", (recipe_id,)).fetchone()
row = conn.execute("SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes WHERE id = ?", (recipe_id,)).fetchone()
if not row:
conn.close()
raise HTTPException(404, "Recipe not found")
@@ -766,30 +764,29 @@ def create_recipe(recipe: RecipeIn, user=Depends(get_current_user)):
c.execute("INSERT OR IGNORE INTO tags (name) VALUES (?)", (tag,))
c.execute("INSERT OR IGNORE INTO recipe_tags (recipe_id, tag_name) VALUES (?, ?)", (rid, tag))
log_audit(conn, user["id"], "create_recipe", "recipe", rid, recipe.name)
# Notify admin and senior editors when non-admin creates a recipe
if user["role"] not in ("admin", "senior_editor"):
# Notify admin when non-admin creates a recipe
if user["role"] != "admin":
who = user.get("display_name") or user["username"]
for role in ("admin", "senior_editor"):
conn.execute(
"INSERT INTO notifications (target_role, title, body) VALUES (?, ?, ?)",
(role, "📝 新配方待审核",
f"{who} 共享了配方「{recipe.name}」,请到管理配方查看。\n[recipe_id:{rid}]")
)
conn.execute(
"INSERT INTO notifications (target_role, title, body) VALUES (?, ?, ?)",
("admin", "📝 新配方待审核",
f"{who} 新增了配方「{recipe.name}」,请到管理配方查看并采纳。")
)
conn.commit()
conn.close()
return {"id": rid}
def _check_recipe_permission(conn, recipe_id, user):
"""Check if user can modify this recipe. Requires editor+ role."""
"""Check if user can modify this recipe."""
row = conn.execute("SELECT owner_id, name FROM recipes WHERE id = ?", (recipe_id,)).fetchone()
if not row:
raise HTTPException(404, "Recipe not found")
if user["role"] in ("admin", "senior_editor"):
return row
if user["role"] in ("editor",) and row["owner_id"] == user.get("id"):
if row["owner_id"] == user.get("id"):
return row
raise HTTPException(403, "权限不足")
raise HTTPException(403, "只能修改自己创建的配方")
@app.put("/api/recipes/{recipe_id}")
@@ -813,6 +810,8 @@ def update_recipe(recipe_id: int, update: RecipeUpdate, user=Depends(get_current
c.execute("UPDATE recipes SET note = ? WHERE id = ?", (update.note, recipe_id))
if update.en_name is not None:
c.execute("UPDATE recipes SET en_name = ? WHERE id = ?", (update.en_name, recipe_id))
if update.en_oils is not None:
c.execute("UPDATE recipes SET en_oils = ? WHERE id = ?", (update.en_oils, recipe_id))
if update.ingredients is not None:
c.execute("DELETE FROM recipe_ingredients WHERE recipe_id = ?", (recipe_id,))
for ing in update.ingredients:
@@ -842,7 +841,7 @@ def delete_recipe(recipe_id: int, user=Depends(get_current_user)):
conn = get_db()
row = _check_recipe_permission(conn, recipe_id, user)
# Save full snapshot for undo
full = conn.execute("SELECT id, name, note, owner_id, version, en_name FROM recipes WHERE id = ?", (recipe_id,)).fetchone()
full = conn.execute("SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes WHERE id = ?", (recipe_id,)).fetchone()
snapshot = _recipe_to_dict(conn, full)
log_audit(conn, user["id"], "delete_recipe", "recipe", recipe_id, row["name"],
json.dumps(snapshot, ensure_ascii=False))
@@ -863,48 +862,11 @@ def adopt_recipe(recipe_id: int, user=Depends(require_role("admin"))):
if row["owner_id"] == user["id"]:
conn.close()
return {"ok": True, "msg": "already owned"}
old_owner = conn.execute("SELECT id, role, display_name, username FROM users WHERE id = ?", (row["owner_id"],)).fetchone()
old_owner = conn.execute("SELECT display_name, username FROM users WHERE id = ?", (row["owner_id"],)).fetchone()
old_name = (old_owner["display_name"] or old_owner["username"]) if old_owner else "unknown"
conn.execute("UPDATE recipes SET owner_id = ?, updated_by = ? WHERE id = ?", (user["id"], user["id"], recipe_id))
log_audit(conn, user["id"], "adopt_recipe", "recipe", recipe_id, row["name"],
json.dumps({"from_user": old_name}))
# Notify submitter that recipe was approved
if old_owner and old_owner["id"] != user["id"]:
conn.execute(
"INSERT INTO notifications (target_role, title, body, target_user_id) VALUES (?, ?, ?, ?)",
(old_owner["role"], "🎉 配方已采纳",
f"你共享的配方「{row['name']}」已被采纳到公共配方库!", old_owner["id"])
)
conn.commit()
conn.close()
return {"ok": True}
@app.post("/api/recipes/{recipe_id}/reject")
def reject_recipe(recipe_id: int, body: dict = None, user=Depends(require_role("admin"))):
conn = get_db()
row = conn.execute("SELECT id, name, owner_id FROM recipes WHERE id = ?", (recipe_id,)).fetchone()
if not row:
conn.close()
raise HTTPException(404, "Recipe not found")
reason = (body or {}).get("reason", "").strip()
# Notify submitter
old_owner = conn.execute("SELECT id, role, display_name, username FROM users WHERE id = ?", (row["owner_id"],)).fetchone()
if old_owner and old_owner["id"] != user["id"]:
msg = f"你共享的配方「{row['name']}」未被采纳。"
if reason:
msg += f"\n原因:{reason}"
msg += "\n你可以修改后重新共享。"
conn.execute(
"INSERT INTO notifications (target_role, title, body, target_user_id) VALUES (?, ?, ?, ?)",
(old_owner["role"], "配方未被采纳", msg, old_owner["id"])
)
# Delete the recipe
conn.execute("DELETE FROM recipe_ingredients WHERE recipe_id = ?", (recipe_id,))
conn.execute("DELETE FROM recipe_tags WHERE recipe_id = ?", (recipe_id,))
conn.execute("DELETE FROM recipes WHERE id = ?", (recipe_id,))
log_audit(conn, user["id"], "reject_recipe", "recipe", recipe_id, row["name"],
json.dumps({"reason": reason}))
conn.commit()
conn.close()
return {"ok": True}
@@ -1011,9 +973,6 @@ def delete_user(user_id: int, user=Depends(require_role("admin"))):
def update_user(user_id: int, body: UserUpdate, user=Depends(require_role("admin"))):
conn = get_db()
if body.role is not None:
if body.role == "admin":
conn.close()
raise HTTPException(403, "不能将用户设为管理员")
conn.execute("UPDATE users SET role = ? WHERE id = ?", (body.role, user_id))
if body.display_name is not None:
conn.execute("UPDATE users SET display_name = ? WHERE id = ?", (body.display_name, user_id))
@@ -1385,7 +1344,7 @@ def recipes_by_inventory(user=Depends(get_current_user)):
if not inv:
conn.close()
return []
rows = conn.execute("SELECT id, name, note, owner_id, version, en_name FROM recipes ORDER BY id").fetchall()
rows = conn.execute("SELECT id, name, note, owner_id, version, en_name, en_oils FROM recipes ORDER BY id").fetchall()
result = []
for r in rows:
recipe = _recipe_to_dict(conn, r)
@@ -1438,55 +1397,17 @@ def get_unmatched_searches(days: int = 7, user=Depends(require_role("admin", "se
return [dict(r) for r in rows]
# ── Recipe review history ──────────────────────────────
@app.get("/api/recipe-reviews")
def list_recipe_reviews(user=Depends(require_role("admin"))):
conn = get_db()
rows = conn.execute(
"SELECT a.id, a.action, a.target_name, a.detail, a.created_at, "
"u.display_name, u.username "
"FROM audit_log a LEFT JOIN users u ON a.user_id = u.id "
"WHERE a.action IN ('adopt_recipe', 'reject_recipe') "
"ORDER BY a.id DESC LIMIT 100"
).fetchall()
conn.close()
return [dict(r) for r in rows]
# ── Contribution stats ─────────────────────────────────
@app.get("/api/me/contribution")
def my_contribution(user=Depends(get_current_user)):
if not user.get("id"):
return {"adopted_count": 0, "shared_count": 0}
conn = get_db()
# adopted_count: recipes adopted from this user (owner changed to admin)
adopted = conn.execute(
"SELECT COUNT(*) FROM audit_log WHERE action = 'adopt_recipe' AND detail LIKE ?",
(f'%"from_user": "{user.get("display_name") or user.get("username")}"%',)
).fetchone()[0]
# pending: recipes still owned by user in public library (not yet adopted)
pending = conn.execute(
"SELECT COUNT(*) FROM recipes WHERE owner_id = ?", (user["id"],)
).fetchone()[0]
conn.close()
return {"adopted_count": adopted, "shared_count": adopted + pending}
# ── Notifications ──────────────────────────────────────
@app.get("/api/notifications")
def get_notifications(user=Depends(get_current_user)):
if not user["id"]:
return []
conn = get_db()
# Only show notifications created after user registration
user_created = conn.execute("SELECT created_at FROM users WHERE id = ?", (user["id"],)).fetchone()
created_at = user_created["created_at"] if user_created else "2000-01-01"
rows = conn.execute(
"SELECT id, title, body, is_read, created_at FROM notifications "
"WHERE (target_user_id = ? OR (target_user_id IS NULL AND (target_role = ? OR target_role = 'all'))) "
"AND created_at >= ? "
"ORDER BY is_read ASC, id DESC LIMIT 200",
(user["id"], user["role"], created_at)
(user["id"], user["role"])
).fetchall()
conn.close()
return [dict(r) for r in rows]

View File

@@ -25,7 +25,7 @@ describe('Oil Data Integrity', () => {
const ppd = oil.bottle_price / oil.drop_count
expect(ppd).to.be.a('number')
expect(ppd).to.be.gte(0)
expect(ppd).to.be.lte(300) // sanity check: some premium oils can cost >100 per drop
expect(ppd).to.be.lte(100) // sanity check: no oil costs >100 per drop
})
})
})

View File

@@ -1,58 +1,45 @@
// Helper: dismiss any modal that may cover the detail overlay (login modal, error dialog)
function dismissModals() {
cy.get('body').then($body => {
if ($body.find('.login-overlay').length) {
cy.get('.login-overlay').click('topLeft') // click backdrop to close
}
if ($body.find('.dialog-overlay').length) {
cy.get('.dialog-btn-primary').click()
}
})
}
describe('Recipe Detail', () => {
beforeEach(() => {
cy.visit('/')
cy.get('.recipe-card', { timeout: 10000 }).should('have.length.gte', 1)
dismissModals()
})
it('opens detail panel when clicking a recipe card', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay').should('exist')
cy.get('[class*="detail"]').should('be.visible')
})
it('shows recipe name in detail view', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay').should('exist')
cy.get('.recipe-card').first().invoke('text').then(cardText => {
cy.get('.recipe-card').first().click()
cy.wait(500)
cy.get('[class*="detail"]').should('be.visible')
})
})
it('shows ingredient info with drops', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.wait(500)
cy.contains('滴').should('exist')
})
it('shows cost with ¥ symbol', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.wait(500)
cy.contains('¥').should('exist')
})
it('closes detail panel when clicking close button', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay').should('exist')
cy.get('.detail-close-btn').first().click({ force: true })
cy.get('[class*="detail"]').should('be.visible')
cy.get('button').contains(/✕|关闭/).first().click()
cy.get('.recipe-card').should('be.visible')
})
it('shows action buttons in detail', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay button').should('have.length.gte', 1)
cy.wait(500)
cy.get('[class*="detail"] button').should('have.length.gte', 1)
})
it('shows favorite star on recipe cards', () => {
@@ -70,41 +57,25 @@ describe('Recipe Detail - Editor (Admin)', () => {
}
})
cy.get('.recipe-card', { timeout: 10000 }).should('have.length.gte', 1)
dismissModals()
})
it('shows editable ingredients table in editor tab', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay', { timeout: 5000 }).should('exist')
cy.get('.detail-overlay').then($el => {
if ($el.find(':contains("编辑")').filter('button').length) {
cy.contains('编辑').click()
cy.get('.editor-select, .editor-drops').should('exist')
} else {
cy.log('Edit button not available (not admin) — skipping')
}
})
cy.wait(500)
cy.contains('编辑').click()
cy.get('.editor-select, .editor-drops').should('exist')
})
it('shows add ingredient button in editor tab', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay', { timeout: 5000 }).should('exist')
cy.get('.detail-overlay').then($el => {
if ($el.find(':contains("编辑")').filter('button').length) {
cy.contains('编辑').click()
cy.contains('添加精油').should('exist')
} else {
cy.log('Edit button not available (not admin) — skipping')
}
})
cy.wait(500)
cy.contains('编辑').click()
cy.contains('添加精油').should('exist')
})
it('shows save image button', () => {
it('shows export image button', () => {
cy.get('.recipe-card').first().click()
dismissModals()
cy.get('.detail-overlay', { timeout: 5000 }).should('exist')
cy.contains('保存图片').should('exist')
cy.wait(500)
cy.contains('导出图片').should('exist')
})
})

View File

@@ -2,43 +2,59 @@
<div v-if="isPreview" style="background:#e65100;color:white;text-align:center;padding:6px 16px;font-size:13px;font-weight:600;letter-spacing:0.5px;position:sticky;top:0;z-index:100">
预览环境 · PR #{{ prId }} · 数据为生产副本修改不影响正式环境
</div>
<div class="app-header">
<div class="header-inner">
<div class="header-left">
<div class="header-icon">🌿</div>
<div class="header-title">
<h1>doTERRA 配方计算器</h1>
<p>查询配方 · 计算成本 · 自制配方 · 导出卡片 · 精油知识</p>
<p v-if="auth.isAdmin" class="version-info">v2.0.0 · 2026-04-10</p>
</div>
</div>
<div class="header-right" @click="toggleUserMenu">
<template v-if="auth.isLoggedIn">
<span v-if="auth.isBusiness" class="biz-badge" title="商业认证用户">🏢</span>
<span class="user-name">{{ auth.user.display_name || auth.user.username }} </span>
<span v-if="unreadNotifCount > 0" class="notif-badge">{{ unreadNotifCount }}</span>
</template>
<template v-else>
<span class="login-btn">登录</span>
</template>
<div class="app-header" style="position:relative">
<div class="header-inner" style="padding-right:80px">
<div class="header-icon">🌿</div>
<div class="header-title" style="text-align:left;flex:1">
<h1 style="display:flex;justify-content:space-between;align-items:center;gap:8px;white-space:nowrap">
<span style="flex-shrink:0">doTERRA 配方计算器
<span v-if="auth.isAdmin" style="font-size:10px;font-weight:400;opacity:0.5;vertical-align:top">v2.2.0</span>
</span>
<span
style="cursor:pointer;color:white;font-size:13px;font-weight:500;flex-shrink:0;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB',sans-serif;letter-spacing:0.3px;opacity:0.95"
@click="toggleUserMenu"
>
<template v-if="auth.isLoggedIn">
👤 {{ auth.user.display_name || auth.user.username }}
</template>
<template v-else>
<span style="background:rgba(255,255,255,0.2);padding:4px 12px;border-radius:12px">登录</span>
</template>
</span>
</h1>
<p style="display:flex;flex-wrap:wrap;gap:4px 8px;margin:0">
<span style="white-space:nowrap">查询配方</span>
<span style="opacity:0.5">·</span>
<span style="white-space:nowrap">计算成本</span>
<span style="opacity:0.5">·</span>
<span style="white-space:nowrap">自制配方</span>
<span style="opacity:0.5">·</span>
<span style="white-space:nowrap">导出卡片</span>
<span style="opacity:0.5">·</span>
<span style="white-space:nowrap">精油知识</span>
</p>
</div>
</div>
</div>
<!-- User Menu Popup -->
<UserMenu v-if="showUserMenu" @close="showUserMenu = false; loadUnreadCount()" />
<UserMenu v-if="showUserMenu" @close="showUserMenu = false" />
<!-- Nav tabs -->
<div class="nav-tabs" ref="navTabsRef" :style="isPreview ? { top: '36px' } : {}">
<div v-for="tab in visibleTabs" :key="tab.key"
class="nav-tab"
:class="{ active: ui.currentSection === tab.key }"
@click="handleTabClick(tab)"
>{{ tab.icon }} {{ tab.label }}</div>
<div class="nav-tabs" :style="isPreview ? { top: '36px' } : {}">
<div class="nav-tab" :class="{ active: ui.currentSection === 'search' }" @click="goSection('search')">🔍 配方查询</div>
<div class="nav-tab" :class="{ active: ui.currentSection === 'manage' }" @click="requireLogin('manage')">📋 管理配方</div>
<div class="nav-tab" :class="{ active: ui.currentSection === 'inventory' }" @click="requireLogin('inventory')">📦 个人库存</div>
<div class="nav-tab" :class="{ active: ui.currentSection === 'oils' }" @click="goSection('oils')">💧 精油价目</div>
<div v-if="auth.isBusiness" class="nav-tab" :class="{ active: ui.currentSection === 'projects' }" @click="goSection('projects')">💼 商业核算</div>
<div v-if="auth.isAdmin" class="nav-tab" :class="{ active: ui.currentSection === 'audit' }" @click="goSection('audit')">📜 操作日志</div>
<div v-if="auth.isAdmin" class="nav-tab" :class="{ active: ui.currentSection === 'bugs' }" @click="goSection('bugs')">🐛 Bug</div>
<div v-if="auth.isAdmin" class="nav-tab" :class="{ active: ui.currentSection === 'users' }" @click="goSection('users')">👥 用户管理</div>
</div>
<!-- Main content -->
<div class="main" @touchstart="onSwipeStart" @touchend="onSwipeEnd">
<div class="main">
<router-view />
</div>
@@ -53,7 +69,7 @@
</template>
<script setup>
import { ref, computed, onMounted, watch, nextTick } from 'vue'
import { ref, onMounted, watch } from 'vue'
import { useRouter, useRoute } from 'vue-router'
import { useAuthStore } from './stores/auth'
import { useOilsStore } from './stores/oils'
@@ -62,7 +78,6 @@ import { useUiStore } from './stores/ui'
import LoginModal from './components/LoginModal.vue'
import CustomDialog from './components/CustomDialog.vue'
import UserMenu from './components/UserMenu.vue'
import { api } from './composables/useApi'
const auth = useAuthStore()
const oils = useOilsStore()
@@ -71,47 +86,12 @@ const ui = useUiStore()
const router = useRouter()
const route = useRoute()
const showUserMenu = ref(false)
const navTabsRef = ref(null)
// Tab 定义,顺序固定
// require: 点击时需要的条件,不满足则提示
// hide: 完全隐藏(只有满足条件才显示)
const allTabs = [
{ key: 'search', icon: '🔍', label: '配方查询' },
{ key: 'manage', icon: '📋', label: '管理配方', require: 'login' },
{ key: 'inventory', icon: '📦', label: '个人库存', require: 'login' },
{ key: 'oils', icon: '💧', label: '精油价目' },
{ key: 'projects', icon: '💼', label: '商业核算', require: 'login' },
{ key: 'audit', icon: '📜', label: '操作日志', hide: 'admin' },
{ key: 'bugs', icon: '🐛', label: 'Bug', hide: 'admin' },
{ key: 'users', icon: '👥', label: '用户管理', hide: 'admin' },
]
// 所有人都能看到大部分 tabbug 和用户管理只有 admin 可见
const visibleTabs = computed(() => allTabs.filter(t => {
if (!t.hide) return true
if (t.hide === 'admin') return auth.isAdmin
return true
}))
const unreadNotifCount = ref(0)
async function loadUnreadCount() {
if (!auth.isLoggedIn) return
try {
const res = await api('/api/notifications')
if (res.ok) {
const data = await res.json()
unreadNotifCount.value = data.filter(n => !n.is_read).length
}
} catch {}
}
// Sync ui.currentSection from route on load and navigation
const routeToSection = { '/': 'search', '/manage': 'manage', '/inventory': 'inventory', '/oils': 'oils', '/projects': 'projects', '/mydiary': 'mydiary', '/audit': 'audit', '/bugs': 'bugs', '/users': 'users' }
watch(() => route.path, (path) => {
const section = routeToSection[path] || 'search'
ui.showSection(section)
nextTick(() => scrollActiveTabToCenter())
}, { immediate: true })
// Preview environment detection: pr-{id}.oil.oci.euphon.net
@@ -120,35 +100,9 @@ const prMatch = hostname.match(/^pr-(\d+)\./)
const isPreview = !!prMatch
const prId = prMatch ? prMatch[1] : ''
function handleTabClick(tab) {
if (tab.require === 'login' && !auth.isLoggedIn) {
ui.openLogin(() => goSection(tab.key))
return
}
if (tab.require === 'business' && !auth.isBusiness) {
if (!auth.isLoggedIn) {
ui.openLogin(() => goSection(tab.key))
} else {
ui.showToast('需要商业认证才能使用此功能')
}
return
}
goSection(tab.key)
}
function goSection(name) {
ui.showSection(name)
router.push('/' + (name === 'search' ? '' : name))
nextTick(() => scrollActiveTabToCenter())
}
function scrollActiveTabToCenter() {
if (!navTabsRef.value) return
const active = navTabsRef.value.querySelector('.nav-tab.active')
if (!active) return
const container = navTabsRef.value
const scrollLeft = active.offsetLeft - container.clientWidth / 2 + active.clientWidth / 2
container.scrollTo({ left: scrollLeft, behavior: 'smooth' })
}
function requireLogin(name) {
@@ -167,38 +121,6 @@ function toggleUserMenu() {
showUserMenu.value = !showUserMenu.value
}
// ── 左右滑动切换 tab ──
// 滑动顺序 = visibleTabs 的顺序(根据用户角色动态决定)
// 轮播区域data-no-tab-swipe内的滑动不触发 tab 切换
const swipeStartX = ref(0)
const swipeStartY = ref(0)
function onSwipeStart(e) {
swipeStartX.value = e.touches[0].clientX
swipeStartY.value = e.touches[0].clientY
}
function onSwipeEnd(e) {
const dx = e.changedTouches[0].clientX - swipeStartX.value
const dy = e.changedTouches[0].clientY - swipeStartY.value
// 必须是水平滑动 > 50px且水平距离大于垂直距离
if (Math.abs(dx) < 50 || Math.abs(dy) > Math.abs(dx)) return
// 轮播区域内不触发 tab 切换
if (e.target.closest && e.target.closest('[data-no-tab-swipe]')) return
const tabs = visibleTabs.value.map(t => t.key)
const currentIdx = tabs.indexOf(ui.currentSection)
if (currentIdx < 0) return
let nextIdx = -1
if (dx < 0 && currentIdx < tabs.length - 1) nextIdx = currentIdx + 1
else if (dx > 0 && currentIdx > 0) nextIdx = currentIdx - 1
if (nextIdx >= 0) {
const tab = visibleTabs.value[nextIdx]
handleTabClick(tab)
}
}
onMounted(async () => {
await auth.initToken()
await Promise.all([
@@ -208,7 +130,6 @@ onMounted(async () => {
])
if (auth.isLoggedIn) {
await recipeStore.loadFavorites()
await loadUnreadCount()
}
// Periodic refresh
@@ -216,89 +137,7 @@ onMounted(async () => {
if (document.visibilityState !== 'visible') return
try {
await auth.loadMe()
await loadUnreadCount()
} catch {}
}, 15000)
})
</script>
<style scoped>
.header-inner {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
position: relative;
z-index: 1;
}
.header-left {
display: flex;
align-items: center;
gap: 12px;
flex: 1;
min-width: 0;
}
.header-icon { font-size: 36px; flex-shrink: 0; }
.header-title { color: white; min-width: 0; }
.header-title h1 {
font-family: 'Noto Serif SC', serif;
font-size: 22px;
font-weight: 600;
letter-spacing: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.header-title p {
font-size: 12px;
opacity: 0.8;
margin-top: 3px;
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;
display: flex;
align-items: center;
gap: 6px;
}
.user-name {
color: white;
font-size: 13px;
font-weight: 500;
opacity: 0.95;
white-space: nowrap;
}
.notif-badge {
background: #e53935;
color: #fff;
font-size: 11px;
font-weight: 700;
min-width: 18px;
height: 18px;
line-height: 18px;
text-align: center;
border-radius: 9px;
padding: 0 5px;
margin-left: 4px;
}
.login-btn {
color: white;
background: rgba(255,255,255,0.2);
padding: 5px 14px;
border-radius: 12px;
font-size: 13px;
}
.biz-badge { font-size: 14px; }
@media (max-width: 480px) {
.header-icon { font-size: 28px; }
.header-title h1 { font-size: 18px; }
.header-title p { font-size: 10px; }
}
</style>

View File

@@ -69,24 +69,6 @@ body {
.nav-tab:hover { color: var(--sage-dark); }
.nav-tab.active { color: var(--sage-dark); border-bottom-color: var(--sage); }
.section-title-bar {
display: flex;
justify-content: center;
align-items: center;
background: white;
padding: 12px 0;
position: sticky;
top: 0;
z-index: 50;
}
.section-title-text {
font-size: 15px;
font-weight: 600;
color: var(--sage-dark);
border-bottom: 2px solid var(--sage);
padding-bottom: 4px;
}
/* Main content */
.main { padding: 24px; max-width: 960px; margin: 0 auto; }

View File

@@ -8,8 +8,6 @@
type="text"
style="width:100%;padding:10px 14px;border:1.5px solid #d4cfc7;border-radius:10px;font-size:14px;margin-bottom:16px;outline:none;font-family:inherit;box-sizing:border-box"
@keydown.enter="submitPrompt"
@compositionstart="isComposing = true"
@compositionend="onCompositionEnd"
ref="promptInput"
/>
<div class="dialog-btn-row">
@@ -21,12 +19,11 @@
</template>
<script setup>
import { ref, watch, nextTick, shallowRef } from 'vue'
import { ref, watch, nextTick } from 'vue'
import { dialogState, closeDialog } from '../composables/useDialog'
const inputValue = ref('')
const promptInput = ref(null)
const isComposing = shallowRef(false)
watch(() => dialogState.visible, (v) => {
if (v && dialogState.type === 'prompt') {
@@ -49,15 +46,7 @@ function cancel() {
else closeDialog(null)
}
function onCompositionEnd(e) {
isComposing.value = false
// After compositionend, update the model value with the committed text
inputValue.value = e.target.value
}
function submitPrompt(e) {
// Ignore Enter during IME composition (e.g. Chinese input method confirming a character)
if (e.isComposing || isComposing.value) return
function submitPrompt() {
closeDialog(inputValue.value)
}
</script>

View File

@@ -51,15 +51,6 @@
<button class="login-submit" :disabled="loading" @click="submit">
{{ loading ? '请稍候...' : (mode === 'login' ? '登录' : '注册') }}
</button>
<div class="login-divider"></div>
<button v-if="!showFeedback" class="login-feedback-btn" @click="showFeedback = true">🐛 反馈问题无需登录</button>
<div v-if="showFeedback" class="feedback-section">
<textarea v-model="feedbackText" class="login-input" rows="3" placeholder="描述你遇到的问题..." style="resize:vertical;"></textarea>
<button class="login-submit" :disabled="!feedbackText.trim() || feedbackLoading" @click="submitFeedback">
{{ feedbackLoading ? '提交中...' : '提交反馈' }}
</button>
</div>
</div>
</div>
</div>
@@ -69,7 +60,6 @@
import { ref } from 'vue'
import { useAuthStore } from '../stores/auth'
import { useUiStore } from '../stores/ui'
import { api } from '../composables/useApi'
const emit = defineEmits(['close'])
@@ -83,9 +73,6 @@ const confirmPassword = ref('')
const displayName = ref('')
const errorMsg = ref('')
const loading = ref(false)
const showFeedback = ref(false)
const feedbackText = ref('')
const feedbackLoading = ref(false)
async function submit() {
errorMsg.value = ''
@@ -128,26 +115,6 @@ async function submit() {
loading.value = false
}
}
async function submitFeedback() {
if (!feedbackText.value.trim()) return
feedbackLoading.value = true
try {
const res = await api('/api/bug-report', {
method: 'POST',
body: JSON.stringify({ content: feedbackText.value.trim(), priority: 0 }),
})
if (res.ok) {
feedbackText.value = ''
showFeedback.value = false
ui.showToast('反馈已提交,感谢!')
}
} catch {
ui.showToast('提交失败')
} finally {
feedbackLoading.value = false
}
}
</script>
<style scoped>
@@ -242,31 +209,4 @@ async function submitFeedback() {
opacity: 0.6;
cursor: not-allowed;
}
.login-divider {
height: 1px;
background: #eee;
margin: 4px 0;
}
.login-feedback-btn {
background: none;
border: none;
color: #999;
font-size: 13px;
cursor: pointer;
font-family: inherit;
text-align: center;
padding: 4px 0;
}
.login-feedback-btn:hover {
color: #666;
}
.feedback-section {
display: flex;
flex-direction: column;
gap: 10px;
}
</style>

View File

@@ -9,7 +9,7 @@
<button class="action-btn action-btn-fav action-btn-sm" @click="handleToggleFavorite">
{{ isFav ? ' 已收藏' : ' 收藏' }}
</button>
<button v-if="!props.isDiary" class="action-btn action-btn-diary action-btn-sm" @click="saveToDiary">
<button v-if="!recipe._diary_id" class="action-btn action-btn-diary action-btn-sm" @click="saveToDiary">
📔 存为我的
</button>
</div>
@@ -19,7 +19,7 @@
class="action-btn action-btn-sm"
@click="viewMode = 'editor'"
>编辑</button>
<button class="detail-close-btn" @click="handleClose"></button>
<button class="detail-close-btn" @click="$emit('close')"></button>
</div>
<!-- Language toggle -->
@@ -36,57 +36,79 @@
>English</button>
</div>
<!-- Volume selector (only in editor mode) -->
<div v-if="viewMode === 'editor'" class="card-volume-toggle">
<button
v-for="(drops, ml) in VOLUME_DROPS"
:key="ml"
class="volume-btn"
:class="{ active: selectedCardVolume === ml }"
@click="onCardVolumeChange(ml)"
>{{ ml === '单次' ? '单次' : ml + 'ml' }}</button>
</div>
<!-- Card image (rendered by html2canvas) -->
<div v-show="!cardImageUrl" ref="cardRef" class="export-card">
<!-- Background image overlay -->
<div v-if="brand.brand_bg" style="position:absolute;inset:0;width:100%;height:100%;background-size:cover;background-position:center;opacity:0.12;pointer-events:none;z-index:0" :style="{ backgroundImage: `url('${brand.brand_bg}')` }"></div>
<!-- QR: top-right -->
<div v-if="brand.qr_code" style="position:absolute;top:20px;right:16px;display:flex;flex-direction:column;align-items:center;gap:3px;z-index:3">
<img :src="brand.qr_code" crossorigin="anonymous" style="width:54px;height:54px;object-fit:cover;border-radius:6px;box-shadow:0 2px 6px rgba(0,0,0,0.1)" />
<div v-if="brand.brand_name" :style="{ textAlign: brand.brand_align || 'center' }" style="font-size:7px;color:var(--text-light);line-height:1.3;max-width:68px;white-space:pre-line">{{ brand.brand_name }}</div>
<!-- Brand overlay layers -->
<div
v-if="brand.brand_bg"
class="card-brand-bg"
:style="{ backgroundImage: `url('${brand.brand_bg}')` }"
/>
<div v-if="brand.qr_code" class="card-qr-wrapper">
<img
:src="brand.qr_code"
class="card-qr"
crossorigin="anonymous"
/>
<div v-if="brand.brand_name" class="card-qr-name">{{ brand.brand_name }}</div>
</div>
<!-- Card content -->
<div style="position:relative;z-index:2">
<div class="ec-subtitle">
<img
v-if="brand.brand_logo"
:src="brand.brand_logo"
class="card-logo"
crossorigin="anonymous"
/>
<div class="card-content">
<div class="card-brand-text">
{{ cardLang === 'en' ? 'doTERRA · Gifts of the Earth' : 'doTERRA · 来自大地的礼物' }}
</div>
<div class="ec-title">{{ getCardRecipeName() }}</div>
<div style="width:80px;height:2px;background:linear-gradient(90deg,var(--sage),var(--gold));border-radius:2px;margin:14px 0"></div>
<div class="card-title">
{{ getCardRecipeName() }}
</div>
<div class="card-divider"></div>
<ul style="list-style:none;margin-bottom:20px;padding:0">
<li v-for="(ing, i) in cardIngredients" :key="i" class="ec-ing">
<span class="ec-oil-name">{{ getCardOilName(ing.oil) }}</span>
<span class="ec-drops">{{ ing.drops }} {{ cardLang === 'en' ? 'drops' : '滴' }}</span>
<span class="ec-cost">{{ oilsStore.fmtPrice(oilsStore.pricePerDrop(ing.oil) * ing.drops) }}</span>
<span v-if="hasRetailForOil(ing.oil) && retailPerDrop(ing.oil) > oilsStore.pricePerDrop(ing.oil)" class="ec-retail">{{ oilsStore.fmtPrice(retailPerDrop(ing.oil) * ing.drops) }}</span>
<!-- Ingredients (excluding coconut oil) -->
<ul class="card-ingredients">
<li v-for="(ing, i) in cardIngredients" :key="i">
<span class="card-oil-name">
{{ getCardOilName(ing.oil) }}
</span>
<span class="card-oil-drops">
{{ ing.drops }} {{ cardLang === 'en' ? 'drops' : '滴' }}
</span>
<span class="card-oil-cost">
{{ oilsStore.fmtPrice(oilsStore.pricePerDrop(ing.oil) * ing.drops) }}
</span>
<span
v-if="hasRetailForOil(ing.oil) && retailPerDrop(ing.oil) > oilsStore.pricePerDrop(ing.oil)"
class="card-retail-strike"
>{{ oilsStore.fmtPrice(retailPerDrop(ing.oil) * ing.drops) }}</span>
</li>
</ul>
<div v-if="dilutionDesc" style="padding:10px 14px;background:rgba(180,150,100,0.08);border-radius:10px;font-size:12px;color:var(--text-mid);margin-bottom:12px">{{ dilutionDesc }}</div>
<!-- Dilution description -->
<div v-if="dilutionDesc" class="card-dilution">{{ dilutionDesc }}</div>
<div v-if="displayRecipe.note" style="font-size:12px;color:var(--brown-light);margin-bottom:12px;font-style:italic">📝 {{ displayRecipe.note }}</div>
<div class="ec-total-bar">
<span style="color:rgba(255,255,255,0.85);font-size:12px;letter-spacing:1px">{{ cardLang === 'en' ? 'Total Cost' : '配方总成本' }}</span>
<span style="color:white;font-size:17px;font-weight:700">{{ priceInfo.cost }}<span v-if="priceInfo.hasRetail" style="text-decoration:line-through;opacity:0.6;font-size:11px;margin-left:4px">{{ priceInfo.retail }}</span></span>
<!-- Note -->
<div v-if="recipe.note" class="card-note">
{{ cardLang === 'en' ? '📝 ' + recipe.note : '📝 ' + recipe.note }}
</div>
<!-- Logo left + Date right -->
<div class="ec-bottom">
<img v-if="brand.brand_logo" :src="brand.brand_logo" crossorigin="anonymous" class="ec-logo" />
<span v-else></span>
<span class="ec-date">{{ cardLang === 'en' ? 'Date: ' : '制作日期:' }}{{ todayStr }}</span>
<!-- Total cost bar -->
<div class="card-total">
<div class="card-total-label">
{{ cardLang === 'en' ? 'Total Cost' : '配方总成本' }}
</div>
<div class="card-total-price">
{{ priceInfo.cost }}
<span v-if="priceInfo.hasRetail" class="card-total-retail">{{ priceInfo.retail }}</span>
</div>
</div>
<!-- Date -->
<div class="card-footer">
{{ cardLang === 'en' ? 'Date: ' : '制作日期:' }}{{ todayStr }}
</div>
</div>
</div>
@@ -103,7 +125,7 @@
<button
v-if="cardLang === 'en' && authStore.canManage"
class="action-btn"
@click="openTranslationEditor"
@click="showTranslationEditor = true"
> 修改翻译</button>
<button
v-if="showBrandHint"
@@ -140,7 +162,7 @@
<div class="editor-header-actions">
<button class="action-btn action-btn-primary action-btn-sm" @click="saveRecipe">💾 保存</button>
<button class="action-btn action-btn-sm" @click="previewFromEditor">👁 预览</button>
<button class="detail-close-btn" @click="handleEditorClose"></button>
<button class="detail-close-btn" @click="$emit('close')"></button>
</div>
</div>
@@ -193,29 +215,10 @@
<!-- Add ingredient row -->
<div v-if="showAddRow" class="add-ingredient-row">
<div class="oil-autocomplete">
<input
v-model="oilSearchQuery"
@focus="showOilDropdown = true"
@blur="closeOilDropdown"
@input="newIngOil = ''"
class="editor-input oil-search-input"
placeholder="搜索精油名称或英文..."
autocomplete="off"
/>
<div v-if="showOilDropdown && filteredOilsForAdd.length" class="oil-dropdown">
<div
v-for="name in filteredOilsForAdd"
:key="name"
class="oil-dropdown-item"
:class="{ 'is-selected': newIngOil === name }"
@mousedown.prevent="selectNewOil(name)"
>
<span>{{ name }}</span>
<span class="oil-dropdown-en">{{ oilEn(name) }}</span>
</div>
</div>
</div>
<select v-model="newIngOil" class="editor-select">
<option value=""> 选择精油 </option>
<option v-for="name in oilsStore.oilNames" :key="name" :value="name">{{ name }}</option>
</select>
<input
v-model.number="newIngDrops"
type="number"
@@ -225,7 +228,7 @@
class="editor-drops"
/>
<button class="action-btn action-btn-primary action-btn-sm" @click="confirmAddIngredient">确认</button>
<button class="action-btn action-btn-sm" @click="cancelAddRow">取消</button>
<button class="action-btn action-btn-sm" @click="showAddRow = false">取消</button>
</div>
<button v-else class="add-row-btn" @click="showAddRow = true">+ 添加精油</button>
</div>
@@ -355,13 +358,10 @@ import { useDiaryStore } from '../stores/diary'
import { api } from '../composables/useApi'
import { showConfirm, showPrompt } from '../composables/useDialog'
import { oilEn, recipeNameEn } from '../composables/useOilTranslation'
import { matchesPinyinInitials } from '../composables/usePinyinMatch'
// TagPicker replaced with inline tag editing
const props = defineProps({
recipeIndex: { type: Number, default: null },
recipeData: { type: Object, default: null },
isDiary: { type: Boolean, default: false },
recipeIndex: { type: Number, required: true },
})
const emit = defineEmits(['close'])
@@ -384,24 +384,14 @@ const customRecipeNameEn = ref('')
const customOilNameEn = ref({})
const generatingImage = ref(false)
// ---- Preview override: holds unsaved editor state when user clicks "预览" ----
const previewOverride = ref(null)
// ---- Source recipe ----
const recipe = computed(() => {
if (props.recipeData) return props.recipeData
return recipesStore.recipes[props.recipeIndex] || { name: '', ingredients: [], tags: [], note: '' }
})
// ---- Display recipe: previewOverride when in preview mode, otherwise saved recipe ----
const displayRecipe = computed(() => {
if (!previewOverride.value) return recipe.value
return { ...recipe.value, ...previewOverride.value }
})
const recipe = computed(() =>
recipesStore.recipes[props.recipeIndex] || { name: '', ingredients: [], tags: [], note: '' }
)
const canEditThisRecipe = computed(() => {
if (props.isDiary) return false
if (authStore.canEdit) return true
if (authStore.isLoggedIn && recipe.value._owner_id === authStore.user.id) return true
return false
})
@@ -421,7 +411,7 @@ function scaleIngredients(ingredients, volume) {
// Card ingredients: scaled to selected volume, coconut oil excluded from display
const scaledCardIngredients = computed(() =>
scaleIngredients(displayRecipe.value.ingredients, selectedCardVolume.value)
scaleIngredients(recipe.value.ingredients, selectedCardVolume.value)
)
const cardIngredients = computed(() =>
@@ -487,25 +477,13 @@ async function loadBrand() {
} catch {
brand.value = {}
}
// Prompt QR upload: logged-in users once per month, anonymous every time
// Show upload prompt if user hasn't set up brand assets yet
if (showBrandHint.value) {
let shouldPrompt = true
if (authStore.isLoggedIn) {
const lastPrompt = localStorage.getItem('qr_upload_prompt_time')
const oneMonth = 30 * 24 * 60 * 60 * 1000
if (lastPrompt && Date.now() - Number(lastPrompt) < oneMonth) {
shouldPrompt = false
} else {
localStorage.setItem('qr_upload_prompt_time', String(Date.now()))
}
}
if (shouldPrompt) {
const ok = await showConfirm(
'上传你的专属二维码,让配方卡片更专业 ✨',
{ okText: '去上传', cancelText: '下次再说' }
)
if (ok) goUploadQr()
}
const ok = await showConfirm(
'上传你的专属二维码,让配方卡片更专业 ✨',
{ okText: '去上传', cancelText: '取消' }
)
if (ok) goUploadQr()
}
}
@@ -566,14 +544,11 @@ async function saveImage() {
await generateCardImage()
}
if (!cardImageUrl.value) return
const filename = `${recipe.value.name || '配方'}_配方卡`
try {
const { saveImageFromUrl } = await import('../composables/useSaveImage')
await saveImageFromUrl(cardImageUrl.value, filename)
ui.showToast('已保存图片')
} catch {
ui.showToast('保存失败')
}
const link = document.createElement('a')
link.download = `${recipe.value.name || '配方'}_配方卡.png`
link.href = cardImageUrl.value
link.click()
ui.showToast('已保存图片')
}
function copyText() {
@@ -584,12 +559,12 @@ function copyText() {
})
const total = priceInfo.value.cost
const text = [
displayRecipe.value.name,
recipe.value.name,
'---',
...lines,
'---',
`总成本: ${total}`,
displayRecipe.value.note ? `备注: ${displayRecipe.value.note}` : '',
recipe.value.note ? `备注: ${recipe.value.note}` : '',
].filter(Boolean).join('\n')
navigator.clipboard.writeText(text).then(() => {
@@ -599,92 +574,38 @@ function copyText() {
})
}
function openTranslationEditor() {
// Pre-populate from single source of truth: oilsMeta.enName (DB)
const map = {}
for (const ing of cardIngredients.value) {
map[ing.oil] = getOilEnglish(ing.oil)
}
customOilNameEn.value = map
customRecipeNameEn.value = recipe.value.en_name || ''
showTranslationEditor.value = true
}
async function applyTranslation() {
showTranslationEditor.value = false
let saved = 0
let failed = 0
// 1. Save recipe English name to recipes table
if (recipe.value._id && customRecipeNameEn.value.trim()) {
// Persist en_name and en_oils to backend
if (recipe.value._id) {
try {
await api.put(`/api/recipes/${recipe.value._id}`, {
en_name: customRecipeNameEn.value.trim(),
en_name: customRecipeNameEn.value,
en_oils: JSON.stringify(customOilNameEn.value),
version: recipe.value._version,
})
saved++
ui.showToast('翻译已保存')
} catch (e) {
console.error('Save recipe en_name failed:', e)
failed++
ui.showToast('翻译保存失败')
}
}
// 2. Save each oil's English name to oils table
// This is THE single source of truth — both oil reference page and recipe card read from here
for (const [oilName, enName] of Object.entries(customOilNameEn.value)) {
if (!enName?.trim()) continue
const meta = oilsStore.oilsMeta[oilName]
if (!meta) continue
if (meta.enName === enName.trim()) continue // no change
try {
await oilsStore.saveOil(oilName, meta.bottlePrice, meta.dropCount, meta.retailPrice, enName.trim())
saved++
} catch (e) {
console.error('Save oil en_name failed:', oilName, e)
failed++
}
}
// 3. Reload ALL data — this updates oilsMeta.enName and recipe.en_name
// So the next render reads fresh data from the single source
await Promise.all([
oilsStore.loadOils(),
recipesStore.loadRecipes(),
])
if (saved > 0) {
ui.showToast(`翻译已保存(${saved}项)` + (failed > 0 ? `${failed}项失败` : ''))
} else if (failed > 0) {
ui.showToast(`保存失败 ${failed}`)
} else {
ui.showToast('没有修改')
}
// Regenerate card image with updated names from store
cardImageUrl.value = null
nextTick(() => generateCardImage())
}
// Override translation getters for card rendering
function getOilEnglish(name) {
return oilsStore.oilsMeta[name]?.enName || oilEn(name) || ''
}
function getCardOilName(name) {
if (cardLang.value === 'en') {
// During editing, use customOilNameEn; otherwise read from store (single source of truth)
if (showTranslationEditor.value && customOilNameEn.value[name]) {
return customOilNameEn.value[name]
}
return getOilEnglish(name) || name
return customOilNameEn.value[name] || oilEn(name) || name
}
return name
}
function getCardRecipeName() {
if (cardLang.value === 'en') {
return customRecipeNameEn.value || displayRecipe.value.en_name || recipeNameEn(displayRecipe.value.name)
return customRecipeNameEn.value || recipe.value.en_name || recipeNameEn(recipe.value.name)
}
return displayRecipe.value.name
return recipe.value.name
}
// ---- Favorite ----
@@ -713,35 +634,17 @@ async function saveToDiary() {
return
}
const name = await showPrompt('保存为我的配方,名称:', recipe.value.name)
if (name === null) return
if (!name.trim()) {
ui.showToast('请输入配方名称')
return
}
const trimmed = name.trim()
const dupDiary = diaryStore.userDiary.some(d => d.name === trimmed)
const dupPublic = recipesStore.recipes.some(r => r.name === trimmed)
if (dupDiary) {
ui.showToast('我的配方中已有同名配方「' + trimmed + '」')
return
}
if (dupPublic) {
ui.showToast('公共配方库中已有同名配方「' + trimmed + '」')
return
}
if (!name) return
try {
const payload = {
name: name.trim(),
note: recipe.value.note || '',
ingredients: recipe.value.ingredients.map(i => ({ oil: i.oil, drops: i.drops })),
tags: recipe.value.tags || [],
await api.post('/api/diary', {
name,
source_recipe_id: recipe.value._id || null,
}
await diaryStore.createDiary(payload)
ui.showToast('已保存!可在「配方查询 → 我的配方」查看')
ingredients: recipe.value.ingredients.map(i => ({ oil: i.oil, drops: i.drops })),
note: recipe.value.note || '',
})
ui.showToast('已保存到「我的配方日记」')
} catch (e) {
console.error('[saveToDiary] failed:', e)
ui.showToast('保存失败:' + (e?.message || e?.status || '未知错误'), 3000)
ui.showToast('保存失败: ' + (e?.message || '未知错误'))
}
}
@@ -755,36 +658,6 @@ const newIngOil = ref('')
const newIngDrops = ref(1)
const newTagInput = ref('')
// Oil autocomplete for add-ingredient row
const oilSearchQuery = ref('')
const showOilDropdown = ref(false)
const filteredOilsForAdd = computed(() => {
const q = oilSearchQuery.value.trim().toLowerCase()
if (!q) return oilsStore.oilNames
return oilsStore.oilNames.filter(n => {
const en = oilEn(n).toLowerCase()
return n.includes(q) || en.startsWith(q) || en.includes(q) || matchesPinyinInitials(n, q)
})
})
function selectNewOil(name) {
newIngOil.value = name
oilSearchQuery.value = name
showOilDropdown.value = false
}
function closeOilDropdown() {
setTimeout(() => { showOilDropdown.value = false }, 150)
}
function cancelAddRow() {
showAddRow.value = false
newIngOil.value = ''
oilSearchQuery.value = ''
newIngDrops.value = 1
}
// Volume & dilution
const selectedVolume = ref('single')
const customVolumeValue = ref(100)
@@ -836,9 +709,10 @@ onMounted(() => {
editIngredients.value = (r.ingredients || []).map(i => ({ oil: i.oil, drops: i.drops }))
// Init translation defaults
customRecipeNameEn.value = r.en_name || recipeNameEn(r.name)
const savedOilMap = r.en_oils ? (() => { try { return JSON.parse(r.en_oils) } catch { return {} } })() : {}
const enMap = {}
;(r.ingredients || []).forEach(ing => {
enMap[ing.oil] = oilEn(ing.oil) || ing.oil
enMap[ing.oil] = savedOilMap[ing.oil] || oilEn(ing.oil) || ing.oil
})
customOilNameEn.value = enMap
@@ -865,7 +739,6 @@ function confirmAddIngredient() {
}
editIngredients.value.push({ oil: newIngOil.value, drops: newIngDrops.value })
newIngOil.value = ''
oilSearchQuery.value = ''
newIngDrops.value = 1
showAddRow.value = false
}
@@ -958,44 +831,9 @@ function setCoconutDrops(drops) {
}
}
// Handle close from card view — if previewing unsaved data, ask user
async function handleClose() {
if (previewOverride.value !== null) {
const save = await showConfirm('还有未保存的修改,是否保存?', { okText: '保存', cancelText: '不保存' })
if (save) {
viewMode.value = 'editor'
await nextTick()
await saveRecipe()
return
}
previewOverride.value = null
}
emit('close')
}
// Handle close from editor view
async function handleEditorClose() {
if (previewOverride.value !== null) {
// Came from preview, back to preview without saving
previewOverride.value = null
viewMode.value = 'card'
cardImageUrl.value = null
nextTick(() => generateCardImage())
return
}
emit('close')
}
function previewFromEditor() {
// Capture current editor state and show it in card view
previewOverride.value = {
name: editName.value.trim() || recipe.value.name,
note: editNote.value.trim(),
tags: [...editTags.value],
ingredients: editIngredients.value
.filter(i => i.oil && i.drops > 0)
.map(i => ({ oil: i.oil, drops: i.drops })),
}
// Temporarily update recipe view with editor data, switch to card
// We just switch to card mode; the card shows the saved recipe
viewMode.value = 'card'
cardImageUrl.value = null
nextTick(() => generateCardImage())
@@ -1024,11 +862,7 @@ async function saveRecipe() {
// Reload recipes so the data is fresh when re-opened
await recipesStore.loadRecipes()
ui.showToast('保存成功')
// Go to card view instead of closing
previewOverride.value = null
viewMode.value = 'card'
cardImageUrl.value = null
nextTick(() => generateCardImage())
emit('close')
} catch (e) {
ui.showToast('保存失败: ' + (e?.message || '未知错误'))
}
@@ -1155,106 +989,9 @@ async function saveRecipe() {
border-radius: 50%;
}
/* ===== Export Card Content (responsive) ===== */
.ec-subtitle {
font-size: 11px;
letter-spacing: 3px;
color: var(--sage);
margin-bottom: 8px;
white-space: nowrap;
}
.ec-title {
font-size: 26px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 6px;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: calc(100% - 80px); /* leave room for QR */
}
.ec-ing {
display: flex;
align-items: center;
padding: 9px 0;
border-bottom: 1px solid rgba(180,150,100,0.15);
font-size: 14px;
}
.ec-oil-name {
flex: 1;
color: var(--text-dark);
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
.ec-drops {
width: 50px;
text-align: right;
color: var(--sage-dark);
font-size: 13px;
white-space: nowrap;
flex-shrink: 0;
}
.ec-cost {
width: 60px;
text-align: right;
color: var(--text-light);
font-size: 12px;
white-space: nowrap;
flex-shrink: 0;
}
.ec-retail {
width: 55px;
text-align: right;
color: var(--text-light);
font-size: 10px;
text-decoration: line-through;
white-space: nowrap;
flex-shrink: 0;
}
.ec-total-bar {
background: linear-gradient(135deg, var(--sage), #5a7d5e);
border-radius: 12px;
padding: 10px 16px;
display: flex;
justify-content: space-between;
align-items: center;
white-space: nowrap;
}
.ec-bottom {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 12px;
}
.ec-logo {
height: 36px;
object-fit: contain;
opacity: 1;
}
.ec-date {
font-size: 11px;
color: var(--text-light);
letter-spacing: 1px;
}
/* Mobile: smaller card text */
@media (max-width: 420px) {
.export-card { padding: 24px; }
.ec-subtitle { font-size: 9px; letter-spacing: 2px; }
.ec-title { font-size: 20px; max-width: calc(100% - 65px); }
.ec-ing { font-size: 12px; padding: 7px 0; }
.ec-drops { width: 42px; font-size: 11px; }
.ec-cost { width: 50px; font-size: 10px; }
.ec-retail { width: 45px; font-size: 9px; }
.ec-total-bar { padding: 10px 14px; }
.ec-total-bar span:first-child { font-size: 11px; }
.ec-total-bar span:last-child { font-size: 16px; }
.ec-date { font-size: 9px; }
.ec-logo { height: 28px; }
.card-content {
position: relative;
z-index: 2;
}
/* Brand overlays */
@@ -1274,12 +1011,12 @@ async function saveRecipe() {
.card-qr-wrapper {
position: absolute;
top: 36px;
right: 36px;
right: 24px;
display: flex;
flex-direction: column;
align-items: center;
gap: 3px;
z-index: 3;
z-index: 2;
}
.card-qr {
@@ -1300,20 +1037,15 @@ async function saveRecipe() {
}
.card-logo {
height: 28px;
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%);
height: 60px;
object-fit: contain;
opacity: 0.6;
}
.card-logo-placeholder {
/* keeps footer right-aligned even without logo */
}
.card-bottom-row {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-top: 16px;
margin-right: -80px; /* counteract card-content padding-right to span full width */
padding-right: 0;
z-index: 1;
opacity: 0.2;
pointer-events: none;
}
.card-brand-text {
@@ -1412,7 +1144,6 @@ async function saveRecipe() {
justify-content: space-between;
align-items: center;
margin-top: 8px;
margin-right: -80px; /* counteract card-content padding-right */
}
.card-total-label {
@@ -1437,7 +1168,8 @@ async function saveRecipe() {
}
.card-footer {
text-align: right;
margin-top: 16px;
text-align: center;
font-size: 11px;
color: var(--text-light, #9a8570);
letter-spacing: 1px;
@@ -1953,70 +1685,6 @@ async function saveRecipe() {
cursor: not-allowed;
}
/* Card volume toggle */
.card-volume-toggle {
display: flex;
gap: 6px;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 12px;
}
/* Oil autocomplete */
.oil-autocomplete {
position: relative;
flex: 1;
min-width: 140px;
}
.oil-search-input {
width: 100%;
box-sizing: border-box;
}
.oil-dropdown {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
border: 1.5px solid var(--sage, #7a9e7e);
border-radius: 10px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
max-height: 220px;
overflow-y: auto;
z-index: 100;
margin-top: 4px;
}
.oil-dropdown-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 9px 14px;
cursor: pointer;
font-size: 13px;
color: var(--text-dark, #2c2416);
border-bottom: 1px solid var(--border, #e0d4c0);
transition: background 0.1s;
}
.oil-dropdown-item:last-child {
border-bottom: none;
}
.oil-dropdown-item:hover,
.oil-dropdown-item.is-selected {
background: var(--sage-mist, #eef4ee);
}
.oil-dropdown-en {
font-size: 11px;
color: var(--text-light, #9a8570);
margin-left: 8px;
white-space: nowrap;
}
/* Responsive */
@media (max-width: 600px) {
.detail-panel {

View File

@@ -28,17 +28,7 @@
<div class="notif-list">
<div v-for="n in notifications.slice(0, 20)" :key="n.id"
class="notif-item" :class="{ unread: !n.is_read }">
<div class="notif-item-header">
<div class="notif-title">{{ n.title }}</div>
<div v-if="!n.is_read" class="notif-actions">
<!-- 搜索未收录通知已添加按钮 -->
<button v-if="isSearchMissing(n)" class="notif-action-btn notif-btn-added" @click="markAdded(n)">已添加</button>
<!-- 审核类通知去审核按钮 -->
<button v-else-if="isReviewable(n)" class="notif-action-btn notif-btn-review" @click="goReview(n)">去审核</button>
<!-- 默认已读按钮 -->
<button v-else class="notif-mark-one" @click="markOneRead(n)">已读</button>
</div>
</div>
<div class="notif-title">{{ n.title }}</div>
<div v-if="n.body" class="notif-body">{{ n.body }}</div>
<div class="notif-time">{{ formatTime(n.created_at) }}</div>
</div>
@@ -115,36 +105,6 @@ async function submitBug() {
}
}
function isSearchMissing(n) {
return n.title && n.title.includes('用户需求')
}
function isReviewable(n) {
if (!n.title) return false
return n.title.includes('待审核') || n.title.includes('商业认证') || n.title.includes('申请')
}
async function markAdded(n) {
await markOneRead(n)
}
function goReview(n) {
markOneRead(n)
emit('close')
if (n.title.includes('配方')) {
router.push('/manage')
} else if (n.title.includes('商业认证') || n.title.includes('申请')) {
router.push('/users')
}
}
async function markOneRead(n) {
try {
await api(`/api/notifications/${n.id}/read`, { method: 'POST', body: '{}' })
n.is_read = 1
} catch {}
}
async function markAllRead() {
try {
await api('/api/notifications/read-all', { method: 'POST', body: '{}' })
@@ -163,7 +123,7 @@ function handleLogout() {
auth.logout()
ui.showToast('已退出登录')
emit('close')
window.location.href = '/'
router.push('/')
}
onMounted(loadNotifications)
@@ -227,24 +187,7 @@ onMounted(loadNotifications)
padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px;
}
.notif-item.unread { background: #fafafa; }
.notif-item-header { display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.notif-title { font-weight: 500; color: #333; flex: 1; }
.notif-mark-one {
background: none; border: 1px solid #ccc; border-radius: 6px;
font-size: 11px; color: #7a9e7e; cursor: pointer; padding: 2px 8px;
font-family: inherit; white-space: nowrap; flex-shrink: 0;
}
.notif-mark-one:hover { background: #f0faf5; border-color: #7a9e7e; }
.notif-actions { display: flex; gap: 4px; flex-shrink: 0; }
.notif-action-btn {
background: none; border: 1px solid #ccc; border-radius: 6px;
font-size: 11px; cursor: pointer; padding: 2px 8px;
font-family: inherit; white-space: nowrap;
}
.notif-btn-added { color: #4a9d7e; border-color: #7ec6a4; }
.notif-btn-added:hover { background: #e8f5e9; }
.notif-btn-review { color: #e65100; border-color: #ffb74d; }
.notif-btn-review:hover { background: #fff3e0; }
.notif-title { font-weight: 500; color: #333; }
.notif-body { color: #888; font-size: 12px; margin-top: 2px; white-space: pre-line; }
.notif-time { color: #bbb; font-size: 11px; margin-top: 2px; }
.notif-empty { text-align: center; color: #ccc; padding: 16px; font-size: 13px; }

View File

@@ -39,11 +39,3 @@ export function getOilCard(name) {
if (base !== name && OIL_CARDS[base]) return OIL_CARDS[base]
return null
}
export function setOilCard(name, card) {
if (card && (card.effects || card.usage)) {
OIL_CARDS[name] = card
} else {
delete OIL_CARDS[name]
}
}

View File

@@ -14,27 +14,14 @@ const OIL_EN = {
'柠檬草': 'Lemongrass', '杜松浆果': 'Juniper Berry', '甜橙': 'Wild Orange',
'香茅': 'Citronella', '薄荷': 'Peppermint', '扁柏': 'Arborvitae',
'古巴香脂': 'Copaiba', '椰子油': 'Coconut Oil',
'芳香调理': 'AromaTouch', '保卫复方': 'On Guard', '保卫': 'On Guard',
'乐活复方': 'Balance', '乐活': 'DigestZen',
'舒缓复方': 'Past Tense', '舒缓': 'Deep Blue',
'净化复方': 'Purify', '净化清新': 'Purify',
'呼吸复方': 'Breathe', '顺畅呼吸': 'Breathe',
'舒压复方': 'Adaptiv', '安定情绪': 'Balance',
'安宁神气': 'Serenity', '多特瑞': 'doTERRA',
'野橘': 'Wild Orange', '柑橘清新': 'Citrus Bliss',
'新瑞活力': 'MetaPWR', '元气': 'Zendocrine',
'温柔呵护': 'ClaryCalm', '西洋蓍草': 'Yarrow|Pom',
'西班牙牛至': 'Oregano',
'芳香调理': 'AromaTouch', '保卫复方': 'On Guard',
'乐活复方': 'Balance', '舒缓复方': 'Past Tense',
'净化复方': 'Purify', '呼吸复方': 'Breathe',
'舒压复方': 'Adaptiv', '多特瑞': 'doTERRA',
}
export function oilEn(name) {
if (OIL_EN[name]) return OIL_EN[name]
// Try without common suffixes
const base = name.replace(/复方$|呵护$/, '')
if (base !== name && OIL_EN[base]) return OIL_EN[base]
// Try adding suffixes
if (OIL_EN[name + '复方']) return OIL_EN[name + '复方']
return ''
return OIL_EN[name] || ''
}
export function recipeNameEn(name) {

View File

@@ -1,73 +0,0 @@
/**
* Simple pinyin initial matching for Chinese oil names.
* Maps common Chinese characters used in essential oil names to their pinyin initials.
* This is a lightweight approach - no full pinyin library needed.
*/
// Common characters in essential oil / herb names mapped to pinyin initials
const PINYIN_MAP = {
'薰': 'x', '衣': 'y', '草': 'c', '茶': 'c', '树': 's',
'柠': 'n', '檬': 'm', '薄': 'b', '荷': 'h', '迷': 'm',
'迭': 'd', '香': 'x', '乳': 'r', '沉': 'c', '丝': 's',
'柏': 'b', '尤': 'y', '加': 'j', '利': 'l', '丁': 'd',
'肉': 'r', '桂': 'g', '罗': 'l', '勒': 'l', '百': 'b',
'里': 'l', '牛': 'n', '至': 'z', '马': 'm', '鞭': 'b',
'天': 't', '竺': 'z', '葵': 'k', '生': 's', '姜': 'j',
'黑': 'h', '胡': 'h', '椒': 'j', '玫': 'm', '瑰': 'g',
'茉': 'm', '莉': 'l', '依': 'y', '兰': 'l', '花': 'h',
'橙': 'c', '佛': 'f', '手': 's', '柑': 'g', '葡': 'p',
'萄': 't', '柚': 'y', '甜': 't', '苦': 'k', '野': 'y',
'山': 's', '松': 's', '杉': 's', '杜': 'd', '雪': 'x',
'莲': 'l', '芦': 'l', '荟': 'h', '白': 'b', '芷': 'z',
'当': 'd', '归': 'g', '川': 'c', '芎': 'x', '红': 'h',
'枣': 'z', '枸': 'g', '杞': 'q', '菊': 'j', '洋': 'y',
'甘': 'g', '菘': 's', '蓝': 'l', '永': 'y', '久': 'j',
'快': 'k', '乐': 'l', '鼠': 's', '尾': 'w', '岩': 'y',
'冷': 'l', '杰': 'j', '绿': 'lv', '芫': 'y', '荽': 's',
'椰': 'y', '子': 'z', '油': 'y', '基': 'j', '底': 'd',
'精': 'j', '纯': 'c', '露': 'l', '木': 'm', '果': 'g',
'叶': 'y', '根': 'g', '皮': 'p', '籽': 'z', '仁': 'r',
'大': 'd', '小': 'x', '西': 'x', '东': 'd', '南': 'n',
'北': 'b', '中': 'z', '新': 'x', '古': 'g', '老': 'l',
'春': 'c', '夏': 'x', '秋': 'q', '冬': 'd', '温': 'w',
'热': 'r', '凉': 'l', '冰': 'b', '火': 'h', '水': 's',
'金': 'j', '银': 'y', '铜': 't', '铁': 't', '玉': 'y',
'珍': 'z', '珠': 'z', '翠': 'c', '碧': 'b', '紫': 'z',
'青': 'q', '蓝': 'l', '绿': 'lv', '黄': 'h', '棕': 'z',
'褐': 'h', '灰': 'h', '粉': 'f', '豆': 'd', '蔻': 'k',
'藿': 'h', '苏': 's', '萃': 'c', '缬': 'x', '安': 'a',
'息': 'x', '宁': 'n', '静': 'j', '和': 'h', '平': 'p',
'舒': 's', '缓': 'h', '放': 'f', '松': 's', '活': 'h',
'力': 'l', '能': 'n', '量': 'l', '保': 'b', '护': 'h',
'防': 'f', '御': 'y', '健': 'j', '康': 'k', '美': 'm',
'丽': 'l', '清': 'q', '新': 'x', '自': 'z', '然': 'r',
'植': 'z', '物': 'w', '芳': 'f', '疗': 'l', '复': 'f',
'方': 'f', '单': 'd', '配': 'p', '调': 'd',
}
/**
* Get pinyin initials string for a Chinese name.
* e.g. "薰衣草" -> "xyc"
*/
export function getPinyinInitials(name) {
let result = ''
for (const char of name) {
const initial = PINYIN_MAP[char]
if (initial) {
result += initial
}
}
return result
}
/**
* Check if a query matches a name by pinyin initials.
* The query is matched as a prefix or substring of the pinyin initials.
*/
export function matchesPinyinInitials(name, query) {
if (!query || !name) return false
const initials = getPinyinInitials(name)
if (!initials) return false
const q = query.toLowerCase()
return initials.includes(q)
}

View File

@@ -1,38 +0,0 @@
/**
* Save image — on mobile use navigator.share (same as recipe card),
* on desktop trigger download.
*/
const isMobile = () => /iPhone|iPad|iPod|Android/i.test(navigator.userAgent)
/**
* Save from a data URL.
* Mobile: navigator.share({files}) → system share sheet (save to photos / AirDrop etc)
* Desktop: download link.
*/
export async function saveImageFromUrl(dataUrl, filename) {
// Try navigator.share with files (works on iOS Safari, Chrome mobile)
if (navigator.share && navigator.canShare) {
try {
const res = await fetch(dataUrl)
const blob = await res.blob()
const file = new File([blob], filename + '.png', { type: 'image/png' })
if (navigator.canShare({ files: [file] })) {
await navigator.share({ files: [file] })
return 'shared'
}
} catch (e) {
// User cancelled share or share failed, fall through to download
if (e.name === 'AbortError') return 'cancelled'
}
}
// Fallback: direct download
const a = document.createElement('a')
a.href = dataUrl
a.download = filename + '.png'
document.body.appendChild(a)
a.click()
setTimeout(() => a.remove(), 100)
return 'downloaded'
}

View File

@@ -260,99 +260,3 @@ export function parseSingleBlock(raw, oilNames) {
notFound
}
}
/**
* Parse multi-recipe text. Each time an unrecognized non-number token
* appears after some oils have been found, it starts a new recipe.
*/
export function parseMultiRecipes(raw, oilNames) {
// First split by lines/commas, then within each part also try space splitting
const roughParts = raw.split(/[,,、\n\r]+/).map(s => s.trim()).filter(s => s)
const parts = []
for (const rp of roughParts) {
// If the part has spaces and contains mixed name+oil, split by spaces too
// But only if spaces actually separate meaningful chunks
const spaceParts = rp.split(/\s+/).filter(s => s)
if (spaceParts.length > 1) {
parts.push(...spaceParts)
} else {
// No spaces or single chunk — try to separate name prefix from oil+number
// e.g. "长高芳香调理8" → check if any oil is inside
const hasOilInside = oilNames.some(oil => rp.includes(oil))
if (hasOilInside && rp.length > 2) {
// Find the earliest oil match position
let earliest = rp.length
let earliestOil = ''
for (const oil of oilNames) {
const pos = rp.indexOf(oil)
if (pos >= 0 && pos < earliest) {
earliest = pos
earliestOil = oil
}
}
if (earliest > 0) {
parts.push(rp.substring(0, earliest))
parts.push(rp.substring(earliest))
} else {
parts.push(rp)
}
} else {
parts.push(rp)
}
}
}
const recipes = []
let current = { nameParts: [], ingredientParts: [], foundOil: false }
for (const part of parts) {
const hasNumber = /\d/.test(part)
const hasOil = oilNames.some(oil => part.includes(oil)) ||
Object.keys(OIL_HOMOPHONES).some(alias => part.includes(alias))
// Also check fuzzy: 3+ char parts
const fuzzyOil = !hasOil && part.replace(/\d+\.?\d*/g, '').length >= 2 &&
findOil(part.replace(/\d+\.?\d*/g, '').trim(), oilNames)
if (current.foundOil && !hasOil && !fuzzyOil && !hasNumber && part.length >= 2) {
// New recipe starts
recipes.push(current)
current = { nameParts: [], ingredientParts: [], foundOil: false }
current.nameParts.push(part)
} else if (!current.foundOil && !hasOil && !fuzzyOil && !hasNumber) {
current.nameParts.push(part)
} else {
current.foundOil = true
current.ingredientParts.push(part)
}
}
recipes.push(current)
// Convert each block to parsed recipe
return recipes.filter(r => r.ingredientParts.length > 0 || r.nameParts.length > 0).map(r => {
const allIngs = []
const notFound = []
for (const p of r.ingredientParts) {
const parsed = parseOilChunk(p, oilNames)
for (const item of parsed) {
if (item.notFound) notFound.push(item.oil)
else allIngs.push(item)
}
}
// Deduplicate
const deduped = []
const seen = {}
for (const item of allIngs) {
if (seen[item.oil] !== undefined) {
deduped[seen[item.oil]].drops += item.drops
} else {
seen[item.oil] = deduped.length
deduped.push({ ...item })
}
}
return {
name: r.nameParts.join(' ') || '未命名配方',
ingredients: deduped,
notFound,
}
})
}

View File

@@ -10,13 +10,11 @@ const routes = [
path: '/manage',
name: 'RecipeManager',
component: () => import('../views/RecipeManager.vue'),
meta: { requiresAuth: true },
},
{
path: '/inventory',
name: 'Inventory',
component: () => import('../views/Inventory.vue'),
meta: { requiresAuth: true },
},
{
path: '/oils',
@@ -27,31 +25,26 @@ const routes = [
path: '/projects',
name: 'Projects',
component: () => import('../views/Projects.vue'),
meta: { requiresAuth: true },
},
{
path: '/mydiary',
name: 'MyDiary',
component: () => import('../views/MyDiary.vue'),
meta: { requiresAuth: true },
},
{
path: '/audit',
name: 'AuditLog',
component: () => import('../views/AuditLog.vue'),
meta: { requiresAuth: true },
},
{
path: '/bugs',
name: 'BugTracker',
component: () => import('../views/BugTracker.vue'),
meta: { requiresAuth: true },
},
{
path: '/users',
name: 'UserManagement',
component: () => import('../views/UserManagement.vue'),
meta: { requiresAuth: true },
},
]

View File

@@ -28,6 +28,16 @@ export const useAuthStore = defineStore('auth', () => {
// Actions
async function initToken() {
const params = new URLSearchParams(window.location.search)
const urlToken = params.get('token')
if (urlToken) {
token.value = urlToken
localStorage.setItem('oil_auth_token', urlToken)
// Clean URL
const url = new URL(window.location)
url.searchParams.delete('token')
window.history.replaceState({}, '', url)
}
if (token.value) {
await loadMe()
}
@@ -75,7 +85,7 @@ export const useAuthStore = defineStore('auth', () => {
function canEditRecipe(recipe) {
if (isAdmin.value || user.value.role === 'senior_editor') return true
if (canEdit.value && recipe._owner_id === user.value.id) return true
if (recipe._owner_id === user.value.id) return true
return false
}

View File

@@ -68,21 +68,19 @@ export const useOilsStore = defineStore('oils', () => {
bottlePrice: oil.bottle_price,
dropCount: oil.drop_count,
retailPrice: oil.retail_price ?? null,
isActive: oil.is_active !== 0,
enName: oil.en_name ?? null,
isActive: oil.is_active ?? true,
}
}
oils.value = newOils
oilsMeta.value = newMeta
}
async function saveOil(name, bottlePrice, dropCount, retailPrice, enName = null) {
async function saveOil(name, bottlePrice, dropCount, retailPrice) {
await api.post('/api/oils', {
name,
bottle_price: bottlePrice,
drop_count: dropCount,
retail_price: retailPrice,
en_name: enName,
})
await loadOils()
}

View File

@@ -17,6 +17,7 @@ export const useRecipesStore = defineStore('recipes', () => {
_version: r._version ?? r.version ?? 1,
name: r.name,
en_name: r.en_name ?? '',
en_oils: r.en_oils ?? '{}',
note: r.note ?? '',
tags: r.tags ?? [],
ingredients: (r.ingredients ?? []).map((ing) => ({
@@ -53,12 +54,7 @@ export const useRecipesStore = defineStore('recipes', () => {
return data
} else {
const data = await api.post('/api/recipes', recipe)
// Refresh list; if refresh fails, still return success (recipe was saved)
try {
await loadRecipes()
} catch (e) {
console.warn('[saveRecipe] loadRecipes failed after save:', e)
}
await loadRecipes()
return data
}
}

View File

@@ -2,8 +2,8 @@
<div class="my-diary">
<!-- Sub Tabs -->
<div class="sub-tabs">
<button class="sub-tab" :class="{ active: activeTab === 'brand' }" @click="activeTab = 'brand'">🏷 我的品牌</button>
<button class="sub-tab" :class="{ active: activeTab === 'account' }" @click="activeTab = 'account'">👤 我的账户</button>
<button class="sub-tab" :class="{ active: activeTab === 'brand' }" @click="activeTab = 'brand'">🏷 Brand</button>
<button class="sub-tab" :class="{ active: activeTab === 'account' }" @click="activeTab = 'account'">👤 Account</button>
</div>
<!-- Diary Tab -->
@@ -113,94 +113,47 @@
<button class="btn-return" @click="goBackToRecipe"> 返回配方卡片</button>
</div>
<div class="section-card">
<p style="font-size:13px;color:var(--text-light);margin-bottom:16px">分享配方卡片时二维码背景图Logo 会自动展示在卡片上</p>
<h4>🏷 品牌设置</h4>
<!-- Three upload areas side by side -->
<div style="display:flex;gap:20px;flex-wrap:wrap;margin-bottom:16px">
<!-- QR Code -->
<div>
<label class="form-label">📱 二维码</label>
<p style="font-size:11px;color:var(--text-light);margin-bottom:6px">卡片右上角展示</p>
<div class="upload-box" @click="triggerUpload('qr')">
<img v-if="brandQrImage" :src="brandQrImage" class="upload-box-img" />
<span v-else class="upload-box-hint">点击上传</span>
</div>
<input ref="qrInput" type="file" accept="image/*" style="display:none" @change="handleUpload('qr', $event)" />
<button v-if="brandQrImage" class="btn-clear" @click="clearBrandImage('qr')">清除</button>
</div>
<!-- Background -->
<div>
<label class="form-label">🖼 背景图</label>
<p style="font-size:11px;color:var(--text-light);margin-bottom:6px">铺满整张卡片半透明</p>
<div class="upload-box" @click="triggerUpload('bg')">
<img v-if="brandBg" :src="brandBg" class="upload-box-img" />
<span v-else class="upload-box-hint">点击上传</span>
</div>
<input ref="bgInput" type="file" accept="image/*" style="display:none" @change="handleUpload('bg', $event)" />
<button v-if="brandBg" class="btn-clear" @click="clearBrandImage('bg')">清除</button>
</div>
<!-- Logo -->
<div>
<label class="form-label">🏷 Logo</label>
<p style="font-size:11px;color:var(--text-light);margin-bottom:6px">卡片左下角水印</p>
<div class="upload-box" @click="triggerUpload('logo')">
<img v-if="brandLogo" :src="brandLogo" class="upload-box-img" />
<span v-else class="upload-box-hint">点击上传</span>
</div>
<input ref="logoInput" type="file" accept="image/*" style="display:none" @change="handleUpload('logo', $event)" />
<button v-if="brandLogo" class="btn-clear" @click="clearBrandImage('logo')">清除</button>
</div>
</div>
<!-- Brand name -->
<div class="form-group">
<label class="form-label">品牌名称或标语显示在二维码下方</label>
<textarea v-model="brandName" class="form-control" rows="2" placeholder="扫码申请成为优惠顾客&#10;我的精油小屋" style="max-width:350px;font-size:13px" @blur="saveBrandSettings"></textarea>
<div style="display:flex;gap:6px;margin-top:6px">
<button class="btn-align" :class="{ active: brandAlign === 'left' }" @click="brandAlign='left'; saveBrandSettings()">靠左</button>
<button class="btn-align" :class="{ active: brandAlign === 'center' }" @click="brandAlign='center'; saveBrandSettings()">居中</button>
<button class="btn-align" :class="{ active: brandAlign === 'right' }" @click="brandAlign='right'; saveBrandSettings()">靠右</button>
<label>品牌名称</label>
<input v-model="brandName" class="form-input" placeholder="您的品牌名称" @blur="saveBrandSettings" />
</div>
<div class="form-group">
<label>二维码链接</label>
<input v-model="brandQrUrl" class="form-input" placeholder="https://..." @blur="saveBrandSettings" />
<div v-if="brandQrUrl" class="qr-preview">
<img :src="'https://api.qrserver.com/v1/create-qr-code/?size=120x120&data=' + encodeURIComponent(brandQrUrl)" alt="QR" class="qr-img" />
</div>
</div>
<!-- Card Preview -->
<div style="margin-bottom:16px">
<label class="form-label">📋 配方卡片预览</label>
<div class="card-preview-mini">
<!-- Background overlay -->
<div v-if="brandBg" style="position:absolute;inset:0;background-size:cover;background-position:center;opacity:0.12;pointer-events:none" :style="{ backgroundImage: 'url(' + brandBg + ')' }"></div>
<!-- Logo: shown in bottom row, not as watermark -->
<!-- QR: top-right -->
<div v-if="brandQrImage" style="position:absolute;top:16px;right:12px;display:flex;flex-direction:column;align-items:center;gap:2px;z-index:2">
<img :src="brandQrImage" style="width:36px;height:36px;object-fit:cover;border-radius:4px;box-shadow:0 1px 4px rgba(0,0,0,0.1)" />
<div v-if="brandName" :style="{ textAlign: brandAlign }" style="font-size:5px;color:var(--text-light);line-height:1.2;max-width:42px;white-space:pre-line">{{ brandName }}</div>
</div>
<!-- Content -->
<div style="position:relative;z-index:1">
<div style="font-size:7px;letter-spacing:1.5px;color:var(--sage);margin-bottom:3px">doTERRA · 来自大地的礼物</div>
<div style="font-size:13px;font-weight:700;color:var(--text-dark);margin-bottom:3px;line-height:1.3">配方名称</div>
<div style="width:30px;height:1px;background:linear-gradient(90deg,var(--sage),var(--gold));margin:6px 0"></div>
<div style="font-size:9px;color:var(--text-light);margin-bottom:6px">薰衣草 · 乳香 · 茶树</div>
<!-- Total cost bar -->
<div style="background:linear-gradient(135deg,var(--sage),#5a7d5e);border-radius:6px;padding:6px 10px;display:flex;justify-content:space-between;align-items:center">
<span style="color:rgba(255,255,255,0.85);font-size:8px;letter-spacing:0.5px">配方总成本</span>
<span style="color:white;font-size:12px;font-weight:700">¥12.50</span>
</div>
<!-- Logo left + Date right -->
<div style="display:flex;justify-content:space-between;align-items:flex-end;margin-top:8px">
<img v-if="brandLogo" :src="brandLogo" style="height:18px;object-fit:contain" />
<span v-else></span>
<span style="font-size:7px;color:var(--text-light);letter-spacing:0.5px">制作日期{{ new Date().toLocaleDateString('zh-CN') }}</span>
</div>
</div>
<div class="form-group">
<label>我的二维码图片</label>
<div class="upload-area" @click="triggerUpload('qr')">
<img v-if="brandQrImage" :src="brandQrImage" class="upload-preview qr-upload-preview" />
<span v-else class="upload-hint">📲 点击上传二维码图片</span>
</div>
<input ref="qrInput" type="file" accept="image/*" style="display:none" @change="handleUpload('qr', $event)" />
<div class="field-hint">上传后将显示在配方卡片右下角</div>
</div>
<div style="display:flex;gap:8px;align-items:center">
<button class="btn btn-primary" @click="saveBrandSettings">💾 保存品牌设置</button>
<button v-if="returnRecipeId" class="btn btn-outline" @click="goBackToRecipe"> 返回配方卡片</button>
<div class="form-group">
<label>品牌Logo</label>
<div class="upload-area" @click="triggerUpload('logo')">
<img v-if="brandLogo" :src="brandLogo" class="upload-preview" />
<span v-else class="upload-hint">点击上传Logo</span>
</div>
<input ref="logoInput" type="file" accept="image/*" style="display:none" @change="handleUpload('logo', $event)" />
</div>
<div class="form-group">
<label>卡片背景</label>
<div class="upload-area" @click="triggerUpload('bg')">
<img v-if="brandBg" :src="brandBg" class="upload-preview wide" />
<span v-else class="upload-hint">点击上传背景图</span>
</div>
<input ref="bgInput" type="file" accept="image/*" style="display:none" @change="handleUpload('bg', $event)" />
</div>
</div>
</div>
@@ -241,65 +194,26 @@
</div>
<!-- Business Verification -->
<div ref="bizCertRef" class="section-card">
<div v-if="!auth.isBusiness" class="section-card">
<h4>💼 商业认证</h4>
<!-- 已认证 -->
<div v-if="auth.isBusiness" class="biz-status biz-approved">
<div class="biz-status-icon"></div>
<div class="biz-status-text">已认证商业用户</div>
<p class="hint-text">申请商业认证后可使用商业核算功能</p>
<div class="form-group">
<label>申请说明</label>
<textarea v-model="businessReason" class="form-textarea" rows="3" placeholder="请说明您的申请理由..."></textarea>
</div>
<!-- 审核中 -->
<template v-else-if="bizApp.status === 'pending'">
<div class="biz-status biz-pending">
<div class="biz-status-icon"></div>
<div class="biz-status-text">认证申请审核中</div>
<div class="biz-status-detail">商户名{{ bizApp.business_name }}</div>
<div class="biz-status-detail">提交时间{{ formatDate(bizApp.created_at) }}</div>
</div>
</template>
<!-- 被拒绝可重新申请 -->
<template v-else-if="bizApp.status === 'rejected'">
<div class="biz-status biz-rejected">
<div class="biz-status-icon"></div>
<div class="biz-status-text">认证申请未通过</div>
<div v-if="bizApp.reject_reason" class="biz-reject-reason">原因{{ bizApp.reject_reason }}</div>
</div>
<p class="hint-text">你可以修改信息后重新申请</p>
<div class="form-group">
<label>商户名称</label>
<input v-model="businessName" class="form-input" placeholder="你的商户/品牌名称" />
</div>
<div class="form-group">
<label>申请说明</label>
<textarea v-model="businessReason" class="form-textarea" rows="3" placeholder="请说明您的业务情况和申请理由..."></textarea>
</div>
<button class="btn-primary" @click="applyBusiness" :disabled="!businessName.trim()">重新申请</button>
</template>
<!-- 首次申请 -->
<template v-else>
<p class="hint-text">申请商业认证后可使用商业核算功能请填写以下信息</p>
<div class="form-group">
<label>商户名称</label>
<input v-model="businessName" class="form-input" placeholder="你的商户/品牌名称" />
</div>
<div class="form-group">
<label>申请说明</label>
<textarea v-model="businessReason" class="form-textarea" rows="3" placeholder="请说明您的业务情况和申请理由..."></textarea>
</div>
<button class="btn-primary" @click="applyBusiness" :disabled="!businessName.trim()">提交申请</button>
</template>
<button class="btn-primary" @click="applyBusiness" :disabled="!businessReason.trim()">提交申请</button>
</div>
<div v-else class="section-card">
<h4>💼 商业认证</h4>
<div class="verified-badge"> 已认证商业用户</div>
</div>
</div>
</div>
</template>
<script setup>
import { ref, nextTick, onMounted, watch } from 'vue'
import { useRouter, useRoute } from 'vue-router'
import { ref, onMounted, watch } from 'vue'
import { useRouter } from 'vue-router'
import { useAuthStore } from '../stores/auth'
import { useOilsStore } from '../stores/oils'
import { useDiaryStore } from '../stores/diary'
@@ -313,10 +227,8 @@ const oils = useOilsStore()
const diaryStore = useDiaryStore()
const ui = useUiStore()
const router = useRouter()
const route = useRoute()
const bizCertRef = ref(null)
const activeTab = ref(route.query.tab || 'brand')
const activeTab = ref('brand')
const pasteText = ref('')
const selectedDiaryId = ref(null)
const returnRecipeId = ref(null)
@@ -329,7 +241,6 @@ const brandQrUrl = ref('')
const brandQrImage = ref('')
const brandLogo = ref('')
const brandBg = ref('')
const brandAlign = ref('center')
const logoInput = ref(null)
const bgInput = ref(null)
const qrInput = ref(null)
@@ -339,25 +250,13 @@ const displayName = ref('')
const oldPassword = ref('')
const newPassword = ref('')
const confirmPassword = ref('')
const businessName = ref('')
const businessReason = ref('')
const bizApp = ref({ status: null })
onMounted(async () => {
await diaryStore.loadDiary()
displayName.value = auth.user.display_name || ''
await loadBrandSettings()
returnRecipeId.value = localStorage.getItem('oil_return_recipe_id') || null
// Load business application status
try {
const bizRes = await api('/api/my-business-application')
if (bizRes.ok) bizApp.value = await bizRes.json()
} catch {}
// 从商业核算跳转过来,滚到商业认证区域
if (route.query.section === 'biz-cert') {
await nextTick()
bizCertRef.value?.scrollIntoView({ behavior: 'smooth', block: 'center' })
}
})
function goBackToRecipe() {
@@ -463,7 +362,6 @@ async function loadBrandSettings() {
brandQrImage.value = data.qr_code || ''
brandLogo.value = data.brand_logo || ''
brandBg.value = data.brand_bg || ''
brandAlign.value = data.brand_align || 'center'
}
} catch {
// no brand settings yet
@@ -472,16 +370,15 @@ async function loadBrandSettings() {
async function saveBrandSettings() {
try {
const res = await api('/api/brand', {
await api('/api/brand', {
method: 'PUT',
body: JSON.stringify({
brand_name: brandName.value,
brand_align: brandAlign.value,
qr_url: brandQrUrl.value,
}),
})
if (res.ok) ui.showToast('已保存')
} catch {
ui.showToast('保存失败')
// silent
}
}
@@ -500,96 +397,14 @@ function readFileAsBase64(file) {
})
}
// Compress image if too large (keeps PNG for small images, JPEG for large)
function compressImage(base64, maxSize = 500000) {
return new Promise((resolve) => {
if (base64.length <= maxSize) { resolve(base64); return }
const img = new Image()
img.onload = () => {
const canvas = document.createElement('canvas')
let w = img.width, h = img.height
const maxDim = 600
if (w > maxDim || h > maxDim) {
const ratio = Math.min(maxDim / w, maxDim / h)
w = Math.round(w * ratio)
h = Math.round(h * ratio)
}
canvas.width = w
canvas.height = h
canvas.getContext('2d').drawImage(img, 0, 0, w, h)
// Try PNG first, then JPEG with decreasing quality
let result = canvas.toDataURL('image/png')
if (result.length > maxSize) {
let quality = 0.85
while (quality > 0.2) {
result = canvas.toDataURL('image/jpeg', quality)
if (result.length <= maxSize) break
quality -= 0.1
}
}
resolve(result)
}
img.onerror = () => resolve(base64) // fallback: return original
img.src = base64
})
}
// Crop image to square from center
function cropToSquare(base64) {
return new Promise((resolve) => {
const img = new Image()
img.onload = () => {
const size = Math.min(img.width, img.height)
const x = (img.width - size) / 2
const y = (img.height - size) / 2
const canvas = document.createElement('canvas')
canvas.width = size
canvas.height = size
canvas.getContext('2d').drawImage(img, x, y, size, size, 0, 0, size, size)
resolve(canvas.toDataURL('image/png'))
}
img.onerror = () => resolve(base64)
img.src = base64
})
}
// Check if image is roughly square
function checkSquare(base64) {
return new Promise((resolve) => {
const img = new Image()
img.onload = () => {
const ratio = img.width / img.height
resolve(ratio > 0.85 && ratio < 1.15) // within 15% of square
}
img.onerror = () => resolve(true)
img.src = base64
})
}
async function handleUpload(type, event) {
const file = event.target.files[0]
if (!file) return
try {
let base64 = await readFileAsBase64(file)
// QR: check if square, offer to crop
if (type === 'qr') {
const isSquare = await checkSquare(base64)
if (!isSquare) {
const { showConfirm: confirm } = await import('../composables/useDialog')
const ok = await confirm('二维码图片不是正方形,是否自动裁剪为正方形?\n取中心区域')
if (ok) {
base64 = await cropToSquare(base64)
}
}
}
const maxSize = type === 'bg' ? 1000000 : 500000
base64 = await compressImage(base64, maxSize)
const base64 = await readFileAsBase64(file)
const fieldMap = { logo: 'brand_logo', bg: 'brand_bg', qr: 'qr_code' }
const field = fieldMap[type]
if (!field) return
ui.showToast('正在上传...')
const res = await api('/api/brand', {
method: 'PUT',
body: JSON.stringify({ [field]: base64 }),
@@ -598,32 +413,10 @@ async function handleUpload(type, event) {
if (type === 'logo') brandLogo.value = base64
else if (type === 'bg') brandBg.value = base64
else if (type === 'qr') brandQrImage.value = base64
ui.showToast('上传成功')
} else {
const err = await res.json().catch(() => ({}))
ui.showToast('上传失败: ' + (err.detail || res.status))
ui.showToast('上传成功')
}
} catch (e) {
ui.showToast('上传出错: ' + (e.message || '网络错误'))
}
// Reset input so same file can be re-selected
event.target.value = ''
}
async function clearBrandImage(type) {
const fieldMap = { logo: 'brand_logo', bg: 'brand_bg', qr: 'qr_code' }
const field = fieldMap[type]
try {
await api('/api/brand', {
method: 'PUT',
body: JSON.stringify({ [field]: null }),
})
if (type === 'logo') brandLogo.value = ''
else if (type === 'bg') brandBg.value = ''
else if (type === 'qr') brandQrImage.value = ''
ui.showToast('已清除')
} catch {
ui.showToast('清除失败')
ui.showToast('上传失败')
}
}
@@ -669,30 +462,13 @@ async function changePassword() {
}
async function applyBusiness() {
if (!businessName.value.trim()) {
ui.showToast('请填写商户名称')
return
}
try {
const res = await api('/api/business-apply', {
await api('/api/business-apply', {
method: 'POST',
body: JSON.stringify({
business_name: businessName.value.trim(),
document: businessReason.value.trim(),
}),
body: JSON.stringify({ reason: businessReason.value }),
})
if (res.ok) {
businessName.value = ''
businessReason.value = ''
bizApp.value = { status: 'pending', business_name: businessName.value }
ui.showToast('申请已提交,请等待管理员审核')
// Reload status
const bizRes = await api('/api/my-business-application')
if (bizRes.ok) bizApp.value = await bizRes.json()
} else {
const err = await res.json().catch(() => ({}))
ui.showToast(err.detail || '提交失败')
}
businessReason.value = ''
ui.showToast('申请已提交,请等待审核')
} catch {
ui.showToast('提交失败')
}
@@ -1077,61 +853,6 @@ async function applyBusiness() {
color: #b0aab5;
}
/* Upload box (matching initial commit style) */
.upload-box {
width: 100px;
height: 100px;
border: 2px dashed var(--border, #e0d4c0);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
overflow: hidden;
background: white;
transition: border-color 0.15s;
}
.upload-box:hover { border-color: var(--sage, #7a9e7e); }
.upload-box-img { width: 100%; height: 100%; object-fit: contain; }
.upload-box-hint { font-size: 12px; color: var(--text-light, #9a8570); }
.btn-clear {
margin-top: 6px;
font-size: 11px;
background: none;
border: 1px solid var(--border);
border-radius: 6px;
padding: 2px 8px;
cursor: pointer;
color: var(--text-light);
}
.btn-clear:hover { border-color: #c0392b; color: #c0392b; }
.btn-align {
font-size: 11px;
padding: 3px 10px;
border: 1.5px solid var(--border);
border-radius: 6px;
background: white;
cursor: pointer;
color: var(--text-mid);
}
.btn-align.active {
background: var(--sage-mist);
border-color: var(--sage);
color: var(--sage-dark);
}
/* Card preview mini */
.card-preview-mini {
position: relative;
width: 280px;
background: linear-gradient(145deg, #faf7f0, #f5ede0);
border-radius: 14px;
border: 1px solid #e0ccaa;
overflow: hidden;
font-family: 'Noto Serif SC', serif;
padding: 18px;
}
.hint-text {
font-size: 13px;
color: #6b6375;
@@ -1147,20 +868,6 @@ async function applyBusiness() {
text-align: center;
}
.biz-status {
padding: 16px;
border-radius: 12px;
text-align: center;
margin-bottom: 12px;
}
.biz-status-icon { font-size: 32px; margin-bottom: 8px; }
.biz-status-text { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.biz-status-detail { font-size: 12px; color: #999; }
.biz-approved { background: #e8f5e9; color: #2e7d5a; }
.biz-pending { background: #fff8e1; color: #e65100; }
.biz-rejected { background: #fce4ec; color: #c62828; }
.biz-reject-reason { font-size: 13px; margin-top: 8px; padding: 8px 12px; background: rgba(0,0,0,0.05); border-radius: 8px; }
/* Buttons */
.btn-primary {
background: linear-gradient(135deg, #7ec6a4 0%, #4a9d7e 100%);

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@
<!-- Project List -->
<div class="toolbar">
<h3 class="page-title">💼 商业核算</h3>
<button v-if="auth.isBusiness" class="btn-primary" @click="createProject">+ 新建项目</button>
<button class="btn-primary" @click="createProject">+ 新建项目</button>
</div>
<div v-if="!selectedProject" class="project-list">
@@ -23,7 +23,7 @@
成本 {{ oils.fmtPrice(oils.calcCost(p.ingredients)) }}
</span>
</div>
<div v-if="auth.isAdmin" class="proj-actions" @click.stop>
<div class="proj-actions" @click.stop>
<button class="btn-icon-sm" @click="deleteProject(p)" title="删除">🗑</button>
</div>
</div>
@@ -177,7 +177,6 @@
<script setup>
import { ref, computed, onMounted } from 'vue'
import { useRouter } from 'vue-router'
import { useAuthStore } from '../stores/auth'
import { useOilsStore } from '../stores/oils'
import { useRecipesStore } from '../stores/recipes'
@@ -189,14 +188,6 @@ const auth = useAuthStore()
const oils = useOilsStore()
const recipeStore = useRecipesStore()
const ui = useUiStore()
const router = useRouter()
async function showCertPrompt() {
const ok = await showConfirm('此功能需要商业认证,是否前往申请认证?', { okText: '去认证', cancelText: '取消' })
if (ok) {
router.push('/mydiary?tab=account&section=biz-cert')
}
}
const projects = ref([])
const selectedProject = ref(null)
@@ -246,10 +237,6 @@ async function createProject() {
}
function selectProject(p) {
if (!auth.isBusiness) {
showCertPrompt()
return
}
selectedProject.value = {
...p,
ingredients: (p.ingredients || []).map(i => ({ ...i })),

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
<template>
<div class="recipe-search">
<!-- Category Carousel (full-width image slides) -->
<div class="cat-wrap" v-if="categories.length && !selectedCategory" data-no-tab-swipe @touchstart="onCarouselTouchStart" @touchend="onCarouselTouchEnd">
<div class="cat-wrap" v-if="categories.length && !selectedCategory">
<div class="cat-track" :style="{ transform: `translateX(-${catIdx * 100}%)` }">
<div
v-for="cat in categories"
@@ -49,96 +49,56 @@
<!-- Personal Section (logged in) -->
<div v-if="auth.isLoggedIn" class="personal-section">
<template v-if="!searchQuery || myDiaryRecipes.length > 0">
<div class="section-header" @click="showMyRecipes = !showMyRecipes">
<span>📖 我的配方 ({{ myDiaryRecipes.length }})</span>
<span v-if="!auth.isAdmin && sharedCount.total > 0" class="contrib-badge">已贡献 {{ sharedCount.adopted }}/{{ sharedCount.total }} </span>
<span>📖 我的配方</span>
<span class="toggle-icon">{{ showMyRecipes ? '▾' : '▸' }}</span>
</div>
<div v-if="showMyRecipes" class="recipe-grid">
<div v-for="d in myDiaryRecipes" :key="'diary-' + d.id" class="diary-card-wrap">
<RecipeCard
:recipe="diaryAsRecipe(d)"
:index="-1"
@click="openDiaryDetail(d)"
/>
<span v-if="getDiaryShareStatus(d) === 'shared'" class="share-status shared">已共享</span>
<span v-else-if="getDiaryShareStatus(d) === 'pending'" class="share-status pending">审核中</span>
</div>
<div v-if="myDiaryRecipes.length === 0" class="empty-hint">暂无个人配方</div>
<RecipeCard
v-for="(r, i) in myRecipesPreview"
:key="r._id"
:recipe="r"
:index="findGlobalIndex(r)"
@click="openDetail(findGlobalIndex(r))"
@toggle-fav="handleToggleFav(r)"
/>
<div v-if="myRecipesPreview.length === 0" class="empty-hint">暂无个人配方</div>
</div>
</template>
<template v-if="!searchQuery || favoritesPreview.length > 0">
<div class="section-header" @click="showFavorites = !showFavorites">
<span> 收藏配方 ({{ favoritesPreview.length }})</span>
<span class="toggle-icon">{{ showFavorites ? '▾' : '▸' }}</span>
</div>
<div v-if="showFavorites" class="recipe-grid">
<RecipeCard
v-for="r in favoritesPreview"
:key="r._id"
:recipe="r"
:index="findGlobalIndex(r)"
@click="openDetail(findGlobalIndex(r))"
@toggle-fav="handleToggleFav(r)"
/>
<div v-if="favoritesPreview.length === 0" class="empty-hint">暂无收藏配方</div>
</div>
</template>
<div class="section-header" @click="showFavorites = !showFavorites">
<span> 收藏配方</span>
<span class="toggle-icon">{{ showFavorites ? '▾' : '▸' }}</span>
</div>
<div v-if="showFavorites" class="recipe-grid">
<RecipeCard
v-for="(r, i) in favoritesPreview"
:key="r._id"
:recipe="r"
:index="findGlobalIndex(r)"
@click="openDetail(findGlobalIndex(r))"
@toggle-fav="handleToggleFav(r)"
/>
<div v-if="favoritesPreview.length === 0" class="empty-hint">暂无收藏配方</div>
</div>
</div>
<!-- Search Results (public recipes) -->
<div v-if="searchQuery" class="search-results-section">
<!-- Exact matches -->
<template v-if="exactResults.length > 0">
<div class="section-label">🔍 搜索结果 ({{ exactResults.length }})</div>
<div class="recipe-grid">
<RecipeCard
v-for="r in exactResults"
:key="r._id"
:recipe="r"
:index="findGlobalIndex(r)"
@click="openDetail(findGlobalIndex(r))"
@toggle-fav="handleToggleFav(r)"
/>
</div>
</template>
<!-- Similar/related matches -->
<template v-if="similarResults.length > 0">
<div class="section-label similar-label">
{{ exactResults.length > 0 ? '💡 相关配方' : '💡 没有完全匹配,以下是相关配方' }}
({{ similarResults.length }})
</div>
<div class="recipe-grid">
<RecipeCard
v-for="r in similarResults"
:key="'sim-' + r._id"
:recipe="r"
:index="findGlobalIndex(r)"
@click="openDetail(findGlobalIndex(r))"
@toggle-fav="handleToggleFav(r)"
/>
</div>
</template>
<!-- No results at all -->
<div v-if="exactResults.length === 0 && similarResults.length === 0" class="no-match-box">
<div class="empty-hint">未找到{{ searchQuery }}相关配方</div>
</div>
<!-- Report missing button (always shown at bottom) -->
<div class="no-match-box" style="margin-top:12px">
<button v-if="!reportedMissing" class="btn-report-missing" @click="reportMissing">
📢 没找到想要的通知编辑添加
</button>
<div v-else class="reported-hint">已通知编辑感谢反馈</div>
<!-- Fuzzy Search Results -->
<div v-if="searchQuery && fuzzyResults.length" class="search-results-section">
<div class="section-label">🔍 搜索结果 ({{ fuzzyResults.length }})</div>
<div class="recipe-grid">
<RecipeCard
v-for="(r, i) in fuzzyResults"
:key="r._id"
:recipe="r"
:index="findGlobalIndex(r)"
@click="openDetail(findGlobalIndex(r))"
@toggle-fav="handleToggleFav(r)"
/>
</div>
</div>
<!-- Public Recipe Grid -->
<div v-if="!searchQuery">
<div v-if="!searchQuery || fuzzyResults.length === 0">
<div class="section-label">🌿 公共配方库 ({{ filteredRecipes.length }})</div>
<div class="recipe-grid">
<RecipeCard
@@ -155,11 +115,9 @@
<!-- Recipe Detail Overlay -->
<RecipeDetailOverlay
v-if="selectedRecipeIndex !== null || selectedDiaryRecipe !== null"
v-if="selectedRecipeIndex !== null"
:recipeIndex="selectedRecipeIndex"
:recipeData="selectedDiaryRecipe"
:isDiary="selectedDiaryRecipe !== null"
@close="selectedRecipeIndex = null; selectedDiaryRecipe = null"
@close="selectedRecipeIndex = null"
/>
</div>
</template>
@@ -170,7 +128,6 @@ import { useRoute, useRouter } from 'vue-router'
import { useAuthStore } from '../stores/auth'
import { useOilsStore } from '../stores/oils'
import { useRecipesStore } from '../stores/recipes'
import { useDiaryStore } from '../stores/diary'
import { useUiStore } from '../stores/ui'
import { api } from '../composables/useApi'
import RecipeCard from '../components/RecipeCard.vue'
@@ -179,7 +136,6 @@ import RecipeDetailOverlay from '../components/RecipeDetailOverlay.vue'
const auth = useAuthStore()
const oils = useOilsStore()
const recipeStore = useRecipesStore()
const diaryStore = useDiaryStore()
const ui = useUiStore()
const route = useRoute()
const router = useRouter()
@@ -188,11 +144,9 @@ const searchQuery = ref('')
const selectedCategory = ref(null)
const categories = ref([])
const selectedRecipeIndex = ref(null)
const selectedDiaryRecipe = ref(null)
const showMyRecipes = ref(false)
const showFavorites = ref(false)
const showMyRecipes = ref(true)
const showFavorites = ref(true)
const catIdx = ref(0)
const sharedCount = ref({ adopted: 0, total: 0 })
onMounted(async () => {
try {
@@ -200,18 +154,8 @@ onMounted(async () => {
if (res.ok) {
categories.value = await res.json()
}
} catch {}
// Load personal diary recipes & contribution stats
if (auth.isLoggedIn) {
await diaryStore.loadDiary()
try {
const cRes = await api('/api/me/contribution')
if (cRes.ok) {
const data = await cRes.json()
sharedCount.value = { adopted: data.adopted_count || 0, total: data.shared_count || 0 }
}
} catch {}
} catch {
// category modules are optional
}
// Return to a recipe card after QR upload redirect
@@ -219,7 +163,7 @@ onMounted(async () => {
if (openRecipeId) {
router.replace({ path: '/', query: {} })
const tryOpen = () => {
const idx = recipeStore.recipes.findIndex(r => String(r._id) === String(openRecipeId))
const idx = recipeStore.recipes.findIndex(r => r._id === openRecipeId)
if (idx >= 0) {
openDetail(idx)
return true
@@ -245,140 +189,37 @@ function slideCat(dir) {
catIdx.value = (catIdx.value + dir + len) % len
}
// Public recipes (all recipes in the public library)
const filteredRecipes = computed(() => {
let list = recipeStore.recipes
if (selectedCategory.value) {
list = list.filter(r => r.tags && r.tags.includes(selectedCategory.value))
}
return list.slice().sort((a, b) => a.name.localeCompare(b.name, 'zh'))
return list
})
// Synonym groups for broader fuzzy matching
const synonymGroups = [
['胸', '乳腺', '乳房', '丰胸', '胸部'],
['瘦', '减肥', '减脂', '消脂', '纤体', '塑形', '体重'],
['痘', '痤疮', '粉刺', '暗疮', '长痘', '祛痘'],
['斑', '色斑', '淡斑', '雀斑', '黑色素', '美白', '亮肤'],
['皱', '抗皱', '皱纹', '紧致', '抗衰', '抗老'],
['睡', '眠', '失眠', '助眠', '安眠', '好眠', '入睡'],
['焦虑', '紧张', '压力', '情绪', '放松', '舒缓', '安神', '宁神'],
['头', '头痛', '头疼', '偏头痛', '头晕'],
['咳', '咳嗽', '止咳', '清咽'],
['鼻', '鼻炎', '鼻塞', '过敏性鼻炎', '打喷嚏'],
['感冒', '发烧', '发热', '流感', '风寒', '风热'],
['胃', '消化', '肠胃', '胃痛', '胃胀', '积食', '便秘'],
['肝', '护肝', '养肝', '肝脏', '排毒'],
['肾', '补肾', '养肾', '肾虚'],
['腰', '腰痛', '腰酸', '腰椎'],
['肩', '肩颈', '颈椎', '肩周'],
['关节', '骨骼', '骨质', '风湿', '类风湿'],
['肌肉', '酸痛', '疼痛', '拉伤'],
['月经', '痛经', '经期', '姨妈', '生理期', '调经'],
['子宫', '卵巢', '生殖', '备孕', '怀孕', '孕'],
['前列腺', '男性', '阳'],
['湿', '祛湿', '排湿', '湿气', '化湿'],
['免疫', '免疫力', '抵抗力'],
['脱发', '掉发', '生发', '头发', '发际线', '秃'],
['过敏', '敏感', '荨麻疹', '湿疹', '皮炎'],
['血压', '高血压', '低血压', '血管', '循环'],
['血糖', '糖尿病', '降糖'],
['淋巴', '排毒', '水肿', '浮肿'],
['呼吸', '肺', '支气管', '哮喘', '气管'],
['眼', '眼睛', '视力', '近视', '干眼'],
['耳', '耳鸣', '中耳炎', '耳朵'],
['口', '口腔', '口臭', '牙', '牙龈', '牙疼'],
['皮肤', '护肤', '保湿', '修复', '焕肤'],
['疤', '疤痕', '伤疤', '妊娠纹'],
['心', '心脏', '心悸', '养心'],
['甲状腺', '甲亢', '甲减'],
['高', '长高', '增高', '个子'],
['静脉', '静脉曲张'],
['痔', '痔疮'],
]
function expandQuery(q) {
const terms = [q]
for (const group of synonymGroups) {
if (group.some(t => q.includes(t) || t.includes(q))) {
for (const t of group) {
if (!terms.includes(t)) terms.push(t)
}
}
}
return terms
}
// Search results: exact matches (query in recipe name or tags, NOT oil names to avoid noise like 西班牙牛至)
const exactResults = computed(() => {
const fuzzyResults = computed(() => {
if (!searchQuery.value.trim()) return []
const q = searchQuery.value.trim().toLowerCase()
return recipeStore.recipes.filter(r => {
const nameMatch = r.name.toLowerCase().includes(q)
const oilMatch = r.ingredients.some(ing => ing.oil.toLowerCase().includes(q))
const tagMatch = r.tags && r.tags.some(t => t.toLowerCase().includes(q))
return nameMatch || tagMatch
}).sort((a, b) => a.name.localeCompare(b.name, 'zh'))
return nameMatch || oilMatch || tagMatch
})
})
// Similar results: synonym expansion, only match against recipe NAME (not ingredients/tags)
// Filter out single-char expanded terms to avoid overly broad matches
const similarResults = computed(() => {
if (!searchQuery.value.trim()) return []
const q = searchQuery.value.trim()
const exactIds = new Set(exactResults.value.map(r => r._id))
const terms = expandQuery(q).filter(t => t.length >= 2 || t === q)
return recipeStore.recipes.filter(r => {
if (exactIds.has(r._id)) return false
const name = r.name
// Match by expanded synonyms (name only, not ingredients)
if (terms.some(t => name.includes(t))) return true
return false
}).sort((a, b) => a.name.localeCompare(b.name, 'zh')).slice(0, 30)
})
const reportedMissing = ref(false)
async function reportMissing() {
try {
await api('/api/symptom-search', {
method: 'POST',
body: JSON.stringify({ query: searchQuery.value.trim(), report_missing: true }),
})
reportedMissing.value = true
ui.showToast('已通知编辑,感谢反馈!')
} catch {
ui.showToast('通知失败')
}
}
// Personal recipes from diary (separate from public recipes)
const myDiaryRecipes = computed(() => {
const myRecipesPreview = computed(() => {
if (!auth.isLoggedIn) return []
let list = diaryStore.userDiary
if (searchQuery.value.trim()) {
const q = searchQuery.value.trim().toLowerCase()
list = list.filter(d => {
return d.name.toLowerCase().includes(q) ||
(d.ingredients || []).some(ing => ing.oil?.toLowerCase().includes(q))
})
}
return list
return recipeStore.recipes
.filter(r => r._owner_id === auth.user.id)
.slice(0, 6)
})
const favoritesPreview = computed(() => {
if (!auth.isLoggedIn) return []
let list = recipeStore.recipes.filter(r => recipeStore.isFavorite(r))
if (searchQuery.value.trim()) {
const q = searchQuery.value.trim().toLowerCase()
list = list.filter(r => {
const nameMatch = r.name.toLowerCase().includes(q)
const oilMatch = r.ingredients.some(ing => ing.oil.toLowerCase().includes(q))
const tagMatch = r.tags && r.tags.some(t => t.toLowerCase().includes(q))
return nameMatch || oilMatch || tagMatch
})
}
return list.slice(0, 6)
return recipeStore.recipes
.filter(r => recipeStore.isFavorite(r))
.slice(0, 6)
})
function findGlobalIndex(recipe) {
@@ -391,26 +232,6 @@ function openDetail(index) {
}
}
function getDiaryShareStatus(d) {
const pub = recipeStore.recipes.find(r => r.name === d.name && r._owner_id === auth.user?.id)
if (pub) return 'shared'
return null
}
function diaryAsRecipe(d) {
return {
_id: 'diary-' + d.id,
name: d.name,
note: d.note || '',
tags: d.tags || [],
ingredients: d.ingredients || [],
}
}
function openDiaryDetail(diary) {
selectedDiaryRecipe.value = diaryAsRecipe(diary)
}
async function handleToggleFav(recipe) {
if (!auth.isLoggedIn) {
ui.openLogin()
@@ -419,51 +240,13 @@ async function handleToggleFav(recipe) {
await recipeStore.toggleFavorite(recipe._id)
}
async function shareDiaryToPublic(diary) {
const { showConfirm } = await import('../composables/useDialog')
const ok = await showConfirm(`将「${diary.name}」共享到公共配方库?\n共享后所有用户都能看到。`)
if (!ok) return
try {
await api('/api/recipes', {
method: 'POST',
body: JSON.stringify({
name: diary.name,
note: diary.note || '',
ingredients: (diary.ingredients || []).map(i => ({ oil_name: i.oil, drops: i.drops })),
tags: diary.tags || [],
}),
})
if (auth.isAdmin) {
ui.showToast('已共享到公共配方库')
} else {
ui.showToast('已提交,等待管理员审核')
}
await recipeStore.loadRecipes()
} catch {
ui.showToast('共享失败')
}
}
function onSearch() {
reportedMissing.value = false
// fuzzyResults computed handles the filtering reactively
}
function clearSearch() {
searchQuery.value = ''
selectedCategory.value = null
reportedMissing.value = false
}
// Carousel swipe
const carouselTouchStartX = ref(0)
function onCarouselTouchStart(e) {
carouselTouchStartX.value = e.touches[0].clientX
}
function onCarouselTouchEnd(e) {
const dx = e.changedTouches[0].clientX - carouselTouchStartX.value
if (Math.abs(dx) > 50) {
slideCat(dx < 0 ? 1 : -1)
}
}
</script>
@@ -664,57 +447,6 @@ function onCarouselTouchEnd(e) {
color: #999;
}
.diary-card-wrap {
position: relative;
}
.share-status {
position: absolute;
top: 8px;
right: 8px;
font-size: 10px;
padding: 2px 8px;
border-radius: 8px;
font-weight: 600;
}
.share-status.shared {
background: #e8f5e9;
color: #2e7d32;
}
.share-status.pending {
background: #fff3e0;
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;
background: #e8f5e9;
padding: 2px 8px;
border-radius: 8px;
font-weight: 500;
margin-left: auto;
}
.section-label {
font-size: 14px;
font-weight: 600;
@@ -742,89 +474,6 @@ function onCarouselTouchEnd(e) {
padding: 24px 0;
}
.similar-label {
color: #e65100;
background: #fff8e1;
padding: 8px 14px;
border-radius: 10px;
}
.no-match-box {
text-align: center;
padding: 12px 0;
}
.btn-report-missing {
background: linear-gradient(135deg, #ffb74d, #e65100);
color: #fff;
border: none;
border-radius: 10px;
padding: 10px 20px;
font-size: 14px;
cursor: pointer;
font-family: inherit;
margin-top: 8px;
}
.btn-report-missing:hover {
opacity: 0.9;
}
.reported-hint {
color: #4a9d7e;
font-size: 13px;
font-weight: 500;
}
.diary-card {
background: white;
border-radius: 14px;
padding: 16px;
cursor: pointer;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
border: 2px solid transparent;
border-left: 3px solid var(--sage, #7a9e7e);
transition: all 0.2s;
}
.diary-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.diary-card .card-name {
font-family: 'Noto Serif SC', serif;
font-size: 15px;
font-weight: 600;
color: #2c2416;
margin-bottom: 6px;
}
.diary-card .card-oils {
font-size: 12px;
color: #9a8570;
line-height: 1.6;
}
.diary-card .card-bottom {
display: flex;
justify-content: space-between;
margin-top: 8px;
}
.diary-card .card-price {
font-size: 13px;
font-weight: 600;
color: var(--sage-dark, #5a7d5e);
}
.share-btn {
background: none;
border: none;
cursor: pointer;
font-size: 16px;
padding: 2px 4px;
border-radius: 6px;
opacity: 0.5;
transition: opacity 0.2s;
}
.share-btn:hover { opacity: 1; }
@media (max-width: 600px) {
.recipe-grid {
grid-template-columns: 1fr;

View File

@@ -27,8 +27,8 @@
<div class="review-list">
<div v-for="app in businessApps" :key="app._id || app.id" class="review-item">
<div class="review-info">
<span class="review-name">{{ app.display_name || app.username }}</span>
<span class="review-reason">商户名{{ app.business_name }}</span>
<span class="review-name">{{ app.user_name || app.display_name }}</span>
<span class="review-reason">{{ app.reason }}</span>
</div>
<div class="review-actions">
<button class="btn-sm btn-approve" @click="approveBusiness(app)">通过</button>
@@ -38,7 +38,27 @@
</div>
</div>
<!-- User self-registers, admin assigns roles below -->
<!-- New User Creation -->
<div class="create-section">
<h4 class="section-title"> 创建新用户</h4>
<div class="create-form">
<input v-model="newUser.username" class="form-input" placeholder="用户名" />
<input v-model="newUser.display_name" class="form-input" placeholder="显示名称" />
<input v-model="newUser.password" class="form-input" type="password" placeholder="密码 (留空自动生成)" />
<select v-model="newUser.role" class="form-select">
<option value="viewer">查看者</option>
<option value="editor">编辑</option>
<option value="senior_editor">高级编辑</option>
<option value="admin">管理员</option>
</select>
<button class="btn-primary" @click="createUser" :disabled="!newUser.username.trim()">创建</button>
</div>
<div v-if="createdLink" class="created-link">
<span>登录链接:</span>
<code>{{ createdLink }}</code>
<button class="btn-sm btn-outline" @click="copyLink(createdLink)">复制</button>
</div>
</div>
<!-- Search & Filter -->
<div class="filter-toolbar">
@@ -80,12 +100,13 @@
:value="u.role"
class="role-select"
@change="changeRole(u, $event.target.value)"
:disabled="u.role === 'admin'"
>
<option value="viewer">查看者</option>
<option value="editor">编辑</option>
<option value="senior_editor">高级编辑</option>
<option value="admin">管理员</option>
</select>
<button class="btn-sm btn-outline" @click="copyUserLink(u)" title="复制登录链接">🔗</button>
<button class="btn-sm btn-delete" @click="removeUser(u)" title="删除用户">🗑</button>
</div>
</div>
@@ -97,11 +118,11 @@
</template>
<script setup>
import { ref, computed, onMounted } from 'vue'
import { ref, computed, reactive, onMounted } from 'vue'
import { useAuthStore } from '../stores/auth'
import { useUiStore } from '../stores/ui'
import { api } from '../composables/useApi'
import { showConfirm, showPrompt } from '../composables/useDialog'
import { showConfirm } from '../composables/useDialog'
const auth = useAuthStore()
const ui = useUiStore()
@@ -111,6 +132,15 @@ const searchQuery = ref('')
const filterRole = ref('')
const translations = ref([])
const businessApps = ref([])
const createdLink = ref('')
const newUser = reactive({
username: '',
display_name: '',
password: '',
role: 'viewer',
})
const roles = [
{ value: 'admin', label: '管理员' },
{ value: 'senior_editor', label: '高级编辑' },
@@ -176,10 +206,43 @@ async function loadBusinessApps() {
}
}
async function createUser() {
if (!newUser.username.trim()) return
try {
const res = await api('/api/users', {
method: 'POST',
body: JSON.stringify({
username: newUser.username.trim(),
display_name: newUser.display_name.trim() || newUser.username.trim(),
password: newUser.password || undefined,
role: newUser.role,
}),
})
if (res.ok) {
const data = await res.json()
if (data.token) {
const baseUrl = window.location.origin
createdLink.value = `${baseUrl}/?token=${data.token}`
}
newUser.username = ''
newUser.display_name = ''
newUser.password = ''
newUser.role = 'viewer'
await loadUsers()
ui.showToast('用户已创建')
} else {
const err = await res.json().catch(() => ({}))
ui.showToast('创建失败: ' + (err.error || err.message || ''))
}
} catch {
ui.showToast('创建失败')
}
}
async function changeRole(user, newRole) {
const id = user._id || user.id
try {
const res = await api(`/api/users/${id}`, {
const res = await api(`/api/users/${id}/role`, {
method: 'PUT',
body: JSON.stringify({ role: newRole }),
})
@@ -207,6 +270,30 @@ async function removeUser(user) {
}
}
async function copyUserLink(user) {
try {
const id = user._id || user.id
const res = await api(`/api/users/${id}/token`)
if (res.ok) {
const data = await res.json()
const link = `${window.location.origin}/?token=${data.token}`
await navigator.clipboard.writeText(link)
ui.showToast('链接已复制')
}
} catch {
ui.showToast('获取链接失败')
}
}
async function copyLink(link) {
try {
await navigator.clipboard.writeText(link)
ui.showToast('已复制')
} catch {
ui.showToast('复制失败')
}
}
async function approveTranslation(t) {
const id = t._id || t.id
try {
@@ -248,13 +335,8 @@ async function approveBusiness(app) {
async function rejectBusiness(app) {
const id = app._id || app.id
const reason = await showPrompt('请输入拒绝原因(选填):')
if (reason === null) return
try {
const res = await api(`/api/business-applications/${id}/reject`, {
method: 'POST',
body: JSON.stringify({ reason: reason || '' }),
})
const res = await api(`/api/business-applications/${id}/reject`, { method: 'POST' })
if (res.ok) {
businessApps.value = businessApps.value.filter(item => (item._id || item.id) !== id)
ui.showToast('已拒绝')