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/search.htm

33 lines
840 B
HTML
Raw Normal View History

2018-12-26 23:58:24 +08:00
<div class="do-mod-search">
<div class="tabbar">
<span class="item active">我的音乐</span>
<span class="item">汪苏泷 <i class="do-icon-close"></i></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.id}"
:for="it in list"
:dblclick="play(it, $index)">
<td><i class="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>