|
@@ -112,9 +112,15 @@ export default defineComponent({
|
|
|
<MusicItem
|
|
|
onClick={(item: any) => {
|
|
|
if (['PASS', 'DOING'].includes(this.auditStatus)) {
|
|
|
- this.$router.push({ path: '/muiscDetial', query: { id: item.id } })
|
|
|
+ this.$router.push({
|
|
|
+ path: '/muiscDetial',
|
|
|
+ query: { id: item.id }
|
|
|
+ })
|
|
|
}
|
|
|
- if (this.auditStatus === 'UNPASS') {
|
|
|
+ if (
|
|
|
+ this.auditStatus === 'UNPASS' ||
|
|
|
+ this.auditStatus === 'OUT_SALE'
|
|
|
+ ) {
|
|
|
console.log(item)
|
|
|
this.$router.push({
|
|
|
path: '/userInfo/musicOperation',
|
|
@@ -124,7 +130,6 @@ export default defineComponent({
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
}}
|
|
|
item={{
|
|
|
id: item.id,
|