Compare commits
1 Commits
ec017318be
...
fix/save-o
| Author | SHA1 | Date | |
|---|---|---|---|
| 42aefaab17 |
@@ -221,8 +221,6 @@ def init_db():
|
|||||||
c.execute("ALTER TABLE oils ADD COLUMN retail_price REAL")
|
c.execute("ALTER TABLE oils ADD COLUMN retail_price REAL")
|
||||||
if "is_active" not in oil_cols:
|
if "is_active" not in oil_cols:
|
||||||
c.execute("ALTER TABLE oils ADD COLUMN is_active INTEGER DEFAULT 1")
|
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
|
# Migration: add new columns to category_modules if missing
|
||||||
cat_cols = [row[1] for row in c.execute("PRAGMA table_info(category_modules)").fetchall()]
|
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")
|
c.execute("ALTER TABLE recipes ADD COLUMN updated_by INTEGER")
|
||||||
if "en_name" not in cols:
|
if "en_name" not in cols:
|
||||||
c.execute("ALTER TABLE recipes ADD COLUMN en_name TEXT DEFAULT ''")
|
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
|
# Seed admin user if no users exist
|
||||||
count = c.execute("SELECT COUNT(*) FROM users").fetchone()[0]
|
count = c.execute("SELECT COUNT(*) FROM users").fetchone()[0]
|
||||||
|
|||||||
@@ -79,7 +79,6 @@ class OilIn(BaseModel):
|
|||||||
bottle_price: float
|
bottle_price: float
|
||||||
drop_count: int
|
drop_count: int
|
||||||
retail_price: Optional[float] = None
|
retail_price: Optional[float] = None
|
||||||
en_name: Optional[str] = None
|
|
||||||
|
|
||||||
|
|
||||||
class IngredientIn(BaseModel):
|
class IngredientIn(BaseModel):
|
||||||
@@ -97,6 +96,7 @@ class RecipeIn(BaseModel):
|
|||||||
class RecipeUpdate(BaseModel):
|
class RecipeUpdate(BaseModel):
|
||||||
name: Optional[str] = None
|
name: Optional[str] = None
|
||||||
en_name: Optional[str] = None
|
en_name: Optional[str] = None
|
||||||
|
en_oils: Optional[str] = None
|
||||||
note: Optional[str] = None
|
note: Optional[str] = None
|
||||||
ingredients: Optional[list[IngredientIn]] = None
|
ingredients: Optional[list[IngredientIn]] = None
|
||||||
tags: Optional[list[str]] = None
|
tags: Optional[list[str]] = None
|
||||||
@@ -310,7 +310,7 @@ def symptom_search(body: dict, user=Depends(get_current_user)):
|
|||||||
conn = get_db()
|
conn = get_db()
|
||||||
# Search in recipe names
|
# Search in recipe names
|
||||||
rows = conn.execute(
|
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()
|
).fetchall()
|
||||||
exact = []
|
exact = []
|
||||||
related = []
|
related = []
|
||||||
@@ -650,7 +650,7 @@ def impersonate(body: dict, user=Depends(require_role("admin"))):
|
|||||||
@app.get("/api/oils")
|
@app.get("/api/oils")
|
||||||
def list_oils():
|
def list_oils():
|
||||||
conn = get_db()
|
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()
|
conn.close()
|
||||||
return [dict(r) for r in rows]
|
return [dict(r) for r in rows]
|
||||||
|
|
||||||
@@ -659,10 +659,9 @@ def list_oils():
|
|||||||
def upsert_oil(oil: OilIn, user=Depends(require_role("admin", "senior_editor"))):
|
def upsert_oil(oil: OilIn, user=Depends(require_role("admin", "senior_editor"))):
|
||||||
conn = get_db()
|
conn = get_db()
|
||||||
conn.execute(
|
conn.execute(
|
||||||
"INSERT INTO oils (name, bottle_price, drop_count, retail_price, en_name) VALUES (?, ?, ?, ?, ?) "
|
"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, "
|
"ON CONFLICT(name) DO UPDATE SET bottle_price=excluded.bottle_price, drop_count=excluded.drop_count, retail_price=excluded.retail_price",
|
||||||
"retail_price=excluded.retail_price, en_name=COALESCE(excluded.en_name, oils.en_name)",
|
(oil.name, oil.bottle_price, oil.drop_count, oil.retail_price),
|
||||||
(oil.name, oil.bottle_price, oil.drop_count, oil.retail_price, oil.en_name),
|
|
||||||
)
|
)
|
||||||
log_audit(conn, user["id"], "upsert_oil", "oil", oil.name, oil.name,
|
log_audit(conn, user["id"], "upsert_oil", "oil", oil.name, oil.name,
|
||||||
json.dumps({"bottle_price": oil.bottle_price, "drop_count": oil.drop_count}))
|
json.dumps({"bottle_price": oil.bottle_price, "drop_count": oil.drop_count}))
|
||||||
@@ -700,6 +699,7 @@ def _recipe_to_dict(conn, row):
|
|||||||
"id": rid,
|
"id": rid,
|
||||||
"name": row["name"],
|
"name": row["name"],
|
||||||
"en_name": row["en_name"] if "en_name" in row.keys() else "",
|
"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"],
|
"note": row["note"],
|
||||||
"owner_id": row["owner_id"],
|
"owner_id": row["owner_id"],
|
||||||
"owner_name": (owner["display_name"] or owner["username"]) if owner else None,
|
"owner_name": (owner["display_name"] or owner["username"]) if owner else None,
|
||||||
@@ -714,19 +714,19 @@ def list_recipes(user=Depends(get_current_user)):
|
|||||||
conn = get_db()
|
conn = get_db()
|
||||||
# Admin sees all; others see admin-owned (adopted) + their own
|
# Admin sees all; others see admin-owned (adopted) + their own
|
||||||
if user["role"] == "admin":
|
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:
|
else:
|
||||||
admin = conn.execute("SELECT id FROM users WHERE role = 'admin' LIMIT 1").fetchone()
|
admin = conn.execute("SELECT id FROM users WHERE role = 'admin' LIMIT 1").fetchone()
|
||||||
admin_id = admin["id"] if admin else 1
|
admin_id = admin["id"] if admin else 1
|
||||||
user_id = user.get("id")
|
user_id = user.get("id")
|
||||||
if user_id:
|
if user_id:
|
||||||
rows = conn.execute(
|
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)
|
(admin_id, user_id)
|
||||||
).fetchall()
|
).fetchall()
|
||||||
else:
|
else:
|
||||||
rows = conn.execute(
|
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,)
|
(admin_id,)
|
||||||
).fetchall()
|
).fetchall()
|
||||||
result = [_recipe_to_dict(conn, r) for r in rows]
|
result = [_recipe_to_dict(conn, r) for r in rows]
|
||||||
@@ -737,7 +737,7 @@ def list_recipes(user=Depends(get_current_user)):
|
|||||||
@app.get("/api/recipes/{recipe_id}")
|
@app.get("/api/recipes/{recipe_id}")
|
||||||
def get_recipe(recipe_id: int):
|
def get_recipe(recipe_id: int):
|
||||||
conn = get_db()
|
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:
|
if not row:
|
||||||
conn.close()
|
conn.close()
|
||||||
raise HTTPException(404, "Recipe not found")
|
raise HTTPException(404, "Recipe not found")
|
||||||
@@ -810,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))
|
c.execute("UPDATE recipes SET note = ? WHERE id = ?", (update.note, recipe_id))
|
||||||
if update.en_name is not None:
|
if update.en_name is not None:
|
||||||
c.execute("UPDATE recipes SET en_name = ? WHERE id = ?", (update.en_name, recipe_id))
|
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:
|
if update.ingredients is not None:
|
||||||
c.execute("DELETE FROM recipe_ingredients WHERE recipe_id = ?", (recipe_id,))
|
c.execute("DELETE FROM recipe_ingredients WHERE recipe_id = ?", (recipe_id,))
|
||||||
for ing in update.ingredients:
|
for ing in update.ingredients:
|
||||||
@@ -839,7 +841,7 @@ def delete_recipe(recipe_id: int, user=Depends(get_current_user)):
|
|||||||
conn = get_db()
|
conn = get_db()
|
||||||
row = _check_recipe_permission(conn, recipe_id, user)
|
row = _check_recipe_permission(conn, recipe_id, user)
|
||||||
# Save full snapshot for undo
|
# 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)
|
snapshot = _recipe_to_dict(conn, full)
|
||||||
log_audit(conn, user["id"], "delete_recipe", "recipe", recipe_id, row["name"],
|
log_audit(conn, user["id"], "delete_recipe", "recipe", recipe_id, row["name"],
|
||||||
json.dumps(snapshot, ensure_ascii=False))
|
json.dumps(snapshot, ensure_ascii=False))
|
||||||
@@ -1342,7 +1344,7 @@ def recipes_by_inventory(user=Depends(get_current_user)):
|
|||||||
if not inv:
|
if not inv:
|
||||||
conn.close()
|
conn.close()
|
||||||
return []
|
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 = []
|
result = []
|
||||||
for r in rows:
|
for r in rows:
|
||||||
recipe = _recipe_to_dict(conn, r)
|
recipe = _recipe_to_dict(conn, r)
|
||||||
|
|||||||
@@ -6,14 +6,14 @@ describe('Recipe Detail', () => {
|
|||||||
|
|
||||||
it('opens detail panel when clicking a recipe card', () => {
|
it('opens detail panel when clicking a recipe card', () => {
|
||||||
cy.get('.recipe-card').first().click()
|
cy.get('.recipe-card').first().click()
|
||||||
cy.get('.detail-overlay').should('be.visible')
|
cy.get('[class*="detail"]').should('be.visible')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('shows recipe name in detail view', () => {
|
it('shows recipe name in detail view', () => {
|
||||||
cy.get('.recipe-card').first().invoke('text').then(cardText => {
|
cy.get('.recipe-card').first().invoke('text').then(cardText => {
|
||||||
cy.get('.recipe-card').first().click()
|
cy.get('.recipe-card').first().click()
|
||||||
cy.wait(500)
|
cy.wait(500)
|
||||||
cy.get('.detail-overlay').should('be.visible')
|
cy.get('[class*="detail"]').should('be.visible')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ describe('Recipe Detail', () => {
|
|||||||
|
|
||||||
it('closes detail panel when clicking close button', () => {
|
it('closes detail panel when clicking close button', () => {
|
||||||
cy.get('.recipe-card').first().click()
|
cy.get('.recipe-card').first().click()
|
||||||
cy.get('.detail-overlay').should('be.visible')
|
cy.get('[class*="detail"]').should('be.visible')
|
||||||
cy.get('button').contains(/✕|关闭/).first().click()
|
cy.get('button').contains(/✕|关闭/).first().click()
|
||||||
cy.get('.recipe-card').should('be.visible')
|
cy.get('.recipe-card').should('be.visible')
|
||||||
})
|
})
|
||||||
@@ -61,33 +61,21 @@ describe('Recipe Detail - Editor (Admin)', () => {
|
|||||||
|
|
||||||
it('shows editable ingredients table in editor tab', () => {
|
it('shows editable ingredients table in editor tab', () => {
|
||||||
cy.get('.recipe-card').first().click()
|
cy.get('.recipe-card').first().click()
|
||||||
cy.get('.detail-overlay', { timeout: 5000 }).should('be.visible')
|
cy.wait(500)
|
||||||
cy.get('.detail-overlay').then($el => {
|
|
||||||
if ($el.find(':contains("编辑")').filter('button').length) {
|
|
||||||
cy.contains('编辑').click()
|
cy.contains('编辑').click()
|
||||||
cy.get('.editor-select, .editor-drops').should('exist')
|
cy.get('.editor-select, .editor-drops').should('exist')
|
||||||
} else {
|
|
||||||
cy.log('Edit button not available (not admin) — skipping')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('shows add ingredient button in editor tab', () => {
|
it('shows add ingredient button in editor tab', () => {
|
||||||
cy.get('.recipe-card').first().click()
|
cy.get('.recipe-card').first().click()
|
||||||
cy.get('.detail-overlay', { timeout: 5000 }).should('be.visible')
|
cy.wait(500)
|
||||||
cy.get('.detail-overlay').then($el => {
|
|
||||||
if ($el.find(':contains("编辑")').filter('button').length) {
|
|
||||||
cy.contains('编辑').click()
|
cy.contains('编辑').click()
|
||||||
cy.contains('添加精油').should('exist')
|
cy.contains('添加精油').should('exist')
|
||||||
} else {
|
|
||||||
cy.log('Edit button not available (not admin) — skipping')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('shows save image button', () => {
|
it('shows export image button', () => {
|
||||||
cy.get('.recipe-card').first().click()
|
cy.get('.recipe-card').first().click()
|
||||||
cy.get('.detail-overlay', { timeout: 5000 }).should('be.visible')
|
cy.wait(500)
|
||||||
cy.contains('保存图片').should('exist')
|
cy.contains('导出图片').should('exist')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Main content -->
|
<!-- Main content -->
|
||||||
<div class="main" @touchstart="onSwipeStart" @touchend="onSwipeEnd">
|
<div class="main">
|
||||||
<router-view />
|
<router-view />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, onMounted, watch } from 'vue'
|
import { ref, onMounted, watch } from 'vue'
|
||||||
import { useRouter, useRoute } from 'vue-router'
|
import { useRouter, useRoute } from 'vue-router'
|
||||||
import { useAuthStore } from './stores/auth'
|
import { useAuthStore } from './stores/auth'
|
||||||
import { useOilsStore } from './stores/oils'
|
import { useOilsStore } from './stores/oils'
|
||||||
@@ -121,48 +121,6 @@ function toggleUserMenu() {
|
|||||||
showUserMenu.value = !showUserMenu.value
|
showUserMenu.value = !showUserMenu.value
|
||||||
}
|
}
|
||||||
|
|
||||||
// Swipe to switch tabs
|
|
||||||
const swipeStartX = ref(0)
|
|
||||||
const swipeStartY = ref(0)
|
|
||||||
|
|
||||||
// Tab order for swipe navigation (only user-accessible tabs)
|
|
||||||
const tabOrder = computed(() => {
|
|
||||||
const tabs = ['search', 'oils']
|
|
||||||
if (auth.isLoggedIn) {
|
|
||||||
tabs.splice(1, 0, 'manage', 'inventory')
|
|
||||||
}
|
|
||||||
if (auth.isBusiness) tabs.push('projects')
|
|
||||||
return tabs
|
|
||||||
})
|
|
||||||
|
|
||||||
function onSwipeStart(e) {
|
|
||||||
const touch = e.touches[0]
|
|
||||||
swipeStartX.value = touch.clientX
|
|
||||||
swipeStartY.value = touch.clientY
|
|
||||||
}
|
|
||||||
|
|
||||||
function onSwipeEnd(e) {
|
|
||||||
const touch = e.changedTouches[0]
|
|
||||||
const dx = touch.clientX - swipeStartX.value
|
|
||||||
const dy = touch.clientY - swipeStartY.value
|
|
||||||
// Only trigger if horizontal swipe is dominant and > 50px
|
|
||||||
if (Math.abs(dx) < 50 || Math.abs(dy) > Math.abs(dx)) return
|
|
||||||
// Check if the swipe originated inside a carousel (data-no-tab-swipe)
|
|
||||||
if (e.target.closest && e.target.closest('[data-no-tab-swipe]')) return
|
|
||||||
|
|
||||||
const tabs = tabOrder.value
|
|
||||||
const currentIdx = tabs.indexOf(ui.currentSection)
|
|
||||||
if (currentIdx < 0) return
|
|
||||||
|
|
||||||
if (dx < -50 && currentIdx < tabs.length - 1) {
|
|
||||||
// Swipe left -> next tab
|
|
||||||
goSection(tabs[currentIdx + 1])
|
|
||||||
} else if (dx > 50 && currentIdx > 0) {
|
|
||||||
// Swipe right -> previous tab
|
|
||||||
goSection(tabs[currentIdx - 1])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await auth.initToken()
|
await auth.initToken()
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
|
|||||||
@@ -8,8 +8,6 @@
|
|||||||
type="text"
|
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"
|
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"
|
@keydown.enter="submitPrompt"
|
||||||
@compositionstart="isComposing = true"
|
|
||||||
@compositionend="onCompositionEnd"
|
|
||||||
ref="promptInput"
|
ref="promptInput"
|
||||||
/>
|
/>
|
||||||
<div class="dialog-btn-row">
|
<div class="dialog-btn-row">
|
||||||
@@ -21,12 +19,11 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, watch, nextTick, shallowRef } from 'vue'
|
import { ref, watch, nextTick } from 'vue'
|
||||||
import { dialogState, closeDialog } from '../composables/useDialog'
|
import { dialogState, closeDialog } from '../composables/useDialog'
|
||||||
|
|
||||||
const inputValue = ref('')
|
const inputValue = ref('')
|
||||||
const promptInput = ref(null)
|
const promptInput = ref(null)
|
||||||
const isComposing = shallowRef(false)
|
|
||||||
|
|
||||||
watch(() => dialogState.visible, (v) => {
|
watch(() => dialogState.visible, (v) => {
|
||||||
if (v && dialogState.type === 'prompt') {
|
if (v && dialogState.type === 'prompt') {
|
||||||
@@ -49,15 +46,7 @@ function cancel() {
|
|||||||
else closeDialog(null)
|
else closeDialog(null)
|
||||||
}
|
}
|
||||||
|
|
||||||
function onCompositionEnd(e) {
|
function submitPrompt() {
|
||||||
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
|
|
||||||
closeDialog(inputValue.value)
|
closeDialog(inputValue.value)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
class="action-btn action-btn-sm"
|
class="action-btn action-btn-sm"
|
||||||
@click="viewMode = 'editor'"
|
@click="viewMode = 'editor'"
|
||||||
>编辑</button>
|
>编辑</button>
|
||||||
<button class="detail-close-btn" @click="handleClose">✕</button>
|
<button class="detail-close-btn" @click="$emit('close')">✕</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Language toggle -->
|
<!-- Language toggle -->
|
||||||
@@ -36,17 +36,6 @@
|
|||||||
>English</button>
|
>English</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Volume selector -->
|
|
||||||
<div 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) -->
|
<!-- Card image (rendered by html2canvas) -->
|
||||||
<div v-show="!cardImageUrl" ref="cardRef" class="export-card">
|
<div v-show="!cardImageUrl" ref="cardRef" class="export-card">
|
||||||
<!-- Brand overlay layers -->
|
<!-- Brand overlay layers -->
|
||||||
@@ -102,8 +91,8 @@
|
|||||||
<div v-if="dilutionDesc" class="card-dilution">{{ dilutionDesc }}</div>
|
<div v-if="dilutionDesc" class="card-dilution">{{ dilutionDesc }}</div>
|
||||||
|
|
||||||
<!-- Note -->
|
<!-- Note -->
|
||||||
<div v-if="displayRecipe.note" class="card-note">
|
<div v-if="recipe.note" class="card-note">
|
||||||
{{ '📝 ' + displayRecipe.note }}
|
{{ cardLang === 'en' ? '📝 ' + recipe.note : '📝 ' + recipe.note }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Total cost bar -->
|
<!-- Total cost bar -->
|
||||||
@@ -173,7 +162,7 @@
|
|||||||
<div class="editor-header-actions">
|
<div class="editor-header-actions">
|
||||||
<button class="action-btn action-btn-primary action-btn-sm" @click="saveRecipe">💾 保存</button>
|
<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="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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -226,29 +215,10 @@
|
|||||||
|
|
||||||
<!-- Add ingredient row -->
|
<!-- Add ingredient row -->
|
||||||
<div v-if="showAddRow" class="add-ingredient-row">
|
<div v-if="showAddRow" class="add-ingredient-row">
|
||||||
<div class="oil-autocomplete">
|
<select v-model="newIngOil" class="editor-select">
|
||||||
<input
|
<option value="">— 选择精油 —</option>
|
||||||
v-model="oilSearchQuery"
|
<option v-for="name in oilsStore.oilNames" :key="name" :value="name">{{ name }}</option>
|
||||||
@focus="showOilDropdown = true"
|
</select>
|
||||||
@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>
|
|
||||||
<input
|
<input
|
||||||
v-model.number="newIngDrops"
|
v-model.number="newIngDrops"
|
||||||
type="number"
|
type="number"
|
||||||
@@ -258,7 +228,7 @@
|
|||||||
class="editor-drops"
|
class="editor-drops"
|
||||||
/>
|
/>
|
||||||
<button class="action-btn action-btn-primary action-btn-sm" @click="confirmAddIngredient">确认</button>
|
<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>
|
</div>
|
||||||
<button v-else class="add-row-btn" @click="showAddRow = true">+ 添加精油</button>
|
<button v-else class="add-row-btn" @click="showAddRow = true">+ 添加精油</button>
|
||||||
</div>
|
</div>
|
||||||
@@ -388,7 +358,6 @@ import { useDiaryStore } from '../stores/diary'
|
|||||||
import { api } from '../composables/useApi'
|
import { api } from '../composables/useApi'
|
||||||
import { showConfirm, showPrompt } from '../composables/useDialog'
|
import { showConfirm, showPrompt } from '../composables/useDialog'
|
||||||
import { oilEn, recipeNameEn } from '../composables/useOilTranslation'
|
import { oilEn, recipeNameEn } from '../composables/useOilTranslation'
|
||||||
import { matchesPinyinInitials } from '../composables/usePinyinMatch'
|
|
||||||
// TagPicker replaced with inline tag editing
|
// TagPicker replaced with inline tag editing
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
@@ -415,20 +384,11 @@ const customRecipeNameEn = ref('')
|
|||||||
const customOilNameEn = ref({})
|
const customOilNameEn = ref({})
|
||||||
const generatingImage = ref(false)
|
const generatingImage = ref(false)
|
||||||
|
|
||||||
// ---- Preview override: holds unsaved editor state when user clicks "预览" ----
|
|
||||||
const previewOverride = ref(null)
|
|
||||||
|
|
||||||
// ---- Source recipe ----
|
// ---- Source recipe ----
|
||||||
const recipe = computed(() =>
|
const recipe = computed(() =>
|
||||||
recipesStore.recipes[props.recipeIndex] || { name: '', ingredients: [], tags: [], note: '' }
|
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 canEditThisRecipe = computed(() => {
|
const canEditThisRecipe = computed(() => {
|
||||||
if (authStore.canEdit) return true
|
if (authStore.canEdit) return true
|
||||||
if (authStore.isLoggedIn && recipe.value._owner_id === authStore.user.id) return true
|
if (authStore.isLoggedIn && recipe.value._owner_id === authStore.user.id) return true
|
||||||
@@ -451,7 +411,7 @@ function scaleIngredients(ingredients, volume) {
|
|||||||
|
|
||||||
// Card ingredients: scaled to selected volume, coconut oil excluded from display
|
// Card ingredients: scaled to selected volume, coconut oil excluded from display
|
||||||
const scaledCardIngredients = computed(() =>
|
const scaledCardIngredients = computed(() =>
|
||||||
scaleIngredients(displayRecipe.value.ingredients, selectedCardVolume.value)
|
scaleIngredients(recipe.value.ingredients, selectedCardVolume.value)
|
||||||
)
|
)
|
||||||
|
|
||||||
const cardIngredients = computed(() =>
|
const cardIngredients = computed(() =>
|
||||||
@@ -599,12 +559,12 @@ function copyText() {
|
|||||||
})
|
})
|
||||||
const total = priceInfo.value.cost
|
const total = priceInfo.value.cost
|
||||||
const text = [
|
const text = [
|
||||||
displayRecipe.value.name,
|
recipe.value.name,
|
||||||
'---',
|
'---',
|
||||||
...lines,
|
...lines,
|
||||||
'---',
|
'---',
|
||||||
`总成本: ${total}`,
|
`总成本: ${total}`,
|
||||||
displayRecipe.value.note ? `备注: ${displayRecipe.value.note}` : '',
|
recipe.value.note ? `备注: ${recipe.value.note}` : '',
|
||||||
].filter(Boolean).join('\n')
|
].filter(Boolean).join('\n')
|
||||||
|
|
||||||
navigator.clipboard.writeText(text).then(() => {
|
navigator.clipboard.writeText(text).then(() => {
|
||||||
@@ -616,11 +576,12 @@ function copyText() {
|
|||||||
|
|
||||||
async function applyTranslation() {
|
async function applyTranslation() {
|
||||||
showTranslationEditor.value = false
|
showTranslationEditor.value = false
|
||||||
// Persist en_name to backend
|
// Persist en_name and en_oils to backend
|
||||||
if (recipe.value._id && customRecipeNameEn.value) {
|
if (recipe.value._id) {
|
||||||
try {
|
try {
|
||||||
await api.put(`/api/recipes/${recipe.value._id}`, {
|
await api.put(`/api/recipes/${recipe.value._id}`, {
|
||||||
en_name: customRecipeNameEn.value,
|
en_name: customRecipeNameEn.value,
|
||||||
|
en_oils: JSON.stringify(customOilNameEn.value),
|
||||||
version: recipe.value._version,
|
version: recipe.value._version,
|
||||||
})
|
})
|
||||||
ui.showToast('翻译已保存')
|
ui.showToast('翻译已保存')
|
||||||
@@ -642,9 +603,9 @@ function getCardOilName(name) {
|
|||||||
|
|
||||||
function getCardRecipeName() {
|
function getCardRecipeName() {
|
||||||
if (cardLang.value === 'en') {
|
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 ----
|
// ---- Favorite ----
|
||||||
@@ -673,26 +634,17 @@ async function saveToDiary() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
const name = await showPrompt('保存为我的配方,名称:', recipe.value.name)
|
const name = await showPrompt('保存为我的配方,名称:', recipe.value.name)
|
||||||
// null = user cancelled (clicked 取消)
|
if (!name) return
|
||||||
if (name === null) return
|
|
||||||
// empty string = user cleared the name field
|
|
||||||
if (!name.trim()) {
|
|
||||||
ui.showToast('请输入配方名称')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
const payload = {
|
await api.post('/api/diary', {
|
||||||
name: name.trim(),
|
name,
|
||||||
|
source_recipe_id: recipe.value._id || null,
|
||||||
|
ingredients: recipe.value.ingredients.map(i => ({ oil: i.oil, drops: i.drops })),
|
||||||
note: recipe.value.note || '',
|
note: recipe.value.note || '',
|
||||||
ingredients: recipe.value.ingredients.map(i => ({ oil_name: i.oil, drops: i.drops })),
|
})
|
||||||
tags: recipe.value.tags || [],
|
ui.showToast('已保存到「我的配方日记」')
|
||||||
}
|
|
||||||
console.log('[saveToDiary] saving recipe:', payload)
|
|
||||||
await recipesStore.saveRecipe(payload)
|
|
||||||
ui.showToast('已保存!可在「配方查询 → 我的配方」查看')
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('[saveToDiary] failed:', e)
|
ui.showToast('保存失败: ' + (e?.message || '未知错误'))
|
||||||
ui.showToast('保存失败:' + (e?.message || e?.status || '未知错误'), 3000)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -706,36 +658,6 @@ const newIngOil = ref('')
|
|||||||
const newIngDrops = ref(1)
|
const newIngDrops = ref(1)
|
||||||
const newTagInput = ref('')
|
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
|
// Volume & dilution
|
||||||
const selectedVolume = ref('single')
|
const selectedVolume = ref('single')
|
||||||
const customVolumeValue = ref(100)
|
const customVolumeValue = ref(100)
|
||||||
@@ -787,9 +709,10 @@ onMounted(() => {
|
|||||||
editIngredients.value = (r.ingredients || []).map(i => ({ oil: i.oil, drops: i.drops }))
|
editIngredients.value = (r.ingredients || []).map(i => ({ oil: i.oil, drops: i.drops }))
|
||||||
// Init translation defaults
|
// Init translation defaults
|
||||||
customRecipeNameEn.value = r.en_name || recipeNameEn(r.name)
|
customRecipeNameEn.value = r.en_name || recipeNameEn(r.name)
|
||||||
|
const savedOilMap = r.en_oils ? (() => { try { return JSON.parse(r.en_oils) } catch { return {} } })() : {}
|
||||||
const enMap = {}
|
const enMap = {}
|
||||||
;(r.ingredients || []).forEach(ing => {
|
;(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
|
customOilNameEn.value = enMap
|
||||||
|
|
||||||
@@ -816,7 +739,6 @@ function confirmAddIngredient() {
|
|||||||
}
|
}
|
||||||
editIngredients.value.push({ oil: newIngOil.value, drops: newIngDrops.value })
|
editIngredients.value.push({ oil: newIngOil.value, drops: newIngDrops.value })
|
||||||
newIngOil.value = ''
|
newIngOil.value = ''
|
||||||
oilSearchQuery.value = ''
|
|
||||||
newIngDrops.value = 1
|
newIngDrops.value = 1
|
||||||
showAddRow.value = false
|
showAddRow.value = false
|
||||||
}
|
}
|
||||||
@@ -909,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() {
|
function previewFromEditor() {
|
||||||
// Capture current editor state and show it in card view
|
// Temporarily update recipe view with editor data, switch to card
|
||||||
previewOverride.value = {
|
// We just switch to card mode; the card shows the saved recipe
|
||||||
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 })),
|
|
||||||
}
|
|
||||||
viewMode.value = 'card'
|
viewMode.value = 'card'
|
||||||
cardImageUrl.value = null
|
cardImageUrl.value = null
|
||||||
nextTick(() => generateCardImage())
|
nextTick(() => generateCardImage())
|
||||||
@@ -975,11 +862,7 @@ async function saveRecipe() {
|
|||||||
// Reload recipes so the data is fresh when re-opened
|
// Reload recipes so the data is fresh when re-opened
|
||||||
await recipesStore.loadRecipes()
|
await recipesStore.loadRecipes()
|
||||||
ui.showToast('保存成功')
|
ui.showToast('保存成功')
|
||||||
// Go to card view instead of closing
|
emit('close')
|
||||||
previewOverride.value = null
|
|
||||||
viewMode.value = 'card'
|
|
||||||
cardImageUrl.value = null
|
|
||||||
nextTick(() => generateCardImage())
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
ui.showToast('保存失败: ' + (e?.message || '未知错误'))
|
ui.showToast('保存失败: ' + (e?.message || '未知错误'))
|
||||||
}
|
}
|
||||||
@@ -1802,70 +1685,6 @@ async function saveRecipe() {
|
|||||||
cursor: not-allowed;
|
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 */
|
/* Responsive */
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
.detail-panel {
|
.detail-panel {
|
||||||
|
|||||||
@@ -28,10 +28,7 @@
|
|||||||
<div class="notif-list">
|
<div class="notif-list">
|
||||||
<div v-for="n in notifications.slice(0, 20)" :key="n.id"
|
<div v-for="n in notifications.slice(0, 20)" :key="n.id"
|
||||||
class="notif-item" :class="{ unread: !n.is_read }">
|
class="notif-item" :class="{ unread: !n.is_read }">
|
||||||
<div class="notif-item-header">
|
|
||||||
<div class="notif-title">{{ n.title }}</div>
|
<div class="notif-title">{{ n.title }}</div>
|
||||||
<button v-if="!n.is_read" class="notif-mark-one" @click="markOneRead(n)">已读</button>
|
|
||||||
</div>
|
|
||||||
<div v-if="n.body" class="notif-body">{{ n.body }}</div>
|
<div v-if="n.body" class="notif-body">{{ n.body }}</div>
|
||||||
<div class="notif-time">{{ formatTime(n.created_at) }}</div>
|
<div class="notif-time">{{ formatTime(n.created_at) }}</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -108,13 +105,6 @@ async function submitBug() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function markOneRead(n) {
|
|
||||||
try {
|
|
||||||
await api(`/api/notifications/${n.id}/read`, { method: 'POST', body: '{}' })
|
|
||||||
n.is_read = 1
|
|
||||||
} catch {}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function markAllRead() {
|
async function markAllRead() {
|
||||||
try {
|
try {
|
||||||
await api('/api/notifications/read-all', { method: 'POST', body: '{}' })
|
await api('/api/notifications/read-all', { method: 'POST', body: '{}' })
|
||||||
@@ -197,14 +187,7 @@ onMounted(loadNotifications)
|
|||||||
padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px;
|
padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px;
|
||||||
}
|
}
|
||||||
.notif-item.unread { background: #fafafa; }
|
.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; }
|
||||||
.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-body { color: #888; font-size: 12px; margin-top: 2px; white-space: pre-line; }
|
.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-time { color: #bbb; font-size: 11px; margin-top: 2px; }
|
||||||
.notif-empty { text-align: center; color: #ccc; padding: 16px; font-size: 13px; }
|
.notif-empty { text-align: center; color: #ccc; padding: 16px; font-size: 13px; }
|
||||||
|
|||||||
@@ -39,11 +39,3 @@ export function getOilCard(name) {
|
|||||||
if (base !== name && OIL_CARDS[base]) return OIL_CARDS[base]
|
if (base !== name && OIL_CARDS[base]) return OIL_CARDS[base]
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
export function setOilCard(name, card) {
|
|
||||||
if (card && (card.effects || card.usage)) {
|
|
||||||
OIL_CARDS[name] = card
|
|
||||||
} else {
|
|
||||||
delete OIL_CARDS[name]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -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)
|
|
||||||
}
|
|
||||||
@@ -69,20 +69,18 @@ export const useOilsStore = defineStore('oils', () => {
|
|||||||
dropCount: oil.drop_count,
|
dropCount: oil.drop_count,
|
||||||
retailPrice: oil.retail_price ?? null,
|
retailPrice: oil.retail_price ?? null,
|
||||||
isActive: oil.is_active ?? true,
|
isActive: oil.is_active ?? true,
|
||||||
enName: oil.en_name ?? null,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
oils.value = newOils
|
oils.value = newOils
|
||||||
oilsMeta.value = newMeta
|
oilsMeta.value = newMeta
|
||||||
}
|
}
|
||||||
|
|
||||||
async function saveOil(name, bottlePrice, dropCount, retailPrice, enName = null) {
|
async function saveOil(name, bottlePrice, dropCount, retailPrice) {
|
||||||
await api.post('/api/oils', {
|
await api.post('/api/oils', {
|
||||||
name,
|
name,
|
||||||
bottle_price: bottlePrice,
|
bottle_price: bottlePrice,
|
||||||
drop_count: dropCount,
|
drop_count: dropCount,
|
||||||
retail_price: retailPrice,
|
retail_price: retailPrice,
|
||||||
en_name: enName,
|
|
||||||
})
|
})
|
||||||
await loadOils()
|
await loadOils()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ export const useRecipesStore = defineStore('recipes', () => {
|
|||||||
_version: r._version ?? r.version ?? 1,
|
_version: r._version ?? r.version ?? 1,
|
||||||
name: r.name,
|
name: r.name,
|
||||||
en_name: r.en_name ?? '',
|
en_name: r.en_name ?? '',
|
||||||
|
en_oils: r.en_oils ?? '{}',
|
||||||
note: r.note ?? '',
|
note: r.note ?? '',
|
||||||
tags: r.tags ?? [],
|
tags: r.tags ?? [],
|
||||||
ingredients: (r.ingredients ?? []).map((ing) => ({
|
ingredients: (r.ingredients ?? []).map((ing) => ({
|
||||||
@@ -53,12 +54,7 @@ export const useRecipesStore = defineStore('recipes', () => {
|
|||||||
return data
|
return data
|
||||||
} else {
|
} else {
|
||||||
const data = await api.post('/api/recipes', recipe)
|
const data = await api.post('/api/recipes', recipe)
|
||||||
// Refresh list; if refresh fails, still return success (recipe was saved)
|
|
||||||
try {
|
|
||||||
await loadRecipes()
|
await loadRecipes()
|
||||||
} catch (e) {
|
|
||||||
console.warn('[saveRecipe] loadRecipes failed after save:', e)
|
|
||||||
}
|
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -135,7 +135,6 @@
|
|||||||
<span v-else class="upload-hint">📲 点击上传二维码图片</span>
|
<span v-else class="upload-hint">📲 点击上传二维码图片</span>
|
||||||
</div>
|
</div>
|
||||||
<input ref="qrInput" type="file" accept="image/*" style="display:none" @change="handleUpload('qr', $event)" />
|
<input ref="qrInput" type="file" accept="image/*" style="display:none" @change="handleUpload('qr', $event)" />
|
||||||
<button v-if="brandQrImage" class="btn-outline btn-sm btn-clear-img" @click="clearBrandImage('qr')">清除二维码</button>
|
|
||||||
<div class="field-hint">上传后将显示在配方卡片右下角</div>
|
<div class="field-hint">上传后将显示在配方卡片右下角</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -146,7 +145,6 @@
|
|||||||
<span v-else class="upload-hint">点击上传Logo</span>
|
<span v-else class="upload-hint">点击上传Logo</span>
|
||||||
</div>
|
</div>
|
||||||
<input ref="logoInput" type="file" accept="image/*" style="display:none" @change="handleUpload('logo', $event)" />
|
<input ref="logoInput" type="file" accept="image/*" style="display:none" @change="handleUpload('logo', $event)" />
|
||||||
<button v-if="brandLogo" class="btn-outline btn-sm btn-clear-img" @click="clearBrandImage('logo')">清除Logo</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@@ -156,7 +154,6 @@
|
|||||||
<span v-else class="upload-hint">点击上传背景图</span>
|
<span v-else class="upload-hint">点击上传背景图</span>
|
||||||
</div>
|
</div>
|
||||||
<input ref="bgInput" type="file" accept="image/*" style="display:none" @change="handleUpload('bg', $event)" />
|
<input ref="bgInput" type="file" accept="image/*" style="display:none" @change="handleUpload('bg', $event)" />
|
||||||
<button v-if="brandBg" class="btn-outline btn-sm btn-clear-img" @click="clearBrandImage('bg')">清除背景</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -423,26 +420,6 @@ async function handleUpload(type, event) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function clearBrandImage(type) {
|
|
||||||
const fieldMap = { logo: 'brand_logo', bg: 'brand_bg', qr: 'qr_code' }
|
|
||||||
const field = fieldMap[type]
|
|
||||||
if (!field) return
|
|
||||||
try {
|
|
||||||
const res = await api('/api/brand', {
|
|
||||||
method: 'PUT',
|
|
||||||
body: JSON.stringify({ [field]: '' }),
|
|
||||||
})
|
|
||||||
if (res.ok) {
|
|
||||||
if (type === 'logo') brandLogo.value = ''
|
|
||||||
else if (type === 'bg') brandBg.value = ''
|
|
||||||
else if (type === 'qr') brandQrImage.value = ''
|
|
||||||
ui.showToast('已清除')
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
ui.showToast('清除失败')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Account
|
// Account
|
||||||
async function updateDisplayName() {
|
async function updateDisplayName() {
|
||||||
try {
|
try {
|
||||||
@@ -876,12 +853,6 @@ async function applyBusiness() {
|
|||||||
color: #b0aab5;
|
color: #b0aab5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-clear-img {
|
|
||||||
margin-top: 6px;
|
|
||||||
color: #d9534f;
|
|
||||||
border-color: #d9534f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hint-text {
|
.hint-text {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #6b6375;
|
color: #6b6375;
|
||||||
|
|||||||
@@ -1,159 +1,167 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="oil-reference">
|
<div class="oil-reference">
|
||||||
<!-- Knowledge Cards at Top -->
|
<!-- Knowledge Cards at Top -->
|
||||||
<div style="display:flex;gap:10px;margin-bottom:16px;flex-wrap:wrap">
|
<div class="knowledge-cards">
|
||||||
<div @click="showDilution = true" style="flex:1;min-width:140px;background:linear-gradient(135deg,#e8f5e9,#c8e6c9);border-radius:14px;padding:16px;cursor:pointer;transition:transform 0.2s" @mouseover="$event.target.style.transform='translateY(-2px)'" @mouseout="$event.target.style.transform=''">
|
<div class="kcard" @click="showDilution = true">
|
||||||
<div style="font-size:24px;margin-bottom:6px">💧</div>
|
<span class="kcard-icon">💧</span>
|
||||||
<div style="font-size:14px;font-weight:600;color:#2e7d32">稀释比例</div>
|
<span class="kcard-title">稀释比例</span>
|
||||||
<div style="font-size:11px;color:#558b2f;margin-top:4px">不同年龄段的稀释指南</div>
|
<span class="kcard-arrow">›</span>
|
||||||
</div>
|
</div>
|
||||||
<div @click="showContra = true" style="flex:1;min-width:140px;background:linear-gradient(135deg,#fff8e1,#ffecb3);border-radius:14px;padding:16px;cursor:pointer;transition:transform 0.2s" @mouseover="$event.target.style.transform='translateY(-2px)'" @mouseout="$event.target.style.transform=''">
|
<div class="kcard" @click="showContra = true">
|
||||||
<div style="font-size:24px;margin-bottom:6px">⚠️</div>
|
<span class="kcard-icon">⚠️</span>
|
||||||
<div style="font-size:14px;font-weight:600;color:#f57f17">使用禁忌</div>
|
<span class="kcard-title">使用禁忌</span>
|
||||||
<div style="font-size:11px;color:#ff8f00;margin-top:4px">安全使用精油的注意事项</div>
|
<span class="kcard-arrow">›</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Dilution Ratio Modal -->
|
<!-- Dilution Ratio Modal -->
|
||||||
<div v-if="showDilution" class="modal-overlay" @click.self="showDilution = false">
|
<div v-if="showDilution" class="modal-overlay" @click.self="showDilution = false">
|
||||||
<div style="position:relative;z-index:1;background:white;border-radius:20px;max-width:420px;width:100%;max-height:88vh;overflow-y:auto;box-shadow:0 16px 56px rgba(0,0,0,0.25)" @click.stop>
|
<div class="modal-panel">
|
||||||
<div style="background:linear-gradient(135deg,#2e7d32,#66bb6a);border-radius:20px 20px 0 0;padding:28px 24px;color:white;text-align:center;position:relative">
|
<div class="modal-header">
|
||||||
<button @click="showDilution = false" style="position:absolute;top:12px;right:16px;background:rgba(255,255,255,0.2);border:none;color:white;width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:16px">×</button>
|
<h3>💧 稀释比例参考</h3>
|
||||||
<div style="font-size:48px;margin-bottom:8px">💧</div>
|
<button class="btn-close" @click="showDilution = false">✕</button>
|
||||||
<div style="font-family:'Noto Serif SC',serif;font-size:22px;font-weight:700">精油稀释比例指南</div>
|
|
||||||
<div style="font-size:13px;opacity:0.85;margin-top:4px">安全使用,科学稀释</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div style="padding:24px">
|
<div class="modal-body">
|
||||||
<table style="width:100%;border-collapse:collapse;font-size:14px">
|
<table class="info-table">
|
||||||
<tr style="border-bottom:2px solid #e8f5e9"><th style="text-align:left;padding:10px 8px;color:#2e7d32">适用人群</th><th style="text-align:right;padding:10px 8px;color:#2e7d32">精油 : 椰子油</th></tr>
|
<thead>
|
||||||
<tr style="border-bottom:1px solid #f0f0f0"><td style="padding:10px 8px">👶 1岁以下</td><td style="text-align:right;padding:10px 8px;font-weight:600">1 : 200</td></tr>
|
<tr><th>用途</th><th>比例</th><th>每10ml基底油</th></tr>
|
||||||
<tr style="border-bottom:1px solid #f0f0f0"><td style="padding:10px 8px">🧒 1 至 2 岁</td><td style="text-align:right;padding:10px 8px;font-weight:600">1 : 100</td></tr>
|
</thead>
|
||||||
<tr style="border-bottom:1px solid #f0f0f0"><td style="padding:10px 8px">👦 2 至 6 岁</td><td style="text-align:right;padding:10px 8px;font-weight:600">1 : 50</td></tr>
|
<tbody>
|
||||||
<tr style="border-bottom:1px solid #f0f0f0"><td style="padding:10px 8px">🧑 6 至 12 岁</td><td style="text-align:right;padding:10px 8px;font-weight:600">1 : 10</td></tr>
|
<tr><td>面部护肤</td><td>1%</td><td>2滴精油</td></tr>
|
||||||
<tr style="border-bottom:1px solid #f0f0f0"><td style="padding:10px 8px">🧴 成人敏感肌</td><td style="text-align:right;padding:10px 8px;font-weight:600">1 : 5~10</td></tr>
|
<tr><td>身体按摩</td><td>2-3%</td><td>4-6滴精油</td></tr>
|
||||||
<tr><td style="padding:10px 8px">🔥 强刺激精油<br><span style="font-size:11px;color:var(--text-light)">牛至/肉桂/丁香/桂皮等</span></td><td style="text-align:right;padding:10px 8px;font-weight:600">1 : 6~10</td></tr>
|
<tr><td>局部疼痛</td><td>3-5%</td><td>6-10滴精油</td></tr>
|
||||||
|
<tr><td>急救用途</td><td>5-10%</td><td>10-20滴精油</td></tr>
|
||||||
|
<tr><td>儿童(2-6岁)</td><td>0.5-1%</td><td>1-2滴精油</td></tr>
|
||||||
|
<tr><td>婴儿(<2岁)</td><td>0.25%</td><td>0.5滴精油</td></tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div style="margin-top:16px;padding:12px;background:#e8f5e9;border-radius:10px;font-size:12px;color:#2e7d32;text-align:center">
|
<p class="info-note">* 1ml 约等于 {{ DROPS_PER_ML }} 滴</p>
|
||||||
💡 稀释比例 = 1滴精油 : N滴椰子油<br>比例越大越温和,新手建议从高稀释比例开始
|
<button class="btn-save-img" @click="saveDilutionImage">💾 保存图片</button>
|
||||||
</div>
|
|
||||||
<div style="text-align:center;margin-top:12px">
|
|
||||||
<button @click="saveDilutionImage" style="padding:8px 16px;border-radius:10px;border:1.5px solid var(--sage);background:white;color:var(--sage-dark);cursor:pointer;font-size:13px;font-family:inherit">💾 保存图片</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Safety Cautions Modal -->
|
<!-- Safety Cautions Modal -->
|
||||||
<div v-if="showContra" class="modal-overlay" @click.self="showContra = false">
|
<div v-if="showContra" class="modal-overlay" @click.self="showContra = false">
|
||||||
<div style="position:relative;z-index:1;background:white;border-radius:20px;max-width:420px;width:100%;max-height:88vh;overflow-y:auto;box-shadow:0 16px 56px rgba(0,0,0,0.25)" @click.stop>
|
<div class="modal-panel">
|
||||||
<div style="background:linear-gradient(135deg,#e65100,#ff9800);border-radius:20px 20px 0 0;padding:28px 24px;color:white;text-align:center;position:relative">
|
<div class="modal-header">
|
||||||
<button @click="showContra = false" style="position:absolute;top:12px;right:16px;background:rgba(255,255,255,0.2);border:none;color:white;width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:16px">×</button>
|
<h3>⚠️ 使用禁忌</h3>
|
||||||
<div style="font-size:48px;margin-bottom:8px">⚠️</div>
|
<button class="btn-close" @click="showContra = false">✕</button>
|
||||||
<div style="font-family:'Noto Serif SC',serif;font-size:22px;font-weight:700">精油使用禁忌</div>
|
|
||||||
<div style="font-size:13px;opacity:0.85;margin-top:4px">安全第一,正确使用</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div style="padding:24px;display:flex;flex-direction:column;gap:12px">
|
<div class="modal-body">
|
||||||
<div style="display:flex;gap:10px;align-items:flex-start">
|
<div class="contra-section">
|
||||||
<span style="font-size:20px;flex-shrink:0">🚫</span>
|
<h4>光敏性精油(涂抹后12小时内避免阳光直射)</h4>
|
||||||
<div><div style="font-weight:600;color:var(--text-dark)">不得入眼、耳、鼻腔</div><div style="font-size:12px;color:var(--text-light);margin-top:2px">精油不可直接接触眼睛、耳道和鼻腔内部</div></div>
|
<p>柠檬、佛手柑、葡萄柚、莱姆、甜橙、野橘</p>
|
||||||
</div>
|
</div>
|
||||||
<div style="display:flex;gap:10px;align-items:flex-start">
|
<div class="contra-section">
|
||||||
<span style="font-size:20px;flex-shrink:0">🥥</span>
|
<h4>孕妇慎用</h4>
|
||||||
<div><div style="font-weight:600;color:var(--text-dark)">误触或刺激 → 用椰子油稀释</div><div style="font-size:12px;color:var(--text-light);margin-top:2px">不可用水冲洗,水会加剧刺激,用椰子油涂抹稀释</div></div>
|
<p>快乐鼠尾草、迷迭香、肉桂、丁香、百里香、牛至、冬青</p>
|
||||||
</div>
|
</div>
|
||||||
<div style="display:flex;gap:10px;align-items:flex-start">
|
<div class="contra-section">
|
||||||
<span style="font-size:20px;flex-shrink:0">🌙</span>
|
<h4>儿童慎用</h4>
|
||||||
<div><div style="font-weight:600;color:var(--text-dark)">柠檬等光敏性精油仅夜间涂抹</div><div style="font-size:12px;color:var(--text-light);margin-top:2px">涂抹后 12 小时内避免阳光直射</div></div>
|
<p>椒样薄荷(6岁以下避免)、尤加利(10岁以下慎用)、冬青、肉桂</p>
|
||||||
</div>
|
</div>
|
||||||
<div style="display:flex;gap:10px;align-items:flex-start">
|
<div class="contra-section">
|
||||||
<span style="font-size:20px;flex-shrink:0">🌡️</span>
|
<h4>宠物禁用</h4>
|
||||||
<div><div style="font-weight:600;color:var(--text-dark)">阴凉避光保存,远离儿童</div><div style="font-size:12px;color:var(--text-light);margin-top:2px">避免高温和阳光直射,放在儿童够不到的地方</div></div>
|
<p>茶树、尤加利、肉桂、丁香、百里香、冬青(对猫有毒)</p>
|
||||||
</div>
|
|
||||||
<div style="display:flex;gap:10px;align-items:flex-start">
|
|
||||||
<span style="font-size:20px;flex-shrink:0">🧴</span>
|
|
||||||
<div><div style="font-weight:600;color:var(--text-dark)">避免和塑料制品接触</div><div style="font-size:12px;color:var(--text-light);margin-top:2px">精油会腐蚀塑料,请使用玻璃或不锈钢容器</div></div>
|
|
||||||
</div>
|
|
||||||
<div style="display:flex;gap:10px;align-items:flex-start">
|
|
||||||
<span style="font-size:20px;flex-shrink:0">💧</span>
|
|
||||||
<div><div style="font-weight:600;color:var(--text-dark)">少量多次,多喝水</div><div style="font-size:12px;color:var(--text-light);margin-top:2px">使用精油后多补充水分,帮助身体代谢</div></div>
|
|
||||||
</div>
|
|
||||||
<div style="text-align:center;margin-top:12px">
|
|
||||||
<button @click="saveContraImage" style="padding:8px 16px;border-radius:10px;border:1.5px solid #e65100;background:white;color:#e65100;cursor:pointer;font-size:13px;font-family:inherit">💾 保存图片</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
<button class="btn-save-img" @click="saveContraImage">💾 保存图片</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Search + View Toggle + Add + PDF -->
|
<!-- Add Oil Form (admin/senior_editor only) -->
|
||||||
<div style="display:flex;gap:8px;align-items:center;margin-bottom:12px;flex-wrap:wrap">
|
<div v-if="auth.canEdit" class="add-oil-form">
|
||||||
<div class="search-box" style="flex:1;min-width:180px;margin-bottom:0">
|
<h3 class="section-title">添加精油</h3>
|
||||||
<input class="search-input" v-model="searchQuery" placeholder="搜索精油名称…" style="width:100%" />
|
|
||||||
</div>
|
|
||||||
<div style="display:flex;border:1.5px solid var(--border);border-radius:10px;overflow:hidden;flex-shrink:0">
|
|
||||||
<button @click="viewMode = 'bottle'" :style="viewMode === 'bottle' ? 'background:var(--sage);color:white' : 'background:white;color:var(--text-mid)'" style="border:none;border-radius:0;font-size:12px;padding:6px 12px;cursor:pointer">每瓶价</button>
|
|
||||||
<button @click="viewMode = 'drop'" :style="viewMode === 'drop' ? 'background:var(--sage);color:white' : 'background:white;color:var(--text-mid)'" style="border:none;border-radius:0;font-size:12px;padding:6px 12px;cursor:pointer">每滴价</button>
|
|
||||||
</div>
|
|
||||||
<button v-if="auth.canEdit" class="btn btn-primary btn-sm" @click="showAddForm = !showAddForm">{{ showAddForm ? '收起' : '+ 新增' }}</button>
|
|
||||||
<button v-if="auth.isAdmin" class="btn btn-gold btn-sm" @click="exportPDF" style="font-size:12px">📥 导出PDF</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Add Oil Form (toggleable) -->
|
|
||||||
<div v-if="showAddForm && auth.canEdit" class="add-oil-form">
|
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<input v-model="newOilName" style="flex:1;min-width:120px" placeholder="精油名称" class="form-input-sm" />
|
<input v-model="newOilName" class="form-input" placeholder="精油名称" />
|
||||||
<input v-model="newOilEnName" style="flex:1;min-width:100px" placeholder="英文名" class="form-input-sm" />
|
<input v-model.number="newBottlePrice" class="form-input-sm" type="number" placeholder="瓶价 ¥" />
|
||||||
<input v-model.number="newBottlePrice" style="width:100px" type="number" step="0.01" min="0" placeholder="会员价 ¥" class="form-input-sm" />
|
<select v-model="newVolume" class="form-select">
|
||||||
<select v-model="newVolume" class="form-input-sm" style="width:110px">
|
|
||||||
<option value="">容量</option>
|
|
||||||
<option value="2.5">2.5ml (46滴)</option>
|
<option value="2.5">2.5ml (46滴)</option>
|
||||||
<option value="5">5ml (93滴)</option>
|
<option value="5">5ml (93滴)</option>
|
||||||
<option value="10">10ml (186滴)</option>
|
<option value="10">10ml (186滴)</option>
|
||||||
<option value="15">15ml (280滴)</option>
|
<option value="15">15ml (280滴)</option>
|
||||||
<option value="115">115ml (2146滴)</option>
|
<option value="115">115ml (2146滴)</option>
|
||||||
<option value="custom">自定义滴数</option>
|
<option value="custom">自定义</option>
|
||||||
</select>
|
</select>
|
||||||
<input v-if="newVolume === 'custom'" v-model.number="newCustomDrops" style="width:80px" type="number" step="1" min="1" placeholder="滴数" class="form-input-sm" />
|
<input
|
||||||
<input v-model.number="newRetailPrice" style="width:100px" type="number" step="0.01" min="0" placeholder="零售价 ¥" class="form-input-sm" />
|
v-if="newVolume === 'custom'"
|
||||||
<button class="btn btn-primary btn-sm" @click="addOil" :disabled="!newOilName.trim()">➕ 添加</button>
|
v-model.number="newCustomDrops"
|
||||||
|
class="form-input-sm"
|
||||||
|
type="number"
|
||||||
|
placeholder="滴数"
|
||||||
|
/>
|
||||||
|
<input v-model.number="newRetailPrice" class="form-input-sm" type="number" placeholder="零售价 ¥" />
|
||||||
|
<button class="btn-primary" @click="addOil" :disabled="!newOilName.trim()">添加</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Search + View Toggle + PDF -->
|
||||||
|
<div class="toolbar">
|
||||||
|
<div class="search-box">
|
||||||
|
<input
|
||||||
|
class="search-input"
|
||||||
|
v-model="searchQuery"
|
||||||
|
placeholder="搜索精油..."
|
||||||
|
/>
|
||||||
|
<button v-if="searchQuery" class="search-clear-btn" @click="searchQuery = ''">✕</button>
|
||||||
|
</div>
|
||||||
|
<div class="view-toggle">
|
||||||
|
<button
|
||||||
|
class="toggle-btn"
|
||||||
|
:class="{ active: viewMode === 'bottle' }"
|
||||||
|
@click="viewMode = 'bottle'"
|
||||||
|
>瓶价</button>
|
||||||
|
<button
|
||||||
|
class="toggle-btn"
|
||||||
|
:class="{ active: viewMode === 'drop' }"
|
||||||
|
@click="viewMode = 'drop'"
|
||||||
|
>滴价</button>
|
||||||
|
</div>
|
||||||
|
<button v-if="auth.canManage" class="btn-pdf" @click="exportPDF" title="导出PDF">
|
||||||
|
📄
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Oil Grid -->
|
<!-- Oil Grid -->
|
||||||
<div class="oils-grid">
|
<div class="oil-grid">
|
||||||
<div
|
<div
|
||||||
v-for="name in filteredOilNames"
|
v-for="name in filteredOilNames"
|
||||||
:key="name + '-' + cardVersion"
|
:key="name"
|
||||||
class="oil-chip"
|
class="oil-chip"
|
||||||
:style="chipStyle(name)"
|
:class="{ 'oil-chip--inactive': getMeta(name)?.isActive === false }"
|
||||||
@click="openOilDetail(name)"
|
@click="openOilDetail(name)"
|
||||||
>
|
>
|
||||||
<div style="flex:1;min-width:0">
|
<span v-if="getOilCard(name)" class="oil-badge" title="有知识卡片">📖</span>
|
||||||
<span class="oil-chip-name">{{ name }}
|
<div class="oil-chip-name">{{ name }}</div>
|
||||||
<span v-if="getOilCard(name)" style="font-size:9px;color:var(--sage);background:var(--sage-mist);padding:1px 5px;border-radius:6px;vertical-align:middle">📖</span>
|
<div class="oil-chip-en">{{ getEnglishName(name) }}</div>
|
||||||
</span>
|
<div class="oil-chip-price" v-if="viewMode === 'bottle'">
|
||||||
<br>
|
<template v-if="getMeta(name)?.bottlePrice != null">
|
||||||
<span style="font-size:10px;color:var(--text-light);font-weight:400">{{ getEnglishName(name) }}</span>
|
¥ {{ getMeta(name).bottlePrice.toFixed(2) }}
|
||||||
</div>
|
|
||||||
<div style="text-align:right;flex-shrink:0">
|
|
||||||
<template v-if="viewMode === 'bottle'">
|
|
||||||
<div style="font-size:13px;color:var(--sage-dark);font-weight:600">
|
|
||||||
¥{{ (getMeta(name)?.bottlePrice || 0).toFixed(0) }}<span style="font-size:10px;font-weight:400;color:var(--text-light)">/瓶</span>
|
|
||||||
<span v-if="getMeta(name)?.dropCount" style="font-size:10px;font-weight:400;color:var(--text-light)"> {{ volumeLabel(getMeta(name).dropCount) }}</span>
|
|
||||||
</div>
|
|
||||||
<div v-if="getMeta(name)?.retailPrice" style="font-size:11px;color:var(--text-light);text-decoration:line-through">¥{{ getMeta(name).retailPrice }}</div>
|
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>--</template>
|
||||||
<div style="font-size:13px;color:var(--sage-dark);font-weight:600">
|
|
||||||
¥{{ oils.pricePerDrop(name).toFixed(2) }}{{ name === '植物空胶囊' ? '/颗' : '/滴' }}
|
|
||||||
</div>
|
|
||||||
<div v-if="getMeta(name)?.retailPrice && getMeta(name)?.dropCount" style="font-size:11px;color:var(--text-light);text-decoration:line-through">
|
|
||||||
¥{{ (getMeta(name).retailPrice / getMeta(name).dropCount).toFixed(2) }}{{ name === '植物空胶囊' ? '/颗' : '/滴' }}
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="oil-chip-price" v-else>
|
||||||
|
<template v-if="oils.pricePerDrop(name)">
|
||||||
|
¥ {{ oils.pricePerDrop(name).toFixed(4) }}<span class="oil-unit">/滴</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template v-else>--</template>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="auth.canEdit" class="oil-chip-actions" @click.stop>
|
<div
|
||||||
<button @click="editOil(name)" title="编辑">✏️</button>
|
v-if="getMeta(name)?.retailPrice && getMeta(name).retailPrice !== getMeta(name).bottlePrice"
|
||||||
<button @click="removeOil(name)" title="删除">🗑</button>
|
class="oil-chip-retail"
|
||||||
|
>
|
||||||
|
<s>零售 ¥ {{ getMeta(name).retailPrice.toFixed(2) }}</s>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="getMeta(name)?.retailPrice" class="oil-chip-retail">
|
||||||
|
零售 ¥ {{ getMeta(name).retailPrice.toFixed(2) }}
|
||||||
|
</div>
|
||||||
|
<div class="oil-chip-volume" v-if="getMeta(name)?.dropCount">
|
||||||
|
{{ volumeLabel(getMeta(name).dropCount) }}
|
||||||
|
</div>
|
||||||
|
<div class="oil-actions" v-if="auth.canManage" @click.stop>
|
||||||
|
<button class="btn-icon-sm" @click="editOil(name)" title="编辑">✏️</button>
|
||||||
|
<button class="btn-icon-sm" @click="removeOil(name)" title="删除">🗑️</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="filteredOilNames.length === 0" class="empty-hint">未找到精油</div>
|
<div v-if="filteredOilNames.length === 0" class="empty-hint">未找到精油</div>
|
||||||
@@ -207,9 +215,6 @@
|
|||||||
<h4 class="oil-card-caution-title">⚠️ 注意事项</h4>
|
<h4 class="oil-card-caution-title">⚠️ 注意事项</h4>
|
||||||
<p>{{ activeCard.caution }}</p>
|
<p>{{ activeCard.caution }}</p>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align:center;padding-top:12px">
|
|
||||||
<button class="btn btn-outline btn-sm" @click="saveCardImage(activeCardName)">💾 保存图片</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -226,7 +231,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="detail-body">
|
<div class="detail-body">
|
||||||
<div class="detail-row">
|
<div class="detail-row">
|
||||||
<span class="detail-label">会员价</span>
|
<span class="detail-label">瓶价</span>
|
||||||
<span class="detail-value">{{ getMeta(selectedOilName)?.bottlePrice != null ? ('¥ ' + getMeta(selectedOilName).bottlePrice.toFixed(2)) : '--' }}</span>
|
<span class="detail-value">{{ getMeta(selectedOilName)?.bottlePrice != null ? ('¥ ' + getMeta(selectedOilName).bottlePrice.toFixed(2)) : '--' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="detail-row">
|
<div class="detail-row">
|
||||||
@@ -262,17 +267,13 @@
|
|||||||
<div v-if="editingOilName" class="modal-overlay" @click.self="editingOilName = null">
|
<div v-if="editingOilName" class="modal-overlay" @click.self="editingOilName = null">
|
||||||
<div class="modal-panel" style="max-width:400px">
|
<div class="modal-panel" style="max-width:400px">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h3>{{ editingOilName }}</h3>
|
<h3>编辑精油: {{ editingOilName }}</h3>
|
||||||
<button class="btn-close" @click="editingOilName = null">✕</button>
|
<button class="btn-close" @click="editingOilName = null">✕</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>精油名称</label>
|
<label>瓶价 (¥)</label>
|
||||||
<input v-model="editOilDisplayName" class="form-input" type="text" placeholder="精油名称" />
|
<input v-model.number="editBottlePrice" class="form-input" type="number" />
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label>英文名</label>
|
|
||||||
<input v-model="editOilEnName" class="form-input" type="text" placeholder="English name" />
|
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>容量</label>
|
<label>容量</label>
|
||||||
@@ -289,48 +290,10 @@
|
|||||||
<label>自定义滴数</label>
|
<label>自定义滴数</label>
|
||||||
<input v-model.number="editDropCount" class="form-input" type="number" />
|
<input v-model.number="editDropCount" class="form-input" type="number" />
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
<label>会员价 (¥)</label>
|
|
||||||
<input v-model.number="editBottlePrice" class="form-input" type="number" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>零售价 (¥)</label>
|
<label>零售价 (¥)</label>
|
||||||
<input v-model.number="editRetailPrice" class="form-input" type="number" />
|
<input v-model.number="editRetailPrice" class="form-input" type="number" />
|
||||||
</div>
|
</div>
|
||||||
<!-- Knowledge Card Editor -->
|
|
||||||
<div style="margin-top:16px;border-top:1px solid var(--border);padding-top:12px">
|
|
||||||
<div style="font-size:13px;font-weight:600;color:var(--text-mid);margin-bottom:8px">📖 知识卡片(选填,填写功效后自动生成)</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label>主要功效(每行一条)</label>
|
|
||||||
<textarea v-model="editCardEffects" class="form-input" rows="3" placeholder="镇静安神、改善睡眠 舒缓压力、平衡情绪" @input="autoGenerateEmoji"></textarea>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label>使用方法(每行一条)</label>
|
|
||||||
<textarea v-model="editCardUsage" class="form-input" rows="3" placeholder="夜间香薰助眠 加入护肤品中"></textarea>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label>使用方式</label>
|
|
||||||
<div style="display:flex;gap:6px;flex-wrap:wrap">
|
|
||||||
<button
|
|
||||||
v-for="m in methodOptions" :key="m.value"
|
|
||||||
:style="editCardMethodSet.has(m.value)
|
|
||||||
? 'background:' + m.color + ';color:white;border-color:' + m.color + ';font-weight:600;box-shadow:0 2px 8px rgba(0,0,0,0.15)'
|
|
||||||
: 'background:white;color:#999;border-color:#ddd'"
|
|
||||||
style="padding:7px 16px;border-radius:20px;font-size:13px;border:2px solid;cursor:pointer;font-family:inherit;transition:all 0.15s"
|
|
||||||
@click="toggleMethod(m.value)"
|
|
||||||
>{{ m.label }}</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label>注意事项</label>
|
|
||||||
<input v-model="editCardCaution" class="form-input" placeholder="如:光敏性,白天避免涂抹" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label>Emoji 图标</label>
|
|
||||||
<input v-model="editCardEmoji" class="form-input" placeholder="自动生成,也可手动修改" style="width:100px" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="display:flex;gap:10px;justify-content:flex-end;margin-top:16px">
|
<div style="display:flex;gap:10px;justify-content:flex-end;margin-top:16px">
|
||||||
<button class="btn-outline" @click="editingOilName = null">取消</button>
|
<button class="btn-outline" @click="editingOilName = null">取消</button>
|
||||||
<button class="btn-primary" @click="saveEditOil">保存</button>
|
<button class="btn-primary" @click="saveEditOil">保存</button>
|
||||||
@@ -348,7 +311,7 @@ import { useAuthStore } from '../stores/auth'
|
|||||||
import { useUiStore } from '../stores/ui'
|
import { useUiStore } from '../stores/ui'
|
||||||
import { useRecipesStore } from '../stores/recipes'
|
import { useRecipesStore } from '../stores/recipes'
|
||||||
import { oilEn } from '../composables/useOilTranslation'
|
import { oilEn } from '../composables/useOilTranslation'
|
||||||
import { getOilCard, setOilCard } from '../composables/useOilCards'
|
import { getOilCard } from '../composables/useOilCards'
|
||||||
import { showConfirm } from '../composables/useDialog'
|
import { showConfirm } from '../composables/useDialog'
|
||||||
|
|
||||||
const auth = useAuthStore()
|
const auth = useAuthStore()
|
||||||
@@ -359,11 +322,9 @@ const ui = useUiStore()
|
|||||||
// Modal states
|
// Modal states
|
||||||
const showDilution = ref(false)
|
const showDilution = ref(false)
|
||||||
const showContra = ref(false)
|
const showContra = ref(false)
|
||||||
const showAddForm = ref(false)
|
|
||||||
|
|
||||||
// Search & view
|
// Search & view
|
||||||
const searchQuery = ref('')
|
const searchQuery = ref('')
|
||||||
const cardVersion = ref(0) // bump to force re-render after card changes
|
|
||||||
const viewMode = ref('bottle')
|
const viewMode = ref('bottle')
|
||||||
|
|
||||||
// Oil detail
|
// Oil detail
|
||||||
@@ -373,7 +334,6 @@ const activeCard = ref(null)
|
|||||||
|
|
||||||
// Add oil form
|
// Add oil form
|
||||||
const newOilName = ref('')
|
const newOilName = ref('')
|
||||||
const newOilEnName = ref('')
|
|
||||||
const newBottlePrice = ref(null)
|
const newBottlePrice = ref(null)
|
||||||
const newVolume = ref('5')
|
const newVolume = ref('5')
|
||||||
const newCustomDrops = ref(null)
|
const newCustomDrops = ref(null)
|
||||||
@@ -381,66 +341,10 @@ const newRetailPrice = ref(null)
|
|||||||
|
|
||||||
// Edit oil
|
// Edit oil
|
||||||
const editingOilName = ref(null)
|
const editingOilName = ref(null)
|
||||||
const editOilDisplayName = ref('')
|
|
||||||
const editBottlePrice = ref(0)
|
const editBottlePrice = ref(0)
|
||||||
const editVolume = ref('5')
|
const editVolume = ref('5')
|
||||||
const editDropCount = ref(0)
|
const editDropCount = ref(0)
|
||||||
const editRetailPrice = ref(null)
|
const editRetailPrice = ref(null)
|
||||||
const editOilEnName = ref('')
|
|
||||||
const editCardEmoji = ref('')
|
|
||||||
const editCardEffects = ref('')
|
|
||||||
const editCardUsage = ref('')
|
|
||||||
const editCardMethod = ref('')
|
|
||||||
const editCardCaution = ref('')
|
|
||||||
const editCardMethodSet = ref(new Set())
|
|
||||||
|
|
||||||
const methodOptions = [
|
|
||||||
{ value: 'aroma', label: '🔹 香薰', bg: '#e3f2fd', color: '#1565c0' },
|
|
||||||
{ value: 'internal', label: '🔸 内用', bg: '#fff3e0', color: '#e65100' },
|
|
||||||
{ value: 'topical', label: '🔺 涂抹', bg: '#e8f5e9', color: '#2e7d32' },
|
|
||||||
]
|
|
||||||
|
|
||||||
function toggleMethod(value) {
|
|
||||||
const s = editCardMethodSet.value
|
|
||||||
if (s.has(value)) s.delete(value)
|
|
||||||
else s.add(value)
|
|
||||||
// Rebuild method string
|
|
||||||
const labels = { aroma: '🔹香薰', internal: '🔸内用', topical: '🔺涂抹' }
|
|
||||||
editCardMethod.value = [...s].map(k => labels[k]).join(' | ')
|
|
||||||
}
|
|
||||||
|
|
||||||
// Emoji keywords map
|
|
||||||
const EMOJI_MAP = {
|
|
||||||
'安神': '😴', '睡眠': '😴', '助眠': '😴', '安定': '🌳', '放松': '🌳',
|
|
||||||
'消化': '🍃', '肠胃': '🍃', '暖胃': '🫚',
|
|
||||||
'镇痛': '🌿', '酸痛': '🌿', '肌肉': '🌿',
|
|
||||||
'呼吸': '🌬', '鼻炎': '🌬', '咳嗽': '🌬',
|
|
||||||
'免疫': '🛡', '杀菌': '🛡', '抗菌': '🌱',
|
|
||||||
'护肤': '💜', '美白': '💜', '抗衰': '💜',
|
|
||||||
'提神': '🍊', '情绪': '🍊', '愉悦': '🍊',
|
|
||||||
'排毒': '🔥', '代谢': '🔥', '净化': '🔥',
|
|
||||||
'荷尔蒙': '🌸', '经期': '🌸', '女性': '🌸',
|
|
||||||
'伤口': '👑', '细胞': '👑', '再生': '👑',
|
|
||||||
}
|
|
||||||
|
|
||||||
function autoGenerateEmoji() {
|
|
||||||
if (editCardEmoji.value && editCardEmoji.value !== '🌿') return // don't override manual
|
|
||||||
const text = editCardEffects.value
|
|
||||||
for (const [keyword, emoji] of Object.entries(EMOJI_MAP)) {
|
|
||||||
if (text.includes(keyword)) {
|
|
||||||
editCardEmoji.value = emoji
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (text.trim()) editCardEmoji.value = '🌿'
|
|
||||||
}
|
|
||||||
|
|
||||||
// Active chip (for mobile hover)
|
|
||||||
const activeChip = ref(null)
|
|
||||||
|
|
||||||
function toggleChip(name) {
|
|
||||||
activeChip.value = activeChip.value === name ? null : name
|
|
||||||
}
|
|
||||||
|
|
||||||
// Volume-to-drops mapping
|
// Volume-to-drops mapping
|
||||||
const VOLUME_OPTIONS = {
|
const VOLUME_OPTIONS = {
|
||||||
@@ -457,20 +361,10 @@ for (const [ml, drops] of Object.entries(VOLUME_OPTIONS)) {
|
|||||||
DROPS_TO_VOLUME[drops] = ml + 'ml'
|
DROPS_TO_VOLUME[drops] = ml + 'ml'
|
||||||
}
|
}
|
||||||
|
|
||||||
function volumeLabel(dropCount, name) {
|
function volumeLabel(dropCount) {
|
||||||
if (dropCount === 160) return '160颗'
|
|
||||||
return DROPS_TO_VOLUME[dropCount] || (dropCount + '滴')
|
return DROPS_TO_VOLUME[dropCount] || (dropCount + '滴')
|
||||||
}
|
}
|
||||||
|
|
||||||
function chipStyle(name) {
|
|
||||||
const meta = getMeta(name)
|
|
||||||
const isActive = meta?.isActive !== false
|
|
||||||
const hasCard = !!getOilCard(name)
|
|
||||||
if (!isActive) return 'opacity:0.7;background:#f5f5f5'
|
|
||||||
if (hasCard) return 'cursor:pointer;border-left:3px solid var(--sage);background:linear-gradient(90deg,var(--sage-mist),white)'
|
|
||||||
return ''
|
|
||||||
}
|
|
||||||
|
|
||||||
function getEffectiveDropCount() {
|
function getEffectiveDropCount() {
|
||||||
if (newVolume.value === 'custom') return newCustomDrops.value || 0
|
if (newVolume.value === 'custom') return newCustomDrops.value || 0
|
||||||
return VOLUME_OPTIONS[newVolume.value] || 0
|
return VOLUME_OPTIONS[newVolume.value] || 0
|
||||||
@@ -513,13 +407,9 @@ function getMeta(name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getEnglishName(name) {
|
function getEnglishName(name) {
|
||||||
// 1. Oil card has priority
|
// First check the oil card for English name
|
||||||
const card = getOilCard(name)
|
const card = getOilCard(name)
|
||||||
if (card && card.en) return card.en
|
if (card && card.en) return card.en
|
||||||
// 2. Stored en_name in meta
|
|
||||||
const meta = oils.oilsMeta[name]
|
|
||||||
if (meta?.enName) return meta.enName
|
|
||||||
// 3. Static translation map
|
|
||||||
return oilEn(name)
|
return oilEn(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -576,12 +466,10 @@ async function addOil() {
|
|||||||
newOilName.value.trim(),
|
newOilName.value.trim(),
|
||||||
newBottlePrice.value || 0,
|
newBottlePrice.value || 0,
|
||||||
dropCount,
|
dropCount,
|
||||||
newRetailPrice.value || null,
|
newRetailPrice.value || null
|
||||||
newOilEnName.value.trim() || null
|
|
||||||
)
|
)
|
||||||
ui.showToast(`已添加: ${newOilName.value}`)
|
ui.showToast(`已添加: ${newOilName.value}`)
|
||||||
newOilName.value = ''
|
newOilName.value = ''
|
||||||
newOilEnName.value = ''
|
|
||||||
newBottlePrice.value = null
|
newBottlePrice.value = null
|
||||||
newVolume.value = '5'
|
newVolume.value = '5'
|
||||||
newCustomDrops.value = null
|
newCustomDrops.value = null
|
||||||
@@ -593,59 +481,23 @@ async function addOil() {
|
|||||||
|
|
||||||
function editOil(name) {
|
function editOil(name) {
|
||||||
editingOilName.value = name
|
editingOilName.value = name
|
||||||
editOilDisplayName.value = name
|
|
||||||
const meta = oils.oilsMeta[name]
|
const meta = oils.oilsMeta[name]
|
||||||
editBottlePrice.value = meta?.bottlePrice || 0
|
editBottlePrice.value = meta?.bottlePrice || 0
|
||||||
const dc = meta?.dropCount || 0
|
const dc = meta?.dropCount || 0
|
||||||
editVolume.value = dropCountToVolume(dc)
|
editVolume.value = dropCountToVolume(dc)
|
||||||
editDropCount.value = dc
|
editDropCount.value = dc
|
||||||
editRetailPrice.value = meta?.retailPrice || null
|
editRetailPrice.value = meta?.retailPrice || null
|
||||||
editOilEnName.value = meta?.enName || getEnglishName(name) || ''
|
|
||||||
// Load knowledge card if exists
|
|
||||||
const card = getOilCard(name)
|
|
||||||
editCardEmoji.value = card?.emoji || ''
|
|
||||||
editCardEffects.value = card?.effects || ''
|
|
||||||
editCardUsage.value = card?.usage || ''
|
|
||||||
editCardMethod.value = card?.method || ''
|
|
||||||
editCardCaution.value = card?.caution || ''
|
|
||||||
// Parse method string back to set
|
|
||||||
const ms = new Set()
|
|
||||||
const methodStr = card?.method || ''
|
|
||||||
if (methodStr.includes('香薰') || methodStr.includes('熏香')) ms.add('aroma')
|
|
||||||
if (methodStr.includes('内用')) ms.add('internal')
|
|
||||||
if (methodStr.includes('涂抹')) ms.add('topical')
|
|
||||||
editCardMethodSet.value = ms
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function saveEditOil() {
|
async function saveEditOil() {
|
||||||
const dropCount = getEditDropCount()
|
const dropCount = getEditDropCount()
|
||||||
const newName = editOilDisplayName.value.trim()
|
|
||||||
const oldName = editingOilName.value
|
|
||||||
try {
|
try {
|
||||||
// If name changed, delete old and create new
|
|
||||||
if (newName && newName !== oldName) {
|
|
||||||
await oils.deleteOil(oldName)
|
|
||||||
}
|
|
||||||
await oils.saveOil(
|
await oils.saveOil(
|
||||||
newName || oldName,
|
editingOilName.value,
|
||||||
editBottlePrice.value,
|
editBottlePrice.value,
|
||||||
dropCount,
|
dropCount,
|
||||||
editRetailPrice.value,
|
editRetailPrice.value
|
||||||
editOilEnName.value.trim() || null
|
|
||||||
)
|
)
|
||||||
// Save knowledge card if any content provided
|
|
||||||
const finalName = newName || oldName
|
|
||||||
if (editCardEffects.value.trim() || editCardUsage.value.trim()) {
|
|
||||||
setOilCard(finalName, {
|
|
||||||
emoji: editCardEmoji.value || '🌿',
|
|
||||||
en: editOilEnName.value.trim() || '',
|
|
||||||
effects: editCardEffects.value.trim(),
|
|
||||||
usage: editCardUsage.value.trim(),
|
|
||||||
method: editCardMethod.value.trim(),
|
|
||||||
caution: editCardCaution.value.trim(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
cardVersion.value++ // trigger re-render for card badges
|
|
||||||
ui.showToast('已更新')
|
ui.showToast('已更新')
|
||||||
editingOilName.value = null
|
editingOilName.value = null
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
@@ -666,26 +518,22 @@ async function removeOil(name) {
|
|||||||
|
|
||||||
// PDF Export
|
// PDF Export
|
||||||
function exportPDF() {
|
function exportPDF() {
|
||||||
const today = new Date()
|
|
||||||
const dateStr = today.getFullYear() + String(today.getMonth()+1).padStart(2,'0') + String(today.getDate()).padStart(2,'0')
|
|
||||||
const title = '精油价目表' + dateStr
|
|
||||||
|
|
||||||
const sortedNames = [...oils.oilNames].sort((a, b) => a.localeCompare(b, 'zh'))
|
const sortedNames = [...oils.oilNames].sort((a, b) => a.localeCompare(b, 'zh'))
|
||||||
let rows = ''
|
let rows = ''
|
||||||
for (const name of sortedNames) {
|
for (const name of sortedNames) {
|
||||||
const meta = getMeta(name)
|
const meta = getMeta(name)
|
||||||
if (!meta) continue
|
if (!meta) continue
|
||||||
const en = getEnglishName(name)
|
const bp = meta.bottlePrice != null ? '¥ ' + meta.bottlePrice.toFixed(2) : '--'
|
||||||
const bp = meta.bottlePrice != null ? '¥' + meta.bottlePrice.toFixed(0) : '--'
|
const rp = meta.retailPrice != null ? '¥ ' + meta.retailPrice.toFixed(2) : '--'
|
||||||
const rp = meta.retailPrice != null ? '¥' + meta.retailPrice.toFixed(0) : '--'
|
|
||||||
const vol = volumeLabel(meta.dropCount)
|
const vol = volumeLabel(meta.dropCount)
|
||||||
const ppd = oils.pricePerDrop(name) ? '¥' + oils.pricePerDrop(name).toFixed(2) : '--'
|
const dc = meta.dropCount || '--'
|
||||||
|
const ppd = oils.pricePerDrop(name) ? '¥ ' + oils.pricePerDrop(name).toFixed(4) : '--'
|
||||||
rows += `<tr>
|
rows += `<tr>
|
||||||
<td>${name}</td>
|
<td>${name}</td>
|
||||||
<td>${en}</td>
|
|
||||||
<td>${bp}</td>
|
<td>${bp}</td>
|
||||||
<td>${rp}</td>
|
<td>${rp}</td>
|
||||||
<td>${vol}</td>
|
<td>${vol}</td>
|
||||||
|
<td>${dc}</td>
|
||||||
<td>${ppd}</td>
|
<td>${ppd}</td>
|
||||||
</tr>`
|
</tr>`
|
||||||
}
|
}
|
||||||
@@ -693,65 +541,40 @@ function exportPDF() {
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>${title}</title>
|
<title>精油价格表</title>
|
||||||
<style>
|
<style>
|
||||||
body { font-family: 'PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif; padding: 20px; font-size: 11px; color: #333; }
|
body { font-family: 'Noto Sans SC', sans-serif; padding: 20px; }
|
||||||
h1 { font-size: 18px; text-align: center; margin-bottom: 16px; }
|
h1 { font-family: 'Noto Serif SC', serif; font-size: 20px; color: #2c2416; margin-bottom: 16px; }
|
||||||
table { width: 100%; border-collapse: collapse; }
|
table { width: 100%; border-collapse: collapse; font-size: 13px; }
|
||||||
th { background: #7a9e7e; color: white; padding: 6px 8px; text-align: center; font-size: 11px; font-weight: 600; }
|
th, td { padding: 8px 12px; text-align: left; border-bottom: 1px solid #e0d4c0; }
|
||||||
td { padding: 5px 8px; border-bottom: 1px solid #e0e0e0; text-align: center; font-size: 11px; }
|
th { background: #eef4ee; color: #5a7d5e; font-weight: 600; }
|
||||||
td:first-child, th:first-child { text-align: left; font-weight: 500; }
|
tr:hover { background: #f9f7f4; }
|
||||||
td:nth-child(2), th:nth-child(2) { text-align: left; }
|
@media print { body { padding: 0; } }
|
||||||
tr:nth-child(even) { background: #f9f9f9; }
|
|
||||||
tr:hover { background: #e8f5e9; }
|
|
||||||
@media print { body { padding: 10px; } h1 { font-size: 16px; } }
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>doTERRA 精油价目表 ${dateStr}</h1>
|
<h1>精油价格表</h1>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr><th>精油</th><th>英文名</th><th>会员价</th><th>零售价</th><th>容量</th><th>单价/滴</th></tr>
|
<tr><th>精油</th><th>每瓶价格</th><th>零售价</th><th>容量</th><th>滴数</th><th>单价/滴</th></tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>${rows}</tbody>
|
<tbody>${rows}</tbody>
|
||||||
</table>
|
</table>
|
||||||
<p style="text-align:center;font-size:10px;color:#aaa;margin-top:12px">共 ${sortedNames.length} 种精油 · doTERRA 配方计算器导出</p>
|
|
||||||
</body>
|
</body>
|
||||||
</html>`
|
</html>`
|
||||||
const w = window.open('', '_blank')
|
const w = window.open('', '_blank')
|
||||||
w.document.write(html)
|
w.document.write(html)
|
||||||
w.document.close()
|
w.document.close()
|
||||||
w.document.title = title
|
w.onload = () => w.print()
|
||||||
setTimeout(() => w.print(), 500)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save modal as image using html2canvas
|
// Placeholder save image functions
|
||||||
async function saveModalImage(name) {
|
function saveDilutionImage() {
|
||||||
try {
|
ui.showToast('保存图片功能开发中')
|
||||||
const { default: html2canvas } = await import('html2canvas')
|
|
||||||
const overlay = document.querySelector('.modal-overlay')
|
|
||||||
if (!overlay) return
|
|
||||||
const cardEl = overlay.querySelector('[style*="border-radius: 20px"], [style*="border-radius:20px"]') || overlay.children[0]
|
|
||||||
if (!cardEl) return
|
|
||||||
// Hide close buttons during capture
|
|
||||||
const btns = cardEl.querySelectorAll('button')
|
|
||||||
btns.forEach(b => b.style.display = 'none')
|
|
||||||
const canvas = await html2canvas(cardEl, { scale: 2, backgroundColor: '#ffffff', useCORS: true })
|
|
||||||
btns.forEach(b => b.style.display = '')
|
|
||||||
const url = canvas.toDataURL('image/png')
|
|
||||||
const a = document.createElement('a')
|
|
||||||
a.href = url
|
|
||||||
a.download = (name || '精油知识卡') + '.png'
|
|
||||||
a.click()
|
|
||||||
ui.showToast('图片已保存')
|
|
||||||
} catch (e) {
|
|
||||||
ui.showToast('保存失败')
|
|
||||||
}
|
}
|
||||||
|
function saveContraImage() {
|
||||||
|
ui.showToast('保存图片功能开发中')
|
||||||
}
|
}
|
||||||
|
|
||||||
function saveDilutionImage() { saveModalImage('精油稀释比例指南') }
|
|
||||||
function saveContraImage() { saveModalImage('精油使用禁忌') }
|
|
||||||
function saveCardImage(name) { saveModalImage(name + '_精油知识卡') }
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@@ -917,15 +740,6 @@ function saveCardImage(name) { saveModalImage(name + '_精油知识卡') }
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
border: 1.5px solid var(--border, #e0d4c0);
|
border: 1.5px solid var(--border, #e0d4c0);
|
||||||
}
|
}
|
||||||
/* Hide number input spinners in add form */
|
|
||||||
.add-oil-form input[type="number"]::-webkit-inner-spin-button,
|
|
||||||
.add-oil-form input[type="number"]::-webkit-outer-spin-button {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
.add-oil-form input[type="number"] {
|
|
||||||
-moz-appearance: textfield;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-title {
|
.section-title {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@@ -1077,57 +891,39 @@ function saveCardImage(name) { saveModalImage(name + '_精油知识卡') }
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ===== Oil Grid ===== */
|
/* ===== Oil Grid ===== */
|
||||||
.oils-grid {
|
.oil-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
||||||
gap: 10px;
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.oil-chip {
|
.oil-chip {
|
||||||
background: white;
|
padding: 12px;
|
||||||
border-radius: 10px;
|
background: #fff;
|
||||||
padding: 12px 16px;
|
border: 1.5px solid var(--border, #e0d4c0);
|
||||||
box-shadow: 0 2px 8px rgba(90,60,30,0.06);
|
border-radius: 12px;
|
||||||
display: flex;
|
cursor: pointer;
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
transition: all 0.15s;
|
transition: all 0.15s;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.oil-chip:hover {
|
.oil-chip:hover {
|
||||||
box-shadow: 0 4px 16px rgba(90,60,30,0.12);
|
border-color: var(--sage, #7a9e7e);
|
||||||
|
box-shadow: var(--shadow, 0 4px 20px rgba(90,60,30,0.08));
|
||||||
}
|
}
|
||||||
|
|
||||||
.oil-chip-actions {
|
.oil-chip--inactive {
|
||||||
|
opacity: 0.45;
|
||||||
|
filter: grayscale(0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.oil-badge {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
right: 8px;
|
right: 8px;
|
||||||
top: 50%;
|
font-size: 14px;
|
||||||
transform: translateY(-50%);
|
line-height: 1;
|
||||||
display: none;
|
|
||||||
gap: 2px;
|
|
||||||
background: white;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 2px;
|
|
||||||
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
||||||
}
|
}
|
||||||
.oil-chip-actions button {
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 11px;
|
|
||||||
padding: 4px 6px;
|
|
||||||
border-radius: 4px;
|
|
||||||
color: var(--text-light);
|
|
||||||
}
|
|
||||||
.oil-chip-actions button:hover {
|
|
||||||
background: var(--sage-mist);
|
|
||||||
}
|
|
||||||
.oil-chip:hover .oil-chip-actions {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.oil-chip-name {
|
.oil-chip-name {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@@ -1186,9 +982,14 @@ function saveCardImage(name) { saveModalImage(name + '_精油知识卡') }
|
|||||||
transition: opacity 0.15s;
|
transition: opacity 0.15s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.oil-chip:hover .oil-actions,
|
.oil-chip:hover .oil-actions {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
/* When badge is present, push actions below */
|
/* When badge is present, push actions below */
|
||||||
|
.oil-chip:hover .oil-badge {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-icon-sm {
|
.btn-icon-sm {
|
||||||
border: none;
|
border: none;
|
||||||
@@ -1207,8 +1008,8 @@ function saveCardImage(name) { saveModalImage(name + '_精油知识卡') }
|
|||||||
.oil-card-modal {
|
.oil-card-modal {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
max-width: 380px;
|
max-width: 480px;
|
||||||
width: 92%;
|
width: 100%;
|
||||||
max-height: 85vh;
|
max-height: 85vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
|
||||||
@@ -1488,7 +1289,7 @@ function saveCardImage(name) { saveModalImage(name + '_精油知识卡') }
|
|||||||
|
|
||||||
/* ===== Responsive ===== */
|
/* ===== Responsive ===== */
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
.oils-grid {
|
.oil-grid {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
||||||
}
|
}
|
||||||
.form-row {
|
.form-row {
|
||||||
|
|||||||
@@ -58,33 +58,40 @@
|
|||||||
<button class="btn-sm btn-outline" @click="clearSelection">取消选择</button>
|
<button class="btn-sm btn-outline" @click="clearSelection">取消选择</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- My Recipes Section (from diary) -->
|
<!-- My Recipes Section -->
|
||||||
<div class="recipe-section">
|
<div class="recipe-section">
|
||||||
<h3 class="section-title">📖 我的配方 ({{ myRecipes.length }})</h3>
|
<h3 class="section-title">📖 我的配方 ({{ myRecipes.length }})</h3>
|
||||||
<div class="recipe-list">
|
<div class="recipe-list">
|
||||||
<div
|
<div
|
||||||
v-for="d in myFilteredRecipes"
|
v-for="r in myFilteredRecipes"
|
||||||
:key="'diary-' + d.id"
|
:key="r._id"
|
||||||
class="recipe-row diary-row"
|
class="recipe-row"
|
||||||
|
:class="{ selected: selectedIds.has(r._id) }"
|
||||||
>
|
>
|
||||||
<div class="row-info" @click="editDiaryRecipe(d)">
|
<input
|
||||||
<span class="row-name">{{ d.name }}</span>
|
type="checkbox"
|
||||||
|
:checked="selectedIds.has(r._id)"
|
||||||
|
@change="toggleSelect(r._id)"
|
||||||
|
class="row-check"
|
||||||
|
/>
|
||||||
|
<div class="row-info" @click="editRecipe(r)">
|
||||||
|
<span class="row-name">{{ r.name }}</span>
|
||||||
<span class="row-tags">
|
<span class="row-tags">
|
||||||
<span v-for="t in (d.tags || [])" :key="t" class="mini-tag">{{ t }}</span>
|
<span v-for="t in r.tags" :key="t" class="mini-tag">{{ t }}</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="row-cost">{{ oils.fmtPrice(oils.calcCost(d.ingredients || [])) }}</span>
|
<span class="row-cost">{{ oils.fmtPrice(oils.calcCost(r.ingredients)) }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="row-actions">
|
<div class="row-actions">
|
||||||
<button class="btn-icon" @click="editDiaryRecipe(d)" title="编辑">✏️</button>
|
<button class="btn-icon" @click="editRecipe(r)" title="编辑">✏️</button>
|
||||||
<button class="btn-icon" @click="removeDiaryRecipe(d)" title="删除">🗑️</button>
|
<button class="btn-icon" @click="removeRecipe(r)" title="删除">🗑️</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="myFilteredRecipes.length === 0" class="empty-hint">暂无个人配方</div>
|
<div v-if="myFilteredRecipes.length === 0" class="empty-hint">暂无个人配方</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Public Recipes Section -->
|
<!-- Public Recipes Section (admin/senior_editor only) -->
|
||||||
<div class="recipe-section">
|
<div v-if="auth.canManage" class="recipe-section">
|
||||||
<h3 class="section-title">🌿 公共配方库 ({{ publicRecipes.length }})</h3>
|
<h3 class="section-title">🌿 公共配方库 ({{ publicRecipes.length }})</h3>
|
||||||
<div class="recipe-list">
|
<div class="recipe-list">
|
||||||
<div
|
<div
|
||||||
@@ -196,11 +203,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, reactive, onMounted } from 'vue'
|
import { ref, computed, reactive } from 'vue'
|
||||||
import { useAuthStore } from '../stores/auth'
|
import { useAuthStore } from '../stores/auth'
|
||||||
import { useOilsStore } from '../stores/oils'
|
import { useOilsStore } from '../stores/oils'
|
||||||
import { useRecipesStore } from '../stores/recipes'
|
import { useRecipesStore } from '../stores/recipes'
|
||||||
import { useDiaryStore } from '../stores/diary'
|
|
||||||
import { useUiStore } from '../stores/ui'
|
import { useUiStore } from '../stores/ui'
|
||||||
import { api } from '../composables/useApi'
|
import { api } from '../composables/useApi'
|
||||||
import { showConfirm, showPrompt } from '../composables/useDialog'
|
import { showConfirm, showPrompt } from '../composables/useDialog'
|
||||||
@@ -211,7 +217,6 @@ import TagPicker from '../components/TagPicker.vue'
|
|||||||
const auth = useAuthStore()
|
const auth = useAuthStore()
|
||||||
const oils = useOilsStore()
|
const oils = useOilsStore()
|
||||||
const recipeStore = useRecipesStore()
|
const recipeStore = useRecipesStore()
|
||||||
const diaryStore = useDiaryStore()
|
|
||||||
const ui = useUiStore()
|
const ui = useUiStore()
|
||||||
|
|
||||||
const manageSearch = ref('')
|
const manageSearch = ref('')
|
||||||
@@ -238,11 +243,13 @@ const tagPickerName = ref('')
|
|||||||
const tagPickerTags = ref([])
|
const tagPickerTags = ref([])
|
||||||
|
|
||||||
// Computed lists
|
// Computed lists
|
||||||
// "我的配方" = diary (user_diary table), personal recipes
|
const myRecipes = computed(() =>
|
||||||
const myRecipes = computed(() => diaryStore.userDiary)
|
recipeStore.recipes.filter(r => r._owner_id === auth.user.id)
|
||||||
|
)
|
||||||
|
|
||||||
// "公共配方库" = all recipes in public library (recipes table)
|
const publicRecipes = computed(() =>
|
||||||
const publicRecipes = computed(() => recipeStore.recipes)
|
recipeStore.recipes.filter(r => r._owner_id !== auth.user.id)
|
||||||
|
)
|
||||||
|
|
||||||
function filterBySearchAndTags(list) {
|
function filterBySearchAndTags(list) {
|
||||||
let result = list
|
let result = list
|
||||||
@@ -250,7 +257,7 @@ function filterBySearchAndTags(list) {
|
|||||||
if (q) {
|
if (q) {
|
||||||
result = result.filter(r =>
|
result = result.filter(r =>
|
||||||
r.name.toLowerCase().includes(q) ||
|
r.name.toLowerCase().includes(q) ||
|
||||||
(r.ingredients || []).some(ing => (ing.oil || '').toLowerCase().includes(q)) ||
|
r.ingredients.some(ing => ing.oil.toLowerCase().includes(q)) ||
|
||||||
(r.tags && r.tags.some(t => t.toLowerCase().includes(q)))
|
(r.tags && r.tags.some(t => t.toLowerCase().includes(q)))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -394,30 +401,6 @@ async function saveCurrentRecipe() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load diary on mount
|
|
||||||
onMounted(async () => {
|
|
||||||
if (auth.isLoggedIn) {
|
|
||||||
await diaryStore.loadDiary()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
function editDiaryRecipe(diary) {
|
|
||||||
// For now, navigate to MyDiary page to edit
|
|
||||||
// TODO: inline editing
|
|
||||||
ui.showToast('请到「我的」页面编辑个人配方')
|
|
||||||
}
|
|
||||||
|
|
||||||
async function removeDiaryRecipe(diary) {
|
|
||||||
const ok = await showConfirm(`确定删除个人配方 "${diary.name}"?`)
|
|
||||||
if (!ok) return
|
|
||||||
try {
|
|
||||||
await diaryStore.deleteDiary(diary.id)
|
|
||||||
ui.showToast('已删除')
|
|
||||||
} catch {
|
|
||||||
ui.showToast('删除失败')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function removeRecipe(recipe) {
|
async function removeRecipe(recipe) {
|
||||||
const ok = await showConfirm(`确定删除配方 "${recipe.name}"?`)
|
const ok = await showConfirm(`确定删除配方 "${recipe.name}"?`)
|
||||||
if (!ok) return
|
if (!ok) return
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="recipe-search">
|
<div class="recipe-search">
|
||||||
<!-- Category Carousel (full-width image slides) -->
|
<!-- 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 class="cat-track" :style="{ transform: `translateX(-${catIdx * 100}%)` }">
|
||||||
<div
|
<div
|
||||||
v-for="cat in categories"
|
v-for="cat in categories"
|
||||||
@@ -50,32 +50,28 @@
|
|||||||
<!-- Personal Section (logged in) -->
|
<!-- Personal Section (logged in) -->
|
||||||
<div v-if="auth.isLoggedIn" class="personal-section">
|
<div v-if="auth.isLoggedIn" class="personal-section">
|
||||||
<div class="section-header" @click="showMyRecipes = !showMyRecipes">
|
<div class="section-header" @click="showMyRecipes = !showMyRecipes">
|
||||||
<span>📖 我的配方 ({{ myDiaryRecipes.length }})</span>
|
<span>📖 我的配方</span>
|
||||||
<span class="toggle-icon">{{ showMyRecipes ? '▾' : '▸' }}</span>
|
<span class="toggle-icon">{{ showMyRecipes ? '▾' : '▸' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="showMyRecipes" class="recipe-grid">
|
<div v-if="showMyRecipes" class="recipe-grid">
|
||||||
<div
|
<RecipeCard
|
||||||
v-for="d in myDiaryRecipes"
|
v-for="(r, i) in myRecipesPreview"
|
||||||
:key="'diary-' + d.id"
|
:key="r._id"
|
||||||
class="recipe-card diary-card"
|
:recipe="r"
|
||||||
@click="openDiaryDetail(d)"
|
:index="findGlobalIndex(r)"
|
||||||
>
|
@click="openDetail(findGlobalIndex(r))"
|
||||||
<div class="card-name">{{ d.name }}</div>
|
@toggle-fav="handleToggleFav(r)"
|
||||||
<div class="card-oils">{{ (d.ingredients || []).map(i => i.oil).join('、') }}</div>
|
/>
|
||||||
<div class="card-bottom">
|
<div v-if="myRecipesPreview.length === 0" class="empty-hint">暂无个人配方</div>
|
||||||
<span class="card-price">{{ oils.fmtPrice(oils.calcCost(d.ingredients || [])) }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-if="myDiaryRecipes.length === 0" class="empty-hint">暂无个人配方</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="section-header" @click="showFavorites = !showFavorites">
|
<div class="section-header" @click="showFavorites = !showFavorites">
|
||||||
<span>⭐ 收藏配方 ({{ favoritesPreview.length }})</span>
|
<span>⭐ 收藏配方</span>
|
||||||
<span class="toggle-icon">{{ showFavorites ? '▾' : '▸' }}</span>
|
<span class="toggle-icon">{{ showFavorites ? '▾' : '▸' }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="showFavorites" class="recipe-grid">
|
<div v-if="showFavorites" class="recipe-grid">
|
||||||
<RecipeCard
|
<RecipeCard
|
||||||
v-for="r in favoritesPreview"
|
v-for="(r, i) in favoritesPreview"
|
||||||
:key="r._id"
|
:key="r._id"
|
||||||
:recipe="r"
|
:recipe="r"
|
||||||
:index="findGlobalIndex(r)"
|
:index="findGlobalIndex(r)"
|
||||||
@@ -86,9 +82,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Search Results (public recipes) -->
|
<!-- Fuzzy Search Results -->
|
||||||
<div v-if="searchQuery" class="search-results-section">
|
<div v-if="searchQuery && fuzzyResults.length" class="search-results-section">
|
||||||
<div class="section-label">🔍 公共配方搜索结果 ({{ fuzzyResults.length }})</div>
|
<div class="section-label">🔍 搜索结果 ({{ fuzzyResults.length }})</div>
|
||||||
<div class="recipe-grid">
|
<div class="recipe-grid">
|
||||||
<RecipeCard
|
<RecipeCard
|
||||||
v-for="(r, i) in fuzzyResults"
|
v-for="(r, i) in fuzzyResults"
|
||||||
@@ -98,12 +94,11 @@
|
|||||||
@click="openDetail(findGlobalIndex(r))"
|
@click="openDetail(findGlobalIndex(r))"
|
||||||
@toggle-fav="handleToggleFav(r)"
|
@toggle-fav="handleToggleFav(r)"
|
||||||
/>
|
/>
|
||||||
<div v-if="fuzzyResults.length === 0" class="empty-hint">未找到匹配的公共配方</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Public Recipe Grid -->
|
<!-- Public Recipe Grid -->
|
||||||
<div v-if="!searchQuery">
|
<div v-if="!searchQuery || fuzzyResults.length === 0">
|
||||||
<div class="section-label">🌿 公共配方库 ({{ filteredRecipes.length }})</div>
|
<div class="section-label">🌿 公共配方库 ({{ filteredRecipes.length }})</div>
|
||||||
<div class="recipe-grid">
|
<div class="recipe-grid">
|
||||||
<RecipeCard
|
<RecipeCard
|
||||||
@@ -133,7 +128,6 @@ import { useRoute, useRouter } from 'vue-router'
|
|||||||
import { useAuthStore } from '../stores/auth'
|
import { useAuthStore } from '../stores/auth'
|
||||||
import { useOilsStore } from '../stores/oils'
|
import { useOilsStore } from '../stores/oils'
|
||||||
import { useRecipesStore } from '../stores/recipes'
|
import { useRecipesStore } from '../stores/recipes'
|
||||||
import { useDiaryStore } from '../stores/diary'
|
|
||||||
import { useUiStore } from '../stores/ui'
|
import { useUiStore } from '../stores/ui'
|
||||||
import { api } from '../composables/useApi'
|
import { api } from '../composables/useApi'
|
||||||
import RecipeCard from '../components/RecipeCard.vue'
|
import RecipeCard from '../components/RecipeCard.vue'
|
||||||
@@ -142,7 +136,6 @@ import RecipeDetailOverlay from '../components/RecipeDetailOverlay.vue'
|
|||||||
const auth = useAuthStore()
|
const auth = useAuthStore()
|
||||||
const oils = useOilsStore()
|
const oils = useOilsStore()
|
||||||
const recipeStore = useRecipesStore()
|
const recipeStore = useRecipesStore()
|
||||||
const diaryStore = useDiaryStore()
|
|
||||||
const ui = useUiStore()
|
const ui = useUiStore()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
@@ -161,11 +154,8 @@ onMounted(async () => {
|
|||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
categories.value = await res.json()
|
categories.value = await res.json()
|
||||||
}
|
}
|
||||||
} catch {}
|
} catch {
|
||||||
|
// category modules are optional
|
||||||
// Load personal diary recipes
|
|
||||||
if (auth.isLoggedIn) {
|
|
||||||
await diaryStore.loadDiary()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return to a recipe card after QR upload redirect
|
// Return to a recipe card after QR upload redirect
|
||||||
@@ -199,7 +189,6 @@ function slideCat(dir) {
|
|||||||
catIdx.value = (catIdx.value + dir + len) % len
|
catIdx.value = (catIdx.value + dir + len) % len
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public recipes (all recipes in the public library)
|
|
||||||
const filteredRecipes = computed(() => {
|
const filteredRecipes = computed(() => {
|
||||||
let list = recipeStore.recipes
|
let list = recipeStore.recipes
|
||||||
if (selectedCategory.value) {
|
if (selectedCategory.value) {
|
||||||
@@ -208,7 +197,6 @@ const filteredRecipes = computed(() => {
|
|||||||
return list
|
return list
|
||||||
})
|
})
|
||||||
|
|
||||||
// Search results from public recipes
|
|
||||||
const fuzzyResults = computed(() => {
|
const fuzzyResults = computed(() => {
|
||||||
if (!searchQuery.value.trim()) return []
|
if (!searchQuery.value.trim()) return []
|
||||||
const q = searchQuery.value.trim().toLowerCase()
|
const q = searchQuery.value.trim().toLowerCase()
|
||||||
@@ -220,33 +208,18 @@ const fuzzyResults = computed(() => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// Personal recipes from diary (separate from public recipes)
|
const myRecipesPreview = computed(() => {
|
||||||
const myDiaryRecipes = computed(() => {
|
|
||||||
if (!auth.isLoggedIn) return []
|
if (!auth.isLoggedIn) return []
|
||||||
let list = diaryStore.userDiary
|
return recipeStore.recipes
|
||||||
if (searchQuery.value.trim()) {
|
.filter(r => r._owner_id === auth.user.id)
|
||||||
const q = searchQuery.value.trim().toLowerCase()
|
.slice(0, 6)
|
||||||
list = list.filter(d => {
|
|
||||||
return d.name.toLowerCase().includes(q) ||
|
|
||||||
(d.ingredients || []).some(ing => ing.oil?.toLowerCase().includes(q))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return list
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const favoritesPreview = computed(() => {
|
const favoritesPreview = computed(() => {
|
||||||
if (!auth.isLoggedIn) return []
|
if (!auth.isLoggedIn) return []
|
||||||
let list = recipeStore.recipes.filter(r => recipeStore.isFavorite(r))
|
return recipeStore.recipes
|
||||||
if (searchQuery.value.trim()) {
|
.filter(r => recipeStore.isFavorite(r))
|
||||||
const q = searchQuery.value.trim().toLowerCase()
|
.slice(0, 6)
|
||||||
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)
|
|
||||||
})
|
})
|
||||||
|
|
||||||
function findGlobalIndex(recipe) {
|
function findGlobalIndex(recipe) {
|
||||||
@@ -259,29 +232,6 @@ function openDetail(index) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function openDiaryDetail(diary) {
|
|
||||||
// Create a temporary recipe-like object from diary and open it
|
|
||||||
const tmpRecipe = {
|
|
||||||
_id: null,
|
|
||||||
_diary_id: diary.id,
|
|
||||||
name: diary.name,
|
|
||||||
note: diary.note || '',
|
|
||||||
tags: diary.tags || [],
|
|
||||||
ingredients: diary.ingredients || [],
|
|
||||||
_owner_id: auth.user.id,
|
|
||||||
}
|
|
||||||
recipeStore.recipes.push(tmpRecipe)
|
|
||||||
const tmpIdx = recipeStore.recipes.length - 1
|
|
||||||
selectedRecipeIndex.value = tmpIdx
|
|
||||||
// Clean up temp recipe when detail closes
|
|
||||||
const unwatch = watch(selectedRecipeIndex, (val) => {
|
|
||||||
if (val === null) {
|
|
||||||
recipeStore.recipes.splice(tmpIdx, 1)
|
|
||||||
unwatch()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleToggleFav(recipe) {
|
async function handleToggleFav(recipe) {
|
||||||
if (!auth.isLoggedIn) {
|
if (!auth.isLoggedIn) {
|
||||||
ui.openLogin()
|
ui.openLogin()
|
||||||
@@ -298,18 +248,6 @@ function clearSearch() {
|
|||||||
searchQuery.value = ''
|
searchQuery.value = ''
|
||||||
selectedCategory.value = null
|
selectedCategory.value = null
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@@ -536,43 +474,6 @@ function onCarouselTouchEnd(e) {
|
|||||||
padding: 24px 0;
|
padding: 24px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.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);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
.recipe-grid {
|
.recipe-grid {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
|
|||||||
Reference in New Issue
Block a user