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.

filemanager_replace_img.htm 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {include file="header.htm" /}
  2. <body class="bodystyle">
  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="post_form" action="{:weapp_url('Systemdoctor/Systemdoctor/filemanager_replace_img')}" method="post" enctype="multipart/form-data">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit">当前目录</dt>
  11. <dd class="opt">
  12. {$info['activepathname']|default=''}
  13. <input type="hidden" name="activepath" value="{$info['activepath']|default=''}">
  14. <span class="err"></span>
  15. <p class="notic"></p>
  16. </dd>
  17. </dl>
  18. <dl class="row">
  19. <dt class="tit">图片名</dt>
  20. <dd class="opt">
  21. {$info['filename']|default=''}
  22. <input type="hidden" name="filename" value="{$info.filename|default=''}">
  23. <span class="err"></span>
  24. <p class="notic"></p>
  25. </dd>
  26. </dl>
  27. <dl class="row">
  28. <dt class="tit">
  29. <label for="url">上传图片</label>
  30. </dt>
  31. <dd class="opt">
  32. <input type="file" name="upfile" value="" class="input-txt">
  33. <span class="err"></span>
  34. <p class="notic"></p>
  35. </dd>
  36. </dl>
  37. <div class="bot">
  38. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  39. <a href="JavaScript:history.back(-1);" class="ncap-btn-big ncap-btn-green" style="border: 1px solid #C9C9C9; background-color: #fff;color: #555;" >返回</a>
  40. </div>
  41. </div>
  42. </form>
  43. </div>
  44. <script type="text/javascript">
  45. // 判断输入框是否为空
  46. function checkForm(){
  47. var isempty = true;
  48. $.each($('input[name^=upfile]'), function(index, item){
  49. if ($.trim($(item).val()) != '' && $(item).val() != undefined && $(item).val() != null) {
  50. isempty = false;
  51. }
  52. })
  53. if(isempty == true){
  54. showErrorMsg('请选择上传图片!');
  55. return false;
  56. }
  57. layer_loading('正在处理');
  58. $('#post_form').submit();
  59. }
  60. </script>
  61. {include file="footer.htm" /}