feat: 配方卡片加入上传个人二维码功能 #5
@@ -355,7 +355,7 @@ import { useAuthStore } from '../stores/auth'
|
||||
import { useUiStore } from '../stores/ui'
|
||||
import { useDiaryStore } from '../stores/diary'
|
||||
import { api } from '../composables/useApi'
|
||||
import { showConfirm } from '../composables/useDialog'
|
||||
import { showConfirm, showPrompt } from '../composables/useDialog'
|
||||
import { oilEn, recipeNameEn } from '../composables/useOilTranslation'
|
||||
// TagPicker replaced with inline tag editing
|
||||
|
||||
@@ -631,7 +631,7 @@ async function saveToDiary() {
|
||||
ui.openLogin(() => saveToDiary())
|
||||
return
|
||||
}
|
||||
const name = prompt('保存为我的配方,名称:', recipe.value.name)
|
||||
const name = await showPrompt('保存为我的配方,名称:', recipe.value.name)
|
||||
if (!name) return
|
||||
try {
|
||||
await api.post('/api/diary', {
|
||||
|
||||
Reference in New Issue
Block a user