国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 line
3.5KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>会员级别设置</title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <div class="container-fluid">
  13. <ol class="breadcrumb">
  14. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  15. <li class="breadcrumb-item active">会员级别设置</li>
  16. </ol>
  17. <div class="card shadow-sm">
  18. <div class="card-header">会员级别设置</div>
  19. <div class="card-body">
  20. <div class="alert alert-info">注册会员级别不建议删除,否则会影响会员功能无法使用某些功能,会员级别值由低向高升级,因此添加组别时需注意此值,如果您添加会员组的级别值低于10,将自动被视为普通的注册会员</div>
  21. <form name="form1" action="member_rank.php" method="post">
  22. <input type="hidden" name="dopost" value="save">
  23. <div class="table-responsive">
  24. <table class="table table-borderless">
  25. <thead>
  26. <tr>
  27. <td scope="col">级别名称</td>
  28. <td scope="col">级别值(待审为0、注册会员为10)</td>
  29. <td scope="col">默认金币</td>
  30. <td scope="col">默认积分</td>
  31. <td scope="col">类型</td>
  32. <td scope="col">状态</td>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <?php
  37. $k = 0;
  38. while($row = $dsql->GetObject())
  39. {
  40. $k++;
  41. ?>
  42. <tr>
  43. <td>
  44. <input type="hidden" name="ID_<?php echo $k?>" value="<?php echo $row->id;?>">
  45. <input type="text" name="name_<?php echo $k?>" value="<?php echo $row->membername;?>" id="name_<?php echo $k?>">
  46. </td>
  47. <td><input type="text" name="rank_<?php echo $k?>" value="<?php echo $row->rank;?>" id="rank_<?php echo $k?>"></td>
  48. <td><input type="text" name="money_<?php echo $k?>" value="<?php echo $row->money;?>" id="money_<?php echo $k?>"></td>
  49. <td><input type="text" name="scores_<?php echo $k?>" value="<?php echo $row->scores;?>" id="scores_<?php echo $k?>"></td>
  50. <td><?php if ($row->id<=5) {echo "系统";} else {echo "会员";}?></td>
  51. <td><input type="checkbox" name="check_<?php echo $k?>" id="check_<?php echo $k?>" <?php if ($row->id == 3) echo 'disabled="disabled"';?> value="1" checked> 正在使用</td>
  52. </tr>
  53. <?php }?>
  54. <input type="hidden" name="idend" value="<?php echo $k;?>">
  55. <tr>
  56. <td><input type="text" name="name_new" id="name_new"></td>
  57. <td><input type="text" name="rank_new" id="rank_new" value="20"></td>
  58. <td><input type="text" name="money_new" id="money_new" value="0"></td>
  59. <td><input type="text" name="scores_new" id="scores_new" value="100"></td>
  60. <td></td>
  61. <td><input type="checkbox" name="check_new" id="check_new" value="1" checked> 添加等级</td>
  62. </tr>
  63. <tr>
  64. <td colspan="6" align="center">
  65. <button type="submit" class="btn btn-success btn-sm">保存</button>
  66. <button type="reset" class="btn btn-outline-success btn-sm">重置</button>
  67. </td>
  68. </tr>
  69. </tbody>
  70. </table>
  71. </div>
  72. </form>
  73. </div>
  74. </div>
  75. </div>
  76. </body>
  77. </html>