|
@@ -73,7 +73,12 @@ export default defineComponent({
|
|
|
}
|
|
|
})
|
|
|
|
|
|
- state.musicList = res.data.rows
|
|
|
+ // state.musicList = res.data.rows
|
|
|
+ state.musicList = res.data.rows.map(n => {
|
|
|
+ if (typeof n.paymentType === 'string')
|
|
|
+ n.paymentType = n.paymentType.split(',')
|
|
|
+ return n
|
|
|
+ })
|
|
|
} catch (e) {
|
|
|
console.log(e)
|
|
|
}
|