no message

This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-09-11 14:45:15 +08:00
parent cdd34ea0ed
commit 7116519dd8
5 changed files with 322 additions and 43 deletions

View File

@@ -69,7 +69,7 @@
<img class="bj bj3" src="./static/img/album-bj3.svg" />
<img class="bj bj4" src="./static/img/album-bj4.png" />
<img class="bj bj5" src="./static/img/album-bj5.svg" />
<img v-if="!audioHeadState" class="play" @click="manageAudio('./mp3/1.MP3','head')" src="./static/img/play-white-icon.svg" />
<img v-if="!audioHeadState" class="play" @click="manageAudio('./static/mp3/1.MP3','head')" src="./static/img/play-white-icon.svg" />
<img v-else class="play" @click="closeAll()" src="./static/img/pause-white-icon.svg" />
</div>
</div>
@@ -176,7 +176,7 @@
<div class="student-box flexflex">
<img class="title" src="./static/img/student-title.png" alt="" />
<div class="list flexacenter">
<img class="img" :class="[`img${ item.serial }`]" v-for="(item,index) in studentList" :src="item.img" :key="item.serial" @click="cutStudent(index)" />
<img class="img" :class="[`img${ item.order }`]" v-for="(item, index) in studentList" :src="item.img" :key="index" @click="cutStudent(item.order)" />
</div>
<div class="name">《听风少年的梦幻之城》</div>
<div class="info flexacenter">
@@ -187,13 +187,8 @@
<div class="progress-bar flexacenter">
<div class="bar white" :style="{ width: progress + '%' }"></div>
<div class="circle"></div>
<div class="bar black" :style="{ width: (100 - progress) + '%' }"></div>
<div class="bar black flex1"></div>
</div>
<!-- <div class="time-display">
<span>{{ formatTime(currentTime) }}</span>
<span>/</span>
<span>{{ formatTime(duration) }}</span>
</div> -->
<div class="operate flexcenter">
<img class="cut left" src="./static/img/cut-left.svg" />