admin-restore.html 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html lang=zh-cn>
  3. <head>
  4. <meta charset=utf-8>
  5. <title>纵横计量支付系统</title>
  6. <meta name=description content=计量支付>
  7. <meta name=copyright content=smartcost.com.cn>
  8. <link rel=stylesheet href={{rootUrl}}global/css/bootstrap.css>
  9. <link rel=stylesheet href={{rootUrl}}global/css/style.css>
  10. <script src={{rootUrl}}global/js/jquery-1.9.1.min.js></script>
  11. <script src={{rootUrl}}global/js/bootstrap.js></script>
  12. <script src={{rootUrl}}global/js/jl.js></script>
  13. </head>
  14. <body>
  15. <div class="wrapHeader">
  16. <h1 class="mainLogo" title="纵横计量支付"></h1>
  17. <div class="sysTools"><a title="返回首页" href="index.html"><i class="icon-circle-arrow-left icon-white"></i></a>&nbsp;&nbsp;&nbsp;<a title="纵横官网" target="_blank" href="http://smartcost.com.cn"><i class="icon-home icon-white"></i></a></div>
  18. </div>
  19. <!-- include "top" -->
  20. <div class="warpAdmin">
  21. <!-- include "menu" -->
  22. <div class="adminContent">
  23. <div class="adminMain">
  24. <fieldset>
  25. <legend>用户列表</legend>
  26. <table class="table table-striped">
  27. <thead>
  28. <tr>
  29. <!--<th>#</th>-->
  30. <th>标段名称</th>
  31. <th>标段总额</th>
  32. <th>操作</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <!-- loop userlist -->
  37. <tr>
  38. <!--<td><input type="checkbox" name="pmid" id="" value="{{userlist' value.pmid}}"/></td>-->
  39. <td>{{userlist' value.pmname}}</td>
  40. <td>{{userlist' value.contracttotal}}</td>
  41. <td> <a href="/manage/restore/redo" data-keyboard="false" data-backdrop="ture" class="colGray" >标段还原</a></td>
  42. </tr>
  43. <!-- endloop -->
  44. </tbody>
  45. </table>
  46. </fieldset>
  47. </div>
  48. </div>
  49. </div>
  50. <!--重置密码-->
  51. <div class="modal hide fade" id="sendpw">
  52. <div class="modal-header">
  53. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  54. <h3>重置密码成功</h3>
  55. </div>
  56. <div class="modal-body">
  57. <p>系统已将新密码发送至该用户的登录邮箱:<b id="email"></b></p>
  58. <p>如果长时间无法接收到邮件,请确认该邮箱是否可以正常接收邮件;</p>
  59. <p>添加 postmaster@zhzd.sendcloud.org 至邮箱白名单,再重新操作<b>重置密码</b>。</p>
  60. </div>
  61. <div class="modal-footer">
  62. </div>
  63. </div>
  64. <!--重置密码-->
  65. <script type="text/javascript">autoFlashHeight();</script>
  66. <script type="text/javascript">
  67. function confirm_stop() {
  68. if (confirm('是否停用此用户?')) {
  69. $('#myform').submit();
  70. }
  71. }
  72. function confirm_resetpasswd(uid) {
  73. $.get("{{rootUrl}}manage/user/repasswd/" + uid + "/uid", function (data) {
  74. $('#email').html(data);
  75. });
  76. }
  77. </script>
  78. </body>
  79. </html>