index.tsx 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. import { defineComponent, onMounted, reactive, ref } from 'vue';
  2. import styles from './index.module.less';
  3. import img1 from '../images/co-tenant/img1.png';
  4. import img2 from '../images/co-tenant/img2.png';
  5. import img3 from '../images/co-tenant/img3.png';
  6. // Import Swiper Vue.js components
  7. import { Swiper, SwiperSlide } from 'swiper/vue';
  8. // Import Swiper styles
  9. import 'swiper/css';
  10. import { Vue3Lottie } from 'vue3-lottie';
  11. import request from 'umi-request';
  12. export default defineComponent({
  13. name: 'music-room',
  14. setup() {
  15. const swipeIndex = ref(1);
  16. const animation = reactive({
  17. animaRef1: null as any,
  18. animaRef2: null as any,
  19. animaRef3: null as any,
  20. subjectJSON: '',
  21. ensembleJSON: '',
  22. soloJSON: ''
  23. });
  24. onMounted(async () => {
  25. await request(location.pathname + 'data/ensemble.json').then(res => {
  26. animation.ensembleJSON = res;
  27. });
  28. await request(location.pathname + 'data/solo.json').then(res => {
  29. animation.soloJSON = res;
  30. });
  31. await request(location.pathname + 'data/subject.json').then(res => {
  32. animation.subjectJSON = res;
  33. });
  34. });
  35. return () => (
  36. <div class={styles.coTenant}>
  37. <div class={styles.section1}>
  38. <div class={[styles.title]}>
  39. <span>客制化训练教程</span>
  40. </div>
  41. <div class={[styles.content, styles.center]}>
  42. 专属定制训练教程,让学员所学即所练
  43. </div>
  44. <Swiper
  45. class={styles.swipe}
  46. initialSlide={1}
  47. slidesPerView={'auto'}
  48. centeredSlides={true}
  49. onSlideChange={swiper => {
  50. swipeIndex.value = swiper.activeIndex;
  51. if (swiper.activeIndex === 0) {
  52. // animation.animPlay = true;
  53. // animation.animPlay2 = false;
  54. // animation.animPlay3 = false;
  55. animation.animaRef1?.play();
  56. animation.animaRef2?.stop();
  57. animation.animaRef3?.stop();
  58. } else if (swiper.activeIndex === 1) {
  59. // animation.animPlay = false;
  60. // animation.animPlay2 = true;
  61. // animation.animPlay3 = false;
  62. animation.animaRef1?.stop();
  63. animation.animaRef2?.play();
  64. animation.animaRef3?.stop();
  65. } else if (swiper.activeIndex === 2) {
  66. // animation.animPlay = false;
  67. // animation.animPlay2 = false;
  68. // animation.animPlay3 = true;
  69. console.log(animation.animaRef3);
  70. animation.animaRef1?.stop();
  71. animation.animaRef2?.stop();
  72. animation.animaRef3?.play();
  73. }
  74. }}>
  75. <SwiperSlide>
  76. <div class={styles.swipeContainer}>
  77. <Vue3Lottie
  78. ref={el => (animation.animaRef1 = el)}
  79. animationData={animation.subjectJSON}
  80. autoPlay={false}></Vue3Lottie>
  81. <div class={styles.desc}>
  82. <p>
  83. 声部教材全量制作为练习曲目,课堂所学即课后所练。让学生循序渐进逐步掌握器乐演奏技能
  84. </p>
  85. </div>
  86. </div>
  87. </SwiperSlide>
  88. <SwiperSlide>
  89. <div class={styles.swipeContainer}>
  90. <Vue3Lottie
  91. ref={el => (animation.animaRef2 = el)}
  92. animationData={animation.ensembleJSON}
  93. autoPlay={true}></Vue3Lottie>
  94. <div class={styles.desc}>
  95. <p>
  96. 不同难度的小曲目、流行乐曲持续更新,每首曲目都带有伴奏,在课程之外提升练习兴趣
  97. </p>
  98. </div>
  99. </div>
  100. </SwiperSlide>
  101. <SwiperSlide>
  102. <div class={styles.swipeContainer}>
  103. <Vue3Lottie
  104. ref={el => {
  105. animation.animaRef3 = el;
  106. }}
  107. animationData={animation.soloJSON}
  108. autoPlay={false}></Vue3Lottie>
  109. <div class={styles.desc}>
  110. <p>
  111. 每首合奏曲目都包含多分轨和对应分轨伴奏。同一教学体系下的合奏训练,合排更容易,演出更出彩
  112. </p>
  113. </div>
  114. </div>
  115. </SwiperSlide>
  116. </Swiper>
  117. <div class={styles.pagination}>
  118. <i
  119. class={[
  120. styles.paginationItem,
  121. swipeIndex.value === 0 && styles.active
  122. ]}></i>
  123. <i
  124. class={[
  125. styles.paginationItem,
  126. swipeIndex.value === 1 && styles.active
  127. ]}></i>
  128. <i
  129. class={[
  130. styles.paginationItem,
  131. swipeIndex.value === 2 && styles.active
  132. ]}></i>
  133. </div>
  134. </div>
  135. <div class={styles.section2}>
  136. <div class={[styles.title]}>
  137. <span>训练统计</span>
  138. </div>
  139. <div class={[styles.content, styles.center]}>
  140. 学生练习情况统计,让您随时掌握训练情况
  141. </div>
  142. <img src={img1} class={'w100'} />
  143. </div>
  144. <div class={styles.section3}>
  145. <div class={[styles.title]}>
  146. <span>即时通讯</span>
  147. </div>
  148. <div class={[styles.content]}>
  149. 自定义教学群组,让学生的问题及时解决,让学生和家长感受到全方面的优秀服务
  150. </div>
  151. <img src={img2} class={'w100'} />
  152. </div>
  153. <div class={styles.section4}>
  154. <div class={[styles.title]}>
  155. <span>高效管理</span>
  156. </div>
  157. <div class={[styles.content, styles.center]}>
  158. 老师、学生信息一首掌握,让您的管理更加高效
  159. </div>
  160. <img src={img3} class={'w100'} />
  161. </div>
  162. </div>
  163. );
  164. }
  165. });