index.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {include file="public/header" /}
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <div class="subject">
  6. <h3>{$Think.lang.ds_feedback}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <div class="fixed-empty"></div>
  13. <div class="explanation" id="explanation">
  14. <div class="title" id="checkZoom">
  15. <h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
  16. <span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
  17. </div>
  18. <ul>
  19. <li>{$Think.lang.feedback_index_hlpe1}</li>
  20. </ul>
  21. </div>
  22. <form method='post' id="form_link">
  23. <table class="ds-default-table nobdb">
  24. <thead>
  25. <tr class="thead">
  26. <th>&nbsp;</th>
  27. <th>{$Think.lang.feedback_index_content}</th>
  28. <th>{$Think.lang.ds_member_name}</th>
  29. <th>{$Think.lang.feedback_index_time}</th>
  30. <th>{$Think.lang.feedback_index_from}</th>
  31. </tr>
  32. </thead>
  33. <tbody>
  34. {notempty name="feedback_list"}
  35. {foreach name="feedback_list" item="v"}
  36. <tr class="hover edit">
  37. <td class="w24"><input type="checkbox" name="del_id[]" value="{$v.fb_id}" class="checkitem"></td>
  38. <td width="705px">{$v.fb_content}</td>
  39. <td>{$v.member_name}</td>
  40. <td>{:date('Y-m-d H:i:s',$v.fb_time)}</td>
  41. <td>{$v.fb_type==1?'WAP':'PC'}</td>
  42. </tr>
  43. {/foreach}
  44. {else /}
  45. <tr class="no_data">
  46. <td colspan="10">{$Think.lang.ds_no_record}</td>
  47. </tr>
  48. {/notempty}
  49. </tbody>
  50. <tfoot>
  51. {notempty name="feedback_list"}
  52. <tr class="tfoot" id="dataFuncs">
  53. <td><input type="checkbox" class="checkall" id="checkallBottom"></td>
  54. <td colspan="16" id="batchAction"><label for="checkallBottom">{$Think.lang.ds_select_all}</label>
  55. &nbsp;&nbsp; <a href="JavaScript:void(0);" class="btn btn-small" onclick="submit_delete_batch()"><span>{$Think.lang.ds_del}</span></a>
  56. </td>
  57. </tr>
  58. {/notempty}
  59. </tfoot>
  60. </table>
  61. {$show_page|raw}
  62. </form>
  63. </div>
  64. <script type="text/javascript">
  65. function submit_delete(ids_str) {
  66. _uri = ADMINSITEURL + "/Feedback/del.html?feedback_id=" + ids_str;
  67. dsLayerConfirm(_uri, '{$Think.lang.ds_ensure_del}');
  68. }
  69. </script>