index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a href="{:url('SlideItem/index',['slide_id'=>$slide_id])}">幻灯片页面列表</a></li>
  7. <li><a href="{:url('SlideItem/add',['slide_id'=>$slide_id])}">添加幻灯片页面</a></li>
  8. </ul>
  9. <form method="post" class="js-ajax-form margin-top-20" action="{:url('SlideItem/listOrder')}">
  10. <div class="table-actions">
  11. <button class="btn btn-primary btn-sm js-ajax-submit" type="submit">{:lang('SORT')}</button>
  12. </div>
  13. <php>
  14. $status = [
  15. '隐藏',
  16. '开启'
  17. ];
  18. </php>
  19. <table class="table table-hover table-bordered">
  20. <thead>
  21. <tr>
  22. <th width="50">{:lang('SORT')}</th>
  23. <th width="50">ID</th>
  24. <th>幻灯片标题</th>
  25. <th>描述</th>
  26. <th>链接</th>
  27. <th>图片</th>
  28. <th>状态</th>
  29. <th width="160">{:lang('ACTIONS')}</th>
  30. </tr>
  31. </thead>
  32. <tbody>
  33. <foreach name="result" item="vo">
  34. <tr>
  35. <td>
  36. <input name="list_orders[{$vo.id}]" class="input-order" type="text" value="{$vo.list_order}">
  37. </td>
  38. <td>{$vo.id}</td>
  39. <td>{$vo.title}</td>
  40. <td>{$description = mb_substr($vo['description'], 0, 48,'utf-8')}</td>
  41. <td>{$vo.url}</td>
  42. <td>
  43. <if condition="!empty($vo['image'])">
  44. <a href="javascript:imagePreviewDialog('{:cmf_get_image_preview_url($vo.image)}');">
  45. <i class="fa fa-photo fa-fw"></i>
  46. </a>
  47. </if>
  48. </td>
  49. <td>{$status[$vo['status']]}</td>
  50. <td>
  51. <a class="btn btn-xs btn-primary" href="{:url('SlideItem/edit',array('id'=>$vo['id']))}">{:lang('EDIT')}</a>
  52. <a href="{:url('SlideItem/delete',array('id'=>$vo['id']))}"
  53. class="btn btn-xs btn-danger js-ajax-delete">{:lang('DELETE')}</a>
  54. <if condition="empty($vo['status']) eq 1">
  55. <a href="{:url('SlideItem/cancelban',array('id'=>$vo['id']))}" class="btn btn-xs btn-warning js-ajax-dialog-btn"
  56. data-msg="确定显示此幻灯片吗?">{:lang('DISPLAY')}</a>
  57. <else/>
  58. <a href="{:url('SlideItem/ban',array('id'=>$vo['id']))}" class="btn btn-xs btn-warning js-ajax-dialog-btn"
  59. data-msg="确定隐藏此幻灯片吗?">{:lang('HIDE')}</a>
  60. </if>
  61. </td>
  62. </tr>
  63. </foreach>
  64. </tbody>
  65. </table>
  66. </form>
  67. </div>
  68. <script src="__STATIC__/js/admin.js"></script>
  69. </body>
  70. </html>