From a1d7e81859f554f3a53680cc35f0f49bf1f77098 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期四, 14 五月 2026 14:37:02 +0800
Subject: [PATCH] 导入项目
---
src/views/ai/music/index/list/audioBar/index.vue | 70 +++++++++++++++++++++++++++++++++++
1 files changed, 70 insertions(+), 0 deletions(-)
diff --git a/src/views/ai/music/index/list/audioBar/index.vue b/src/views/ai/music/index/list/audioBar/index.vue
new file mode 100644
index 0000000..db7f767
--- /dev/null
+++ b/src/views/ai/music/index/list/audioBar/index.vue
@@ -0,0 +1,70 @@
+<template>
+ <div class="flex items-center justify-between px-2 h-72px bg-[var(--el-bg-color-overlay)] b-solid b-1 b-[var(--el-border-color)] b-l-none">
+ <!-- 姝屾洸淇℃伅 -->
+ <div class="flex gap-[10px]">
+ <el-image src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png" class="w-[45px]"/>
+ <div>
+ <div>{{currentSong.name}}</div>
+ <div class="text-[12px] text-gray-400">{{currentSong.singer}}</div>
+ </div>
+ </div>
+
+ <!-- 闊抽controls -->
+ <div class="flex gap-[12px] items-center">
+ <Icon icon="majesticons:back-circle" :size="20" class="text-gray-300 cursor-pointer"/>
+ <Icon :icon="audioProps.paused ? 'mdi:arrow-right-drop-circle' : 'solar:pause-circle-bold'" :size="30" class=" cursor-pointer" @click="toggleStatus('paused')"/>
+ <Icon icon="majesticons:next-circle" :size="20" class="text-gray-300 cursor-pointer"/>
+ <div class="flex gap-[16px] items-center">
+ <span>{{audioProps.currentTime}}</span>
+ <el-slider v-model="audioProps.duration" color="#409eff" class="w-[160px!important] "/>
+ <span>{{ audioProps.duration }}</span>
+ </div>
+ <!-- 闊抽 -->
+ <audio v-bind="audioProps" ref="audioRef" controls v-show="!audioProps" @timeupdate="audioTimeUpdate">
+ <source :src="audioUrl"/>
+ </audio>
+ </div>
+
+ <!-- 闊抽噺鎺у埗鍣� -->
+ <div class="flex gap-[16px] items-center">
+ <Icon :icon="audioProps.muted ? 'tabler:volume-off' : 'tabler:volume'" :size="20" class="cursor-pointer" @click="toggleStatus('muted')"/>
+ <el-slider v-model="audioProps.volume" color="#409eff" class="w-[160px!important] "/>
+ </div>
+ </div>
+</template>
+
+<script lang="ts" setup>
+import { formatPast } from '@/utils/formatTime'
+import audioUrl from '@/assets/audio/response.mp3'
+
+defineOptions({ name: 'Index' })
+
+const currentSong = inject('currentSong', {})
+
+const audioRef = ref<Nullable<HTMLElement>>(null)
+ // 闊抽鐩稿叧灞炴�ttps://www.runoob.com/tags/ref-av-dom.html
+const audioProps = reactive({
+ autoplay: true,
+ paused: false,
+ currentTime: '00:00',
+ duration: '00:00',
+ muted: false,
+ volume: 50,
+})
+
+function toggleStatus (type: string) {
+ audioProps[type] = !audioProps[type]
+ if (type === 'paused' && audioRef.value) {
+ if (audioProps[type]) {
+ audioRef.value.pause()
+ } else {
+ audioRef.value.play()
+ }
+ }
+}
+
+// 鏇存柊鎾斁浣嶇疆
+function audioTimeUpdate (args) {
+ audioProps.currentTime = formatPast(new Date(args.timeStamp), 'mm:ss')
+}
+</script>
--
Gitblit v1.8.0