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_command.htm 3.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {include file="header.htm" /}
  2. <link href="__WEAPP_TEMPLATE__/skin/css/codemirror.css" rel="stylesheet" type="text/css">
  3. <script type="text/javascript" src="__WEAPP_TEMPLATE__/skin/js/codemirror.js"></script>
  4. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  5. <div class="page" style="min-width: 400px;">
  6. <div class="ncap-form-default">
  7. <dl class="row">
  8. <dt class="tit">
  9. <label>系统表信息</label>
  10. </dt>
  11. <dd class="opt">
  12. <select class="guest-input form-control w300" name="table" id="table" size="8" onchange="choose_table();">
  13. {volist name="data" id="vo"}
  14. <option value="{$vo.Name}">{$vo.Name}({$vo.count})</option>
  15. {/volist}
  16. </select>
  17. </dd>
  18. </dl>
  19. <dl class="row">
  20. <dt class="tit">
  21. <label>返回信息</label>
  22. </dt>
  23. <dd class="opt">
  24. <div id="return_info" style="height: 200px;overflow:auto;color: #0C0C0C"></div>
  25. </dd>
  26. </dl>
  27. </div>
  28. <div style="display: flex;margin:8px 0; ">运行SQL命令行:
  29. <button type="button" style="padding:2px 10px;background-color: #4fc0e8;border: none;color: #fff;border-radius:3px;" onclick="run_sql()">运行</button>
  30. <p style="margin-left: 20px;">[ 更新/插入操作允许同时输入多个命令,以“;”分隔; ]</p>
  31. </div>
  32. <textarea class="form-control" id="mirror_code" name="code"></textarea>
  33. <br/>
  34. </div>
  35. <script>
  36. //根据DOM元素的id构造出一个编辑器
  37. var editor = CodeMirror.fromTextArea(document.getElementById("mirror_code"), {
  38. lineNumbers: true
  39. });
  40. </script>
  41. <script type="text/javascript">
  42. function run_sql() {
  43. var command = editor.getValue();
  44. layer_loading('正在处理');
  45. $.ajax({
  46. url: "{:weapp_url('Systemdoctor/Systemdoctor/run_sql')}",
  47. data: {command:command,_ajax:1},
  48. type: 'post',
  49. dataType: 'json',
  50. success: function (res) {
  51. layer.closeAll();
  52. if ('1' == res.code) {
  53. $("#return_info").html(res.data.msg);
  54. } else if ('0' == res.code) {
  55. $("#return_info").html(res.msg);
  56. }
  57. // else {
  58. // $("#return_info").html(res);
  59. // }
  60. },
  61. error:function ($r) {
  62. layer.closeAll();
  63. $("#return_info").html($r.responseText);
  64. }
  65. });
  66. }
  67. function choose_table() {
  68. var table = $('#table option:selected').val();
  69. if (!table){
  70. layer.msg('没有指定表名', {icon: 5, title:false});
  71. return false;
  72. }
  73. layer_loading('正在处理');
  74. $.ajax({
  75. url: "{:weapp_url('Systemdoctor/Systemdoctor/sql_details')}",
  76. data: {table:table,_ajax:1},
  77. type: 'post',
  78. dataType: 'json',
  79. success: function (res) {
  80. layer.closeAll();
  81. if ('1' == res.code) {
  82. $("#return_info").html(res.data);
  83. } else {
  84. layer.msg(res.msg);
  85. }
  86. }
  87. });
  88. }
  89. </script>
  90. {include file="footer.htm" /}