No Description
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.

sql_reset.htm 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div class="page" style="min-width: 400px;">
  4. <div class="ncap-form-default">
  5. <div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); width: 99%; height: 100%;">
  6. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  7. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  8. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  9. </div>
  10. <ul>
  11. <li>1、数据表为空时,重置表id从1开始累加;</li>
  12. <li>2、数据表不为空时,重置表id将从最后一条记录的id开始累加;</li>
  13. </ul>
  14. </div>
  15. <br/>
  16. <dl class="row">
  17. <dt class="tit">
  18. <label>数据表列表</label>
  19. </dt>
  20. <dd class="opt">
  21. <select name="table[]" id="table" style="width: 300px;" size="15" multiple="true">
  22. {volist name="data" id="vo"}
  23. <option value="{$vo.Name}">{$vo.Name}({$vo.count})</option>
  24. {/volist}
  25. </select>
  26. <span class="err"></span>
  27. <p class="red">(按 Ctrl 可以进行多选)</p>
  28. </dd>
  29. </dl>
  30. <div class="bot">
  31. <a class="ncap-btn-big ncap-btn-green" type="button" id="submitBtn" onclick="choose_table();">重置ID</a>
  32. </div>
  33. </div>
  34. </div>
  35. <script type="text/javascript">
  36. function choose_table() {
  37. var table = [];
  38. $("#table option:selected").each(function () {
  39. table.push($(this).val());
  40. })
  41. if (table.length == 0){
  42. layer.msg('请指定表', {icon: 5, title:false});
  43. return false;
  44. }
  45. layer_loading('正在处理');
  46. table = JSON.stringify(table);
  47. $.ajax({
  48. url: "{:weapp_url('Systemdoctor/Systemdoctor/sql_reset')}",
  49. data: {table:table,_ajax:1},
  50. type: 'post',
  51. dataType: 'json',
  52. success: function (res) {
  53. layer.closeAll();
  54. layer.msg('重置成功');
  55. location.reload();
  56. // if ('1' == res.code) {
  57. // $("#return_info").html(res.data);
  58. // } else {
  59. // layer.msg(res.msg);
  60. // }
  61. }
  62. });
  63. }
  64. </script>
  65. {include file="footer.htm" /}