国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sys_admin_user_tj.htm 2.0KB

3 年前
3 年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>管理员帐号--绩效统计</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. <script language='javascript' src='../static/web/js/webajax.js'></script>
  10. <script language='javascript'>
  11. //gcontainer,mShowError,mShowWait,mErrCon,mErrDisplay,mWaitDisplay
  12. function LoadUser(uid)
  13. {
  14. var loadhtml = $DE('loaddiv').innerHTML;
  15. var ajaxdiv = $DE('userct'+uid);
  16. fetch('sys_admin_user_tj.php?dopost=getone&uid='+uid).then(resp=>{
  17. if (resp.ok) {
  18. return resp.text()
  19. }
  20. throw new Error('载入失败');
  21. }).then((d)=>{
  22. ajaxdiv.innerHTML = d;
  23. }).catch((error) => {
  24. ajaxdiv.innerHTML = errMsg;
  25. });
  26. }
  27. </script>
  28. <style>
  29. .userct {
  30. padding-top:10px;
  31. width:100%;
  32. height:60px;
  33. }
  34. </style>
  35. </head>
  36. <body background="../static/web/img/allbg.gif" leftmargin="8" topmargin="8">
  37. <div id='loaddiv' style='display:none'>
  38. <p align='center'><img src='../static/web/img/loadinglit.gif'>请稍后,正在载入</p>
  39. </div>
  40. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table maintable mt-3">
  41. <tr>
  42. <td height="26" background="../static/web/img/tbg.gif">
  43. <a href="sys_admin_user.php" style="padding-left:10px">管理员帐号</a> &gt; 编辑绩效统计
  44. </td>
  45. </tr>
  46. <tr>
  47. <td height="270" valign="top" bgcolor="#ffffff">
  48. <?php
  49. $dsql->Execute('me', 'Select * From `#@__admin` order by id asc');
  50. while( $arr = $dsql->GetArray('me') )
  51. {
  52. echo "<div id='userct{$arr['id']}' class='userct'><p align='center'><img src='../static/web/img/loadinglit.gif'>请稍后,正在载入</p></div>\r\n<script language='javascript'>LoadUser({$arr['id']});</script>\r\n";
  53. }
  54. ?>
  55. </td>
  56. </tr>
  57. </table>
  58. </body>
  59. </html>