|
@@ -57,10 +57,14 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
)
|
|
|
- this.list = Array.isArray(data.list.rows) && data.list.rows.map(n => {
|
|
|
- if (typeof n.paymentType === 'string') n.paymentType = n.paymentType.split(',')
|
|
|
- return n
|
|
|
- }) || []
|
|
|
+ this.list =
|
|
|
+ (Array.isArray(data.list.rows) &&
|
|
|
+ data.list.rows.map(n => {
|
|
|
+ if (typeof n.paymentType === 'string')
|
|
|
+ n.paymentType = n.paymentType.split(',')
|
|
|
+ return n
|
|
|
+ })) ||
|
|
|
+ []
|
|
|
this.pageInfo.total = data.list.total
|
|
|
if (data.list.total <= 0) {
|
|
|
this.dataShow = true
|
|
@@ -162,6 +166,7 @@ export default defineComponent({
|
|
|
musicSheetName: item.musicSheetName,
|
|
|
subjectNames: item.subjectNames,
|
|
|
exquisiteFlag: item.exquisiteFlag,
|
|
|
+ albumNums: item.albumNums,
|
|
|
titleImg: item.titleImg,
|
|
|
composer: item.composer,
|
|
|
chargeType: item.chargeType,
|