2018-12-26 23:58:24 +08:00
|
|
|
<div class="do-mod-local" anot="local">
|
|
|
|
<div class="toolbar">
|
2018-12-28 18:47:45 +08:00
|
|
|
本地音乐({{list.length}}首)<span class="refresh" :click="refresh">重新扫描</span>
|
2018-12-26 23:58:24 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="table">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th> </th>
|
|
|
|
<th>歌名</th>
|
|
|
|
<th>歌手</th>
|
|
|
|
<th>专辑</th>
|
|
|
|
<th>时长</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr
|
|
|
|
:class="{active: it.id === curr}"
|
|
|
|
:for="it in list"
|
2018-12-28 22:19:29 +08:00
|
|
|
:dblclick="play(it, $index)">
|
2018-12-26 23:58:24 +08:00
|
|
|
<td class="ac"><i class="stat s-icon-music"></i></td>
|
|
|
|
<td :text="it.title"></td>
|
|
|
|
<td class="ac" :text="it.artist"></td>
|
|
|
|
<td class="ac" :text="it.album"></td>
|
|
|
|
<td class="ac" :text="it.duration | time"></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|