|
@@ -356,8 +356,8 @@ export default defineComponent({
|
|
|
{ api: 'chooseFile', content: { type: 'mp3', bucket: 'cloud-coach' } },
|
|
|
evt => {
|
|
|
// @ts-ignore
|
|
|
- this.backgroundMp3s[index].url =
|
|
|
- evt?.fileUrl || this.backgroundMp3s[index].url || ''
|
|
|
+ const url = evt?.fileUrl || this.backgroundMp3s[index].url || ''
|
|
|
+ this.backgroundMp3s[index].url = url
|
|
|
this.backgroundMp3s[index].loading = false
|
|
|
}
|
|
|
)
|