mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
feat: 更新直播请求相关组件和功能
- 在useLiveRequest.ts中使用FunctionTypes替代硬编码的功能标识 - 在SongListManageView.vue中添加调试信息输出 - 在ClassicRequestOBS.vue中优化歌曲请求列表的样式和动画效果 - 在SongRequestSettings.vue中新增OBS相关设置项,支持动态配置
This commit is contained in:
@@ -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(',', ',')
|
||||
|
||||
Reference in New Issue
Block a user