contribution_list.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {// 引入标签库 }
  2. <tagLib name="html" />
  3. <PHP>
  4. function get_view($id)
  5. {
  6. return "<a href='".url("Deal#updatedetail",array("id"=>$id))."' target='_blank'>查看</a>";
  7. }
  8. </PHP>
  9. <include file="Public:header" />
  10. <load href='__TMPL__Common/js/jquery.bgiframe.js' />
  11. <load href='__TMPL__Common/js/jquery.weebox.js' />
  12. <load href='__TMPL__Common/js/deal.js' />
  13. <load href='__TMPL__Common/style/weebox.css' />
  14. <div class="main">
  15. <div class="main_title">{$video.id} {%TICKET_CONTRIBUTION}</div>
  16. <div class="blank5"></div>
  17. <!--<div class="button_row">
  18. <input type="button" class="button" value="删除" onclick="del_contribution_list();" />
  19. </div>-->
  20. <div class="blank5"></div>
  21. <table id="" class="dataTable" cellpadding="0" cellspacing="0">
  22. <tbody>
  23. <tr>
  24. <td colspan="6" class="topTd">
  25. </td>
  26. </tr>
  27. <tr class="row">
  28. <th width="8">
  29. <input type="checkbox" id="check" onclick="CheckAll('dataTable')">
  30. </th>
  31. <th>贡献用户ID </th>
  32. <th>贡献用户昵称</th>
  33. <th>用户头像</th>
  34. <th>贡献印票数量</th>
  35. <th>贡献钻石数量</th>
  36. </tr>
  37. <foreach name="list" item="list_item">
  38. <tr class="row">
  39. <td><input type="checkbox" name="key" class="key" value="{$list_item.user_id}"></td>
  40. <td>{$list_item.user_id}</td>
  41. <td>{$list_item.nick_name}</td>
  42. <td><img src="{$list_item.head_image}" style="height:35px;width:35px;"></td>
  43. <td>{$list_item.total_ticket}</td>
  44. <td>{$list_item.num}</td>
  45. </tr>
  46. </foreach>
  47. </tbody>
  48. </table>
  49. <div class="blank5"></div>
  50. <div class="page">{$page}</div>
  51. </div>
  52. <include file="Public:footer" />