Нема описа
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.

data_replace_index.htm 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. {include file="header.htm" /}
  2. <body style="background-color: #FFF; overflow: auto;">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <div class="page">
  7. <form class="form-horizontal" id="form1" method="post">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit" style="width:100%; color:red;">
  11. <h1>程序用于批量替换数据库中某字段的内容,此操作极为危险,请小心使用。</h1>
  12. </dt>
  13. <dd class="opt">
  14. </dd>
  15. </dl>
  16. <dl>
  17. <dt class="tit">数据表与字段:</dt>
  18. <dd class="opt" style="padding-bottom:20px;">
  19. <select name="tables" id="tables" size="20" style="width:61%;">
  20. {volist name='tables' id='vi'}
  21. <option value="{$vi}">{$vi}</option>
  22. {/volist}
  23. </select>
  24. <div id="fields" style="display:none;">
  25. <div style="border:1px solid #ababab; width:60%; background-color:#1a569a36;margin-top:6px;padding:3px;line-height:160%">
  26. 表(<span id="targetTable">eyoucms_addonspec</span>)含有的字段:<br>
  27. <div id="fields_son"></div>
  28. </div>
  29. </div>
  30. </dd>
  31. </dl>
  32. <dl class="row">
  33. <dt class="tit">要替换的字段:</dt>
  34. <dd class="opt">
  35. <input style="width:60%;" name="rpfield" type="text" placeholder="请选择要替换的字段,例如:title" id="rpfield" class="alltxt" />
  36. </dd>
  37. </dl>
  38. <dl class="row">
  39. <dt class="tit">替换方式:</dt>
  40. <dd class="opt">
  41. <input name="rptype" type="radio" value="replace" checked='checked' />
  42. 普通替换
  43. <!--<input name="rptype" type="radio" value="regex" />-->
  44. <!--正则表达式 主键字段:-->
  45. <!--<input name="keyfield" type="text" id="keyfield" size="12">-->
  46. <!--(正则模式必须指定)-->
  47. </dd>
  48. </dl>
  49. <dl class="row">
  50. <dt class="tit">被替换内容:</dt>
  51. <dd class="opt">
  52. <textarea placeholder="请输入被替换内容" name="rpstring" id="rpstring" class="alltxt" style="width:60%;height:50px"></textarea>
  53. </dd>
  54. </dl>
  55. <dl class="row">
  56. <dt class="tit">替换为:</dt>
  57. <dd class="opt">
  58. <textarea placeholder="被替换的内容替换为" name="tostring" id="tostring" class="alltxt" style="width:60%;height:50px"></textarea>
  59. </dd>
  60. </dl>
  61. <dl class="row">
  62. <dt class="tit">替换条件:</dt>
  63. <dd class="opt">
  64. <input placeholder="请输入替换条件,例如:id=1" name="condition" type="text" id="condition" style="width:55%" /> (空完全替换)
  65. </dd>
  66. </dl>
  67. <div class="bot">
  68. <a class="ncap-btn-big ncap-btn-green" type="button" id="submitBtn">开始替换数据</a>
  69. </div>
  70. </div>
  71. </form>
  72. </div>
  73. <script type="text/javascript">
  74. $(document).ready(function(){
  75. $("#tables").change(function(){
  76. $targetTable = $(this).val();
  77. if($targetTable){
  78. // weapp_url('Contact/Contact/index')
  79. $.get("{:weapp_url('Systemdoctor/getTableField')}",{
  80. table_name: $targetTable
  81. },function(res){
  82. if(res.code==1)
  83. {
  84. $("#fields").show();
  85. $("#targetTable").text(res.data.targetTable);
  86. $content = '';
  87. for($i=0; $i<res.data.fields.length; $i++)
  88. {
  89. $content += '<a href="javascript:void(0);" title='+res.data.fields[$i]+' onclick="pf(this)" style="text-decoration:underline; padding:5px;" class="son">'+res.data.fields[$i]+'</a>';
  90. }
  91. $("#fields_son").html($content);
  92. }else{
  93. layer.msg(res.msg,{icon:2});
  94. }
  95. })
  96. }
  97. })
  98. $("#submitBtn").click(function(){
  99. $targetTable = $("#tables").val(); //选择表
  100. $field = $("#rpfield").val(); //选择字段
  101. $rpstring = $("#rpstring").val(); //被替换的内容
  102. $rptype = $("input[name='rptype']:checked").val();// 替换模式
  103. $tostring = $("#tostring").val(); //替换为
  104. // if($targetTable!=='' && $field!=='' && $rpstring!=='' && $rptype!=='' && $tostring!=='') {
  105. if($targetTable!=='' && $field!=='' && $rpstring!=='' && $rptype!=='') {
  106. if($rptype=='regex'){
  107. $keyField = $("#keyfield").val();
  108. if($keyField==''){
  109. layer.msg("如果选择了正则匹配模式,请保证主键字段完整",{icon:2});
  110. return false;
  111. }
  112. }
  113. $.ajax({
  114. type: 'post',
  115. url: "{:weapp_url('Systemdoctor/th')}",
  116. data: $("#form1").serialize(),
  117. dataType: 'json',
  118. success:function(res){
  119. if(res.code==1){
  120. layer.msg(res.msg,{icon:1});
  121. }else{
  122. layer.msg(res.msg,{icon:2});
  123. }
  124. }
  125. })
  126. }else{
  127. layer.msg("请保证[选择表][选择字段][被替换的内容][替换为]选项已选择或填写",{icon:2});
  128. }
  129. })
  130. });
  131. function pf(is) {
  132. $("#rpfield").attr("value",$(is).text());
  133. }
  134. </script>
  135. {include file="footer.htm" /}