feat: 更新直播请求相关组件和功能

- 在useLiveRequest.ts中使用FunctionTypes替代硬编码的功能标识
- 在SongListManageView.vue中添加调试信息输出
- 在ClassicRequestOBS.vue中优化歌曲请求列表的样式和动画效果
- 在SongRequestSettings.vue中新增OBS相关设置项,支持动态配置
This commit is contained in:
Megghy
2025-05-18 22:02:18 +08:00
parent 5db66e3861
commit 0d5a657d5c
4 changed files with 141 additions and 51 deletions

View File

@@ -615,7 +615,12 @@ function parseExcelFile() {
* 解析多值字段(如作者、标签等)
*/
function parseMultipleValues(value: string): string[] {
console.log(value)
if (!value) return []
// @ts-ignore
if (value instanceof Boolean) {
value = value.toString()
}
return value
?.replace('', '/')
.replace('', ',')