index.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <include file="public@header"/>
  2. <style>
  3. .table img{
  4. max-width:100px;
  5. max-height:100px;
  6. }
  7. </style>
  8. </head>
  9. <body>
  10. <div class="wrap">
  11. <ul class="nav nav-tabs">
  12. <li class="active"><a >背景音乐列表</a></li>
  13. <li><a href="{:url('Music/music_add')}">添加</a></li>
  14. </ul>
  15. <form class="well form-inline margin-top-20" method="post" action="{:url('Music/index')}">
  16. 选择分类:
  17. <select class="select_2 form-control" name="classify_id">
  18. <option value="">全部</option>
  19. <volist name="classify" id="vo">
  20. <option value="{$vo['id']}" <if condition="input('request.classify_id') eq $vo['id']">selected</if> >{$vo['title']}</option>
  21. </volist>
  22. </select>
  23. <!-- 选择上传类型:
  24. <select class="select_2 form-control" name="upload_type">
  25. <option value="0">全部</option>
  26. <option value="1" <if condition="input('request.upload_type') eq 1">selected</if> >管理员上传</option>
  27. <option value="2" <if condition="input('request.upload_type') eq 2">selected</if> >用户上传</option>
  28. </select> -->
  29. 关键字:
  30. <input class="form-control" type="text" name="keyword" style="width: 200px;" value="{:input('request.keyword')}" placeholder="音乐名称">
  31. <input type="submit" class="btn btn-primary" value="搜索">
  32. <a class="btn btn-danger" href="{:url('Admin/Music/index')}">清空</a>
  33. </form>
  34. <form method="post" class="js-ajax-form" >
  35. <table class="table table-hover table-bordered">
  36. <thead>
  37. <tr>
  38. <th align="center">ID</th>
  39. <th>音乐名称</th>
  40. <th>演唱者</th>
  41. <th>上传类型</th>
  42. <th>上传者</th>
  43. <th>封面</th>
  44. <th>音乐长度</th>
  45. <th>音乐地址</th>
  46. <th>使用次数</th>
  47. <th>是否删除</th>
  48. <th>所属分类</th>
  49. <th>添加时间</th>
  50. <th>修改时间</th>
  51. <th align="center">{:lang('ACTIONS')}</th>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <php>$upload_type=array("1"=>"管理员","2"=>"用户");$isdel=array("0"=>"否","1"=>"是");</php>
  56. <foreach name="lists" item="vo">
  57. <tr>
  58. <td align="center">{$vo.id}</td>
  59. <td>{$vo['title']}</td>
  60. <td>{$vo['author']}</td>
  61. <td>{$upload_type[$vo['upload_type']]}</td>
  62. <td>{$vo['uploader_nicename']}({$vo['uploader']})</td>
  63. <td><img class="imgtip" src="{:get_upload_path($vo['img_url'])}" width="50" height="50"></td>
  64. <td>{$vo['length']}</td>
  65. <td style="max-width: 300px;word-break:break-all;">{$vo['file_url']}</td>
  66. <td>{$vo['use_nums']}</td>
  67. <td>{$isdel[$vo['isdel']]}</td>
  68. <td>{$vo['classify_title']}</td>
  69. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  70. <td><if condition="$vo['updatetime'] neq '0'">{:date('Y-m-d H:i:s',$vo['updatetime'])}<else />--</if></td>
  71. <td align="center">
  72. <a class="btn btn-xs btn-primary" href="javascript:void(0)" onclick="musicListen({$vo['id']})" >试听</a>
  73. <a class="btn btn-xs btn-primary" href="{:url('Music/music_edit',array('id'=>$vo['id']))}" >编辑</a>
  74. <if condition="$vo['isdel'] eq '0'">
  75. <a href="{:url('Music/music_del',array('id'=>$vo['id']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a>
  76. <else />
  77. <a href="{:url('Music/music_canceldel',array('id'=>$vo['id']))}" class="btn btn-xs btn-danger js-ajax-dialog-btn" data-msg="您确定要取消删除吗?">取消删除</a>
  78. </if>
  79. </td>
  80. </tr>
  81. </foreach>
  82. </tbody>
  83. </table>
  84. <div class="pagination">{$page}</div>
  85. </form>
  86. </div>
  87. <script src="__STATIC__/js/admin.js"></script>
  88. <script src="__STATIC__/layer/layer.js"></script>
  89. <script type="text/javascript">
  90. function musicListen(id){
  91. layer.open({
  92. type: 2,
  93. title: '音乐试听',
  94. shadeClose: true,
  95. shade: 0.8,
  96. area: ['500px', '140px'],
  97. content: '/admin/music/music_listen&id='+id
  98. });
  99. }
  100. </script>
  101. </body>
  102. </html>