rhythmPracticeList.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <div class="rhythmPracticeList">
  3. <div class="headCon">
  4. <div class="headLeft">
  5. <img class="tipImg" src="@/views/Editor/CanvasTool/imgs/jzlx.png" alt="" />
  6. <div class="title">节奏练习</div>
  7. </div>
  8. <div class="headright">
  9. <img @click="emits('close')" class="closeBtn" src="../../cloudCoachElement/cloudCoachList/imgs/close.png" alt="" />
  10. </div>
  11. </div>
  12. <div class="content">
  13. <rhythmPracticePlayer @handleIframeLoad="handleIframeLoad" :settingMode="true" ref="rhythmPracticePlayerDom" :width="1098" :height="618" />
  14. </div>
  15. <div class="btnCon">
  16. <div class="cancelBtn" @click="emits('close')">取消</div>
  17. <div class="addBtn" :class="{ disabled: loading }" @click="handleAddrhythmPractice">添加</div>
  18. </div>
  19. </div>
  20. </template>
  21. <script setup lang="ts">
  22. import rhythmPracticePlayer from "../rhythmPracticePlayer"
  23. import { ref } from "vue"
  24. import { rhythmPracticeMes } from "@/messageHooks/rhythmPractice"
  25. const emits = defineEmits<{
  26. (event: "update", value: string): void
  27. (event: "close"): void
  28. }>()
  29. const loading = ref(true)
  30. const rhythmPracticePlayerDom = ref<InstanceType<typeof rhythmPracticePlayer>>()
  31. const { getRhythmPracticeSetting } = rhythmPracticeMes()
  32. async function handleAddrhythmPractice() {
  33. if (loading.value) return
  34. try {
  35. const rhythmPracticeSetting = await getRhythmPracticeSetting(rhythmPracticePlayerDom.value?.rhythmPracticeIframeDom)
  36. emits("update", rhythmPracticeSetting)
  37. } catch (e) {
  38. console.log(e)
  39. }
  40. }
  41. function handleIframeLoad() {
  42. loading.value = false
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .rhythmPracticeList {
  47. width: 100%;
  48. height: 100%;
  49. .headCon {
  50. width: 100%;
  51. height: 64px;
  52. border-bottom: 1px solid #eaeaea;
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. .headLeft {
  57. margin-left: 30px;
  58. display: flex;
  59. align-items: center;
  60. .tipImg {
  61. width: 24px;
  62. height: 24px;
  63. }
  64. .title {
  65. font-weight: 600;
  66. font-size: 18px;
  67. color: #131415;
  68. margin-left: 8px;
  69. }
  70. }
  71. .headright {
  72. margin-right: 30px;
  73. display: flex;
  74. align-items: center;
  75. .closeBtn {
  76. width: 24px;
  77. height: 24px;
  78. cursor: pointer;
  79. &:hover {
  80. opacity: 0.8;
  81. }
  82. }
  83. }
  84. }
  85. .content {
  86. width: 100%;
  87. height: calc(100% - 130px);
  88. }
  89. .btnCon {
  90. width: 100%;
  91. height: 66px;
  92. padding: 0 30px;
  93. display: flex;
  94. justify-content: flex-end;
  95. align-items: center;
  96. .addBtn {
  97. width: 76px;
  98. height: 34px;
  99. background: linear-gradient(312deg, #1b7af8 0%, #3cbbff 100%);
  100. border-radius: 6px;
  101. line-height: 34px;
  102. text-align: center;
  103. font-weight: 600;
  104. font-size: 14px;
  105. color: #ffffff;
  106. cursor: pointer;
  107. &:hover {
  108. opacity: 0.8;
  109. }
  110. &.disabled {
  111. opacity: 0.7;
  112. cursor: default;
  113. }
  114. }
  115. .cancelBtn {
  116. margin-right: 12px;
  117. width: 76px;
  118. height: 34px;
  119. background: #f1f2f6;
  120. border-radius: 6px;
  121. line-height: 34px;
  122. text-align: center;
  123. font-weight: 600;
  124. font-size: 14px;
  125. color: #1e2022;
  126. cursor: pointer;
  127. &:hover {
  128. opacity: 0.8;
  129. }
  130. }
  131. }
  132. }
  133. </style>