index.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <div id="actionbar">
  2. <a href="{:url('popupshop/article/add')}" class="button button-blue"> <i class="iconfont icon-add_icon"></i>增加</a>
  3. </div>
  4. <table class="table">
  5. <thead>
  6. <tr>
  7. <th class="w40 fn-tac">#</th>
  8. <th>标题</th>
  9. <th class="w140">更新时间</th>
  10. <th class="fn-tac w100">操作</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. {foreach $lists as $vo}
  15. <tr>
  16. <td class="fn-tac">{$vo.id}</td>
  17. <td><a href="{:url('popupshop/article/edit',array('id'=>$vo.id))}" title="编辑"><i class="iconfont icon-edit"></i> {$vo.title}</a></td>
  18. <td>{$vo.update_time|date='Y-m-d H:i'}</td>
  19. <td class="fn-tac">
  20. <a class="button isDel" url="{:url('popupshop/article/delete',array('id'=>$vo.id))}" href="javascript:;" title="删除"><i class="iconfont icon-lajixiang"></i>删除</a>
  21. </td>
  22. </tr>
  23. {/foreach}
  24. </tbody>
  25. </table>
  26. {$lists|raw}
  27. <script type="text/javascript">
  28. Do('base', 'layer', function () {
  29. $('.isDel').isDel();
  30. })
  31. </script>