feat: 样式升级

This commit is contained in:
2026-03-16 23:54:01 +08:00
parent 110fe62404
commit 4a5fdd3961
42 changed files with 1931 additions and 1404 deletions

View File

@@ -1,6 +1,6 @@
import { defineStore } from 'pinia'
import { VoiceService } from '@/api/voice'
import { message } from 'ant-design-vue'
import { toast } from 'vue-sonner'
export const useVoiceCopyStore = defineStore('voiceCopy', {
state: () => ({
@@ -43,11 +43,11 @@ export const useVoiceCopyStore = defineStore('voiceCopy', {
}
this.loaded = true
} else {
message.error(res.msg || '加载失败')
toast.error(res.msg || '加载失败')
}
} catch (error) {
console.error('加载配音列表失败:', error)
message.error('加载失败,请稍后重试')
toast.error('加载失败,请稍后重试')
} finally {
this.loading = false
}
@@ -77,7 +77,7 @@ export const useVoiceCopyStore = defineStore('voiceCopy', {
await this.load() // 重新加载以获取完整数据
return newProfile
} else {
message.error(res.msg || '创建失败')
toast.error(res.msg || '创建失败')
throw new Error(res.msg || '创建失败')
}
} catch (error) {
@@ -113,7 +113,7 @@ export const useVoiceCopyStore = defineStore('voiceCopy', {
}
return profile
} else {
message.error(res.msg || '更新失败')
toast.error(res.msg || '更新失败')
throw new Error(res.msg || '更新失败')
}
} catch (error) {
@@ -147,7 +147,7 @@ export const useVoiceCopyStore = defineStore('voiceCopy', {
this.activeId = this.profiles[0]?.id || ''
}
} else {
message.error(res.msg || '删除失败')
toast.error(res.msg || '删除失败')
throw new Error(res.msg || '删除失败')
}
} catch (error) {