|
@@ -482,7 +482,7 @@ export default defineComponent({
|
|
|
this.rankingMethod == 'TOTAL_SCORE' &&
|
|
|
styles.musicTitleScore
|
|
|
]}
|
|
|
- isLink
|
|
|
+ isLink={this.rankingMethod === 'TOTAL_SCORE' ? true : false}
|
|
|
v-slots={{
|
|
|
icon: () => (
|
|
|
<Image
|
|
@@ -504,6 +504,9 @@ export default defineComponent({
|
|
|
value: () => (
|
|
|
<span
|
|
|
onClick={() => {
|
|
|
+ if (this.rankingMethod !== 'TOTAL_SCORE') {
|
|
|
+ return
|
|
|
+ }
|
|
|
this.$router.push({
|
|
|
path: '/track-subject-song',
|
|
|
query: {
|