index.tsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. import MHeader from '@/components/col-header'
  2. import MSticky from '@/components/col-sticky'
  3. import { defineComponent, onMounted, reactive } from 'vue'
  4. import styles from './index.module.less'
  5. import { Button, Field } from 'vant'
  6. import MUploader from '@/components/col-upload'
  7. import { api_userMusicDetail, api_userMusicSave } from '../api'
  8. import { useRoute, useRouter } from 'vue-router'
  9. import videoBg from '../images/videoBg.png'
  10. import { postMessage } from '@/helpers/native-message'
  11. import { browser } from '@/helpers/utils'
  12. export default defineComponent({
  13. name: 'creation-edit',
  14. setup() {
  15. const {isTablet} = browser()
  16. const route = useRoute()
  17. const router = useRouter()
  18. const state = reactive({
  19. id: route.query.id,
  20. musicDetail: {} as any,
  21. playType: '',
  22. desc: '',
  23. videoImg: '', // 视频封面
  24. img: ''
  25. })
  26. const onSubmit = async () => {
  27. console.log({
  28. id: state.id,
  29. img: state.img,
  30. videoImg: state.videoImg,
  31. desc: state.desc || '我发布了一首演奏作品,快来听听吧~',
  32. musicPracticeRecordId: state.musicDetail.musicPracticeRecordId,
  33. type: 'FORMAL'
  34. })
  35. try {
  36. await api_userMusicSave({
  37. id: state.id,
  38. img: state.img,
  39. videoImg: state.videoImg,
  40. desc: state.desc || '我发布了一首演奏作品,快来听听吧~',
  41. musicPracticeRecordId: state.musicDetail.musicPracticeRecordId,
  42. type: 'FORMAL'
  43. })
  44. router.back()
  45. } catch {
  46. //
  47. }
  48. }
  49. // 截图
  50. const onCropper = () => {
  51. postMessage(
  52. {
  53. api: 'videoCrop',
  54. content: {
  55. url: state.musicDetail.videoUrl
  56. }
  57. },
  58. res => {
  59. if (res?.content.videoCover) {
  60. state.videoImg = res.content.videoCover
  61. }
  62. }
  63. )
  64. }
  65. onMounted(async () => {
  66. try {
  67. const { data } = await api_userMusicDetail(state.id)
  68. state.musicDetail = data
  69. state.desc = data.desc
  70. state.videoImg = data.videoImg
  71. state.img = data.img
  72. if (data?.videoUrl.lastIndexOf('mp4') !== -1) {
  73. state.playType = 'Video'
  74. } else {
  75. state.playType = 'Audio'
  76. }
  77. } catch {
  78. //
  79. }
  80. })
  81. return () => (
  82. <div class={isTablet ? styles.creationTablet : ''}>
  83. <MSticky position="top">
  84. <MHeader background={'#F1F1F1'} border={false} />
  85. </MSticky>
  86. <div class={[styles.section, styles.sectionFile]}>
  87. <div class={styles.uploadImg}>
  88. <MUploader
  89. class={styles.muploader}
  90. // native
  91. cropper
  92. tips={''}
  93. deletable={false}
  94. v-model:modelValue={state.img}
  95. />
  96. {/* <div class={styles.tip}>选封面</div> */}
  97. </div>
  98. <div class={styles.musicDetail}>
  99. <p class={styles.musicName}>{state.musicDetail.musicSheetName}</p>
  100. <p class={styles.username}>{state.musicDetail.username}</p>
  101. </div>
  102. </div>
  103. {state.playType === 'Video' && (
  104. <div class={[styles.section, styles.sectionVideo]}>
  105. <img src={state.videoImg || videoBg} class={styles.videoBg} />
  106. <div class={styles.btnGroup}>
  107. <MUploader
  108. class={styles.btnImg}
  109. cropper
  110. tips=""
  111. deletable={false}
  112. onUploadChange={img => {
  113. console.log(img, 'img')
  114. state.videoImg = img
  115. }}
  116. options={{
  117. fixedNumber: [16, 9]
  118. }}
  119. />
  120. <div class={styles.btnCropper} onClick={onCropper}>
  121. 视频截取封面
  122. </div>
  123. </div>
  124. </div>
  125. )}
  126. <div class={styles.section}>
  127. <Field
  128. rows={4}
  129. autosize
  130. type="textarea"
  131. maxlength={150}
  132. placeholder="我发布了一首演奏作品,快来听听吧~"
  133. showWordLimit
  134. v-model={state.desc}
  135. />
  136. </div>
  137. <div class={styles.btnGroup}>
  138. <Button type="primary" round block color="#2DC7AA" onClick={onSubmit}>
  139. {state.musicDetail.type === 'FORMAL' ? '保存' : '发布'}
  140. </Button>
  141. </div>
  142. </div>
  143. )
  144. }
  145. })