feat(mini-program): UI 优化和功能增强

- 更新全局样式(App.vue),优化玻璃态效果和颜色系统
- 添加星空背景动画效果
- 添加全局音乐播放器组件
- 优化 RecordView 记录页样式
- 修复 epicScript.js 中 selectScript 函数的参数格式
- 与原型设计和 Web 端 API 保持一致

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 17:42:11 +08:00
parent e2d47b03c4
commit 88e35d2889
5 changed files with 332 additions and 12 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ export const updateScript = async (scriptData) => {
}
export const selectScript = async (id) => {
const response = await put('/epicScript/select', null, { params: { id } })
const response = await put('/epicScript/select', { id })
return response
}