语音质检系统web端

audioPlayer.vue 1.2KB

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <!-- 通话录音 -->
  3. <div>
  4. <h3 class="text-gray-900 font-medium mb-4">通话录音</h3>
  5. <div class="bg-gray-50 p-4 rounded-lg">
  6. <div class="flex items-center gap-4">
  7. <button class="flex items-center !rounded-button whitespace-nowrap">
  8. <el-icon class="mr-2"><Microphone /></el-icon>
  9. 音量
  10. </button>
  11. <div class="flex-1 h-2 bg-gray-200 rounded-full">
  12. <div class="w-3/4 h-full bg-blue-500 rounded-full"></div>
  13. </div>
  14. <span class="text-gray-600">02:19</span>
  15. <button class="text-blue-600 !rounded-button whitespace-nowrap">
  16. <el-icon><Mute /></el-icon>
  17. </button>
  18. <button class="text-blue-600 !rounded-button whitespace-nowrap">
  19. <el-icon><VideoPlay /></el-icon>
  20. </button>
  21. <button class="text-blue-600 !rounded-button whitespace-nowrap">
  22. <el-icon><Refresh /></el-icon>
  23. </button>
  24. </div>
  25. </div>
  26. </div>
  27. </template>
  28. <script setup lang="ts">
  29. import { Microphone, Mute, VideoPlay, Refresh } from '@element-plus/icons-vue'
  30. </script>