暫無描述
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.

extract_archives_index.htm 3.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <form class="form-horizontal" id="post_form" action="{:weapp_url('Systemdoctor/Systemdoctor/extract_archives_index')}" method="get">
  5. {$searchform.hidden|default=''}
  6. <div class="ncap-form-default">
  7. <dl class="row">
  8. <dt class="tit"><em>*</em>栏目分类</dt>
  9. <dd class="opt">
  10. <select name="typeid" id="typeid">
  11. <option value="0">请选择栏目…</option>
  12. {$arctype_html}
  13. </select>
  14. </dd>
  15. </dl>
  16. <dl class="row">
  17. <dt class="tit">文档ID段</dt>
  18. <dd class="opt">
  19. <input style="width:100px;" name="startid" type="text" placeholder="起始ID" id="startid" class="alltxt" />
  20. <span style="color: #999;font-weight: bold;font-size:26px;">&nbsp;-&nbsp;</span>
  21. <input style="width:100px;" name="endid" type="text" placeholder="结束ID" id="endid" class="alltxt" />
  22. </dd>
  23. </dl>
  24. <dl class="row">
  25. <dt class="tit">
  26. <label for="output_type">输出格式</label>
  27. </dt>
  28. <dd class="opt">
  29. <label><input type="radio" name="output_type" value="0" checked>文档链接</label>&nbsp;&nbsp;
  30. <label><input type="radio" name="output_type" value="1">文档标题=链接</label>&nbsp;&nbsp;
  31. <span class="err"></span>
  32. <p class="notic"></p>
  33. </dd>
  34. </dl>
  35. <dl class="row">
  36. <dt class="tit">
  37. <label for="content">结果输出</label>
  38. </dt>
  39. <dd class="opt">
  40. <textarea rows="5" cols="80" id="content" name="content" style="height: 380px; width: 950px;" placeholder=""></textarea>
  41. <p class="notic"></p>
  42. </dd>
  43. </dl>
  44. <dl class="row">
  45. <dt class="tit">
  46. <label for="info">&nbsp;</label>
  47. </dt>
  48. <dd class="opt">
  49. <a href="JavaScript:void(0);" onclick="check_submit()" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  50. </dd>
  51. </dl>
  52. </div>
  53. </form>
  54. </div>
  55. <script type="text/javascript">
  56. $(document).ready(function(){
  57. // 表格行点击选中切换
  58. $('#flexigrid > table>tbody >tr').click(function(){
  59. $(this).toggleClass('trSelected');
  60. });
  61. // 点击刷新数据
  62. $('.fa-refresh').click(function(){
  63. location.href = location.href;
  64. });
  65. });
  66. // 判断输入框是否为空
  67. function check_submit(){
  68. if ($('#typeid').val() == 0) {
  69. showErrorMsg('请选择栏目…!');
  70. $('#typeid').focus();
  71. return false;
  72. }
  73. layer_loading('正在处理');
  74. $.ajax({
  75. type : 'post',
  76. url : "{:weapp_url('Systemdoctor/Systemdoctor/extract_archives_index', ['_ajax'=>1])}",
  77. data : $('#post_form').serialize(),
  78. dataType : 'json',
  79. success : function(res){
  80. layer.closeAll();
  81. if(res.code == 1){
  82. $("#content").val(res.data.content);
  83. layer.msg(res.msg, {shade: layer_shade, time: 800});
  84. }else{
  85. showErrorMsg(res.msg);
  86. }
  87. },
  88. error: function(e){
  89. layer.closeAll();
  90. showErrorAlert(e.responseText);
  91. }
  92. });
  93. }
  94. </script>
  95. {include file="footer.htm" /}