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

special_char_index.htm 3.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <!-- 操作说明 -->
  8. <div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); width: 99%; height: 100%;">
  9. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  10. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  11. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  12. </div>
  13. <ul>
  14. <li>1、程序用于把数据库表中的标题、内容字段的编码改成utf8mb4</li>
  15. <li>2、程序用于把数据库配置文件中编码改成utf8mb4,配合字段的编码就达到支持特殊符号和字体</li>
  16. </ul>
  17. </div>
  18. <form class="form-horizontal" id="form1" method="post">
  19. <div class="ncap-form-default">
  20. <dl class="row" style="padding: 0px;">
  21. <dt class="tit" style="width: 0px;"></dt>
  22. <dd class="opt">
  23. <font color="red">涉及以下数据表,建议事先备份数据库,以防可能出现数据乱码等未知问题</font>
  24. </dd>
  25. </dl>
  26. {volist name="$tableList" id="vo"}
  27. <dl class="row" style="padding: 0px;">
  28. <dt class="tit" style="width: 120px;">{$vo.name}</dt>
  29. <dd class="opt">
  30. {$vo.table}
  31. </dd>
  32. </dl>
  33. {/volist}
  34. <div class="bot" style="padding-left: 35px; padding-top: 10px;">
  35. <a class="ncap-btn-big ncap-btn-green" type="button" id="submitBtn" onclick="checkForm();">确认处理</a>
  36. </div>
  37. </div>
  38. </div>
  39. </form>
  40. </div>
  41. <script type="text/javascript">
  42. // 判断输入框是否为空
  43. function checkForm(){
  44. layer.confirm('确定要处理支持特殊字符?', {
  45. shade: layer_shade,
  46. area: ['480px', '190px'],
  47. move: false,
  48. title: '提示',
  49. btnAlign:'r',
  50. closeBtn: 3,
  51. btn: ['执行', '取消'], //按钮
  52. success: function () {
  53. $(".layui-layer-content").css('text-align', 'left');
  54. }
  55. }, function () {
  56. layer_loading('正在处理');
  57. $.ajax({
  58. type : 'post',
  59. url : "{:weapp_url('Systemdoctor/Systemdoctor/special_char_index')}",
  60. data : {_ajax:1},
  61. dataType : 'json',
  62. success : function(res){
  63. layer.closeAll();
  64. if(res.code == 1){
  65. layer.alert(res.msg, {
  66. shade: layer_shade,
  67. area: ['480px', '190px'],
  68. move: false,
  69. title: '提示',
  70. btnAlign:'r',
  71. closeBtn: 3,
  72. success: function () {
  73. $(".layui-layer-content").css('text-align', 'left');
  74. }
  75. }, function(){
  76. window.location.reload();
  77. });
  78. }else{
  79. showErrorAlert(res.msg);
  80. }
  81. },
  82. error: function(e){
  83. layer.closeAll();
  84. showErrorAlert(e.responseText);
  85. }
  86. });
  87. }, function (index) {
  88. layer.close(index);
  89. });
  90. }
  91. </script>
  92. {include file="footer.htm" /}