index.tsx 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. import { Icon, NoticeBar, Tag, Image } from "vant";
  2. import { defineComponent, PropType } from "vue";
  3. import styles from "./index.module.less";
  4. import IconPlay from "@/assets/icon-play.png";
  5. import IconFine from "@/assets/icon_fine.png";
  6. import IconAlbum from "@/assets/icon_album_active.png";
  7. import { useRouter } from "vue-router";
  8. export default defineComponent({
  9. name: "TheSong",
  10. props: {
  11. list: {
  12. type: Array as PropType<any[]>,
  13. default: () => [],
  14. },
  15. },
  16. setup(props) {
  17. const router = useRouter();
  18. const colors: any = {
  19. FREE: {
  20. color: "#01B84F",
  21. text: "免费",
  22. },
  23. VIP: {
  24. color: "#CD863E",
  25. text: "会员",
  26. },
  27. CHARGE: {
  28. color: "#3591CE",
  29. text: "点播",
  30. },
  31. };
  32. return () => (
  33. <div class={styles.theSong}>
  34. {props.list.map((n: any) => (
  35. <div
  36. class={styles.item}
  37. onClick={() =>
  38. router.push({ path: "/musicDetail", query: { id: n.id } })
  39. }
  40. >
  41. <div class={styles.content}>
  42. <div class={styles.top}>
  43. {/* <Tag
  44. style={{ color: colors[n.chargeType].color }}
  45. class={styles.tag}
  46. type="success"
  47. plain
  48. >
  49. {colors[n.chargeType].text}
  50. </Tag> */}
  51. {n.exquisiteFlag === 1 && (
  52. <Image src={IconFine} class={styles.iconFine} />
  53. )}
  54. {n.albumNums > 0 && (
  55. <Image src={IconAlbum} class={styles.iconAlbum} />
  56. )}
  57. <span class={[styles.title, "van-ellipsis"]}>
  58. {n.musicSheetName}
  59. </span>
  60. <span class={[styles.singer, "van-ellipsis"]}>
  61. -{n.composer}
  62. </span>
  63. </div>
  64. <div class={styles.user}>
  65. {n.addName ? (
  66. <div class={styles.name}>上传者:{n.addName}</div>
  67. ) : (
  68. <div class={styles.name}>作曲:{n.composer}</div>
  69. )}
  70. <div class={styles.tags}>
  71. {n?.subjectNames.split(",").map((name: any) => (
  72. <span>{name}</span>
  73. ))}
  74. </div>
  75. </div>
  76. </div>
  77. <div style={styles.play}>
  78. <Icon name={IconPlay} size={28} />
  79. </div>
  80. </div>
  81. ))}
  82. </div>
  83. );
  84. },
  85. });