This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
appcat
/
sonist
Archived
1
0
Fork 0
sonist/views/local.htm

32 lines
820 B
HTML
Raw Normal View History

2018-12-26 23:58:24 +08:00
<div class="do-mod-local" anot="local">
<div class="toolbar">
本地音乐({{list.length}}首)<span class="refresh">重新扫描</span>
</div>
<div class="table">
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>歌名</th>
<th>歌手</th>
<th>专辑</th>
<th>时长</th>
</tr>
</thead>
<tbody>
<tr
:class="{active: it.id === curr}"
:for="it in list"
:dblclick="play($index)">
<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>