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.

146 lines
7.1 KiB

8 years ago
  1. <!DOCTYPE html><html><head><title>修改文章_后台管理</title>@include('admin.common.header')
  2. <div class="container-fluid">
  3. <div class="row">
  4. <!-- 左边开始 --><div class="col-sm-3 col-md-2 sidebar">@include('admin.common.leftmenu')</div><!-- 左边结束 -->
  5. <!-- 右边开始 --><div class="col-sm-9 col-md-10 rightbox"><div id="mainbox">
  6. <h5 class="sub-header"><a href="/fladmin/article">文章列表</a> > 修改文章</h5>
  7. <form id="addarc" method="post" action="/fladmin/article/doedit" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }}
  8. <table class="table table-striped table-bordered">
  9. <tbody>
  10. <tr>
  11. <td align="right">文章标题:</td>
  12. <td><input name="title" type="text" id="title" value="<?php echo $post["title"]; ?>" class="required" style="width:60%" placeholder="在此输入标题"><input style="display:none;" name="id" type="text" id="id" value="<?php echo $id; ?>"></td>
  13. </tr>
  14. <tr>
  15. <td align="right">是否审核:</td>
  16. <td>
  17. <input type="radio" value='0' name="ischeck" <?php if($post['ischeck']==0){ echo 'checked'; } ?> />&nbsp;是&nbsp;&nbsp;
  18. <input type="radio" value='1' name="ischeck" <?php if($post['ischeck']==1){ echo 'checked'; } ?> />&nbsp;否
  19. </td>
  20. </tr>
  21. <tr>
  22. <td align="right">推荐:</td>
  23. <td>
  24. <select name="tuijian" id="tuijian">
  25. <?php $tuijian = config('custom.tuijian');
  26. for($i=0;$i<count($tuijian);$i++){if($i==$post["tuijian"]){?><option selected="selected" value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option>
  27. <?php }else{?><option value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option><?php }} ?>
  28. </select>
  29. </td>
  30. </tr>
  31. <tr>
  32. <td align="right">seoTitle:</td>
  33. <td><input name="seotitle" type="text" id="seotitle" value="<?php echo $post["seotitle"]; ?>" style="width:60%"></td>
  34. </tr>
  35. <tr>
  36. <td align="right" style="vertical-align:middle;">缩略图:</td>
  37. <td style="vertical-align:middle;"><button type="button" onclick="upImage();">选择图片</button> <input name="litpic" type="text" id="litpic" value="<?php echo $post["litpic"]; ?>" style="width:40%"> <img style="margin-left:20px;<?php if(empty($post["litpic"]) || !imgmatch($post["litpic"])){ echo "display:none;"; } ?>" src="<?php if(imgmatch($post["litpic"])){echo $post["litpic"];} ?>" width="120" height="80" id="picview" name="picview"></td>
  38. </tr>
  39. <script type="text/javascript">
  40. var _editor;
  41. $(function() {
  42. //重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
  43. _editor = UE.getEditor('ueditorimg');
  44. _editor.ready(function () {
  45. //设置编辑器不可用
  46. _editor.setDisabled('insertimage');
  47. //隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
  48. _editor.hide();
  49. //侦听图片上传
  50. _editor.addListener('beforeInsertImage', function (t, arg) {
  51. //将地址赋值给相应的input,只取第一张图片的路径
  52. $('#litpic').val(arg[0].src);
  53. //图片预览
  54. $('#picview').attr("src",arg[0].src).css("display","inline-block");
  55. })
  56. });
  57. });
  58. //弹出图片上传的对话框
  59. function upImage()
  60. {
  61. var myImage = _editor.getDialog("insertimage");
  62. myImage.render();
  63. myImage.open();
  64. }
  65. </script>
  66. <script type="text/plain" id="ueditorimg"></script>
  67. <tr>
  68. <td align="right">来源:</td>
  69. <td colspan="2"><input name="source" type="text" id="source" style="width:160px" value="<?php echo $post["source"]; ?>" size="16">&nbsp;&nbsp; 作者:<input name="writer" type="text" id="writer" style="width:100px" value="<?php echo $post["writer"]; ?>">&nbsp;&nbsp; 浏览次数:<input type="text" name="click" id="click" value="<?php echo rand(200,500); ?>" style="width:80px;"></td>
  70. </tr>
  71. <tr>
  72. <td align="right">文章栏目:</td>
  73. <td>
  74. <select name="typeid" id="typeid">
  75. <?php $catlist = category_tree(get_category('arctype',0));foreach($catlist as $row){
  76. if($row["id"]==$post["typeid"]){ ?>
  77. <option selected="selected" value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["typename"]; ?></option>
  78. <?php }else{ ?>
  79. <option value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["typename"]; ?></option>
  80. <?php }} ?>
  81. </select>
  82. </td>
  83. </tr>
  84. <tr>
  85. <td align="right">关键词:</td>
  86. <td><input type="text" name="keywords" id="keywords" style="width:50%" value="<?php echo $post["keywords"]; ?>"> (多个用","分开)</td>
  87. </tr>
  88. <tr>
  89. <td align="right" style="vertical-align:middle;">内容摘要:</td>
  90. <td><textarea name="description" rows="5" id="description" style="width:80%;height:70px;vertical-align:middle;"><?php echo $post["description"]; ?></textarea></td>
  91. </tr>
  92. <tr>
  93. <td align="right">附加选项:</td>
  94. <td>
  95. <input name="dellink" type="checkbox" class="np" id="dellink" value="1">
  96. 删除非站内链接
  97. <input name="autolitpic" type="checkbox" class="np" id="autolitpic" value="1" checked>
  98. 提取第一个图片为缩略图
  99. </td>
  100. </tr>
  101. <tr>
  102. <td colspan="2"><strong>文章内容:</strong></td>
  103. </tr>
  104. <tr>
  105. <td colspan="2">
  106. <!-- 加载编辑器的容器 --><script id="container" name="body" type="text/plain"><?php echo $post["body"]; ?></script>
  107. <!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script>
  108. <!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.js"></script>
  109. <!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td>
  110. </tr>
  111. <tr>
  112. <td colspan="2"><button type="submit" class="btn btn-success" value="Submit">保存(Submit)</button>&nbsp;&nbsp;<button type="reset" class="btn btn-default" value="Reset">重置(Reset)</button><input type="hidden"></input></td>
  113. </tr>
  114. </tbody></table></form><!-- 表单结束 -->
  115. </div></div><!-- 右边结束 --></div></div>
  116. <script>
  117. $(function(){
  118. $(".required").blur(function(){
  119. var $parent = $(this).parent();
  120. $parent.find(".formtips").remove();
  121. if(this.value=="")
  122. {
  123. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  124. }
  125. else
  126. {
  127. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  128. }
  129. });
  130. //重置
  131. $('#addarc input[type="reset"]').click(function(){
  132. $(".formtips").remove();
  133. });
  134. $("#addarc").submit(function(){
  135. $(".required").trigger('blur');
  136. var numError = $('#addarc .onError').length;
  137. if(numError){return false;}
  138. });
  139. });
  140. </script>
  141. </body></html>