- 后台全面引入 Naive UI 组件库,统一 UI 规范 - 前台 usePublicApi 切换到 API 调用(GET /api/content/[key]) - 前后台数据源统一(site_content 表) - 产品线统一管理(tour/camp/course 三套编辑器) - 产品数据归一化(itinerary/faq/pricing 格式统一) - 表单提交 API 改写入 submissions 表 - 新增 submissions 标记已读 API - site-content PUT 支持 upsert - 修复前台 bug(stories 路由冲突、占位符警告、selector breadcrumb) - 消除 PageHero 类型警告(useSEO reactive 修复) - 25 个前台页面全部 HTTP 200,展示效果不变 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 行
1.1 KiB
JavaScript
46 行
1.1 KiB
JavaScript
import { eq } from 'drizzle-orm'
|
|
import { useDB, schema } from '../../../utils/db.js'
|
|
import { requireAdmin } from '../../../utils/auth.js'
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
requireAdmin(event)
|
|
|
|
const id = Number(getRouterParam(event, 'id'))
|
|
if (!id || isNaN(id)) {
|
|
throw createError({ statusCode: 400, message: '无效的 id 参数' })
|
|
}
|
|
|
|
const body = await readBody(event)
|
|
if (typeof body.read !== 'boolean') {
|
|
throw createError({ statusCode: 400, message: 'read 字段必须是布尔值' })
|
|
}
|
|
|
|
const db = useDB()
|
|
|
|
const [existing] = db
|
|
.select()
|
|
.from(schema.submissions)
|
|
.where(eq(schema.submissions.id, id))
|
|
.all()
|
|
|
|
if (!existing) {
|
|
throw createError({ statusCode: 404, message: '记录不存在' })
|
|
}
|
|
|
|
db.update(schema.submissions)
|
|
.set({ read: body.read })
|
|
.where(eq(schema.submissions.id, id))
|
|
.run()
|
|
|
|
const [updated] = db
|
|
.select()
|
|
.from(schema.submissions)
|
|
.where(eq(schema.submissions.id, id))
|
|
.all()
|
|
|
|
return {
|
|
...updated,
|
|
data: JSON.parse(updated.data),
|
|
}
|
|
})
|