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.

137 lines
7.0 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. @extends('admin.layouts.app')
  2. @section('title', '商品信息修改')
  3. @section('content')
  4. <h5 class="sub-header"><a href="/fladmin/product">商品列表</a> > 修改商品</h5>
  5. <form id="addarc" method="post" action="/fladmin/product/doedit" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }}
  6. <table class="table table-striped table-bordered">
  7. <tbody>
  8. <tr>
  9. <td align="right">商品标题:</td>
  10. <td><input name="title" type="text" id="title" value="<?php echo $post["title"]; ?>" class="required" style="width:60%" placeholder="在此输入标题"><input style="display:none;" type="text" name="id" id="id" value="<?php echo $id; ?>"></td>
  11. </tr>
  12. <tr>
  13. <td align="right">货号:</td>
  14. <td colspan="2"><input name="serial_no" type="text" id="serial_no" style="width:180px" value="<?php echo $post["serial_no"]; ?>">&nbsp;&nbsp; 运费:<input name="delivery_fee" type="text" id="delivery_fee" style="width:100px" value="<?php echo $post["delivery_fee"]; ?>">&nbsp;&nbsp; 销量:<input name="sales" type="text" id="sales" style="width:60px" value="<?php echo $post["sales"]; ?>"></td>
  15. </tr>
  16. <tr>
  17. <td align="right">商品价格:</td>
  18. <td colspan="2"><input name="price" type="text" id="price" style="width:100px" value="<?php echo $post["price"]; ?>">&nbsp;&nbsp; 原价:<input name="origin_price" type="text" id="origin_price" style="width:100px" value="<?php echo $post["origin_price"]; ?>">&nbsp;&nbsp; 库存:<input name="inventory" type="text" id="inventory" style="width:60px" value="<?php echo $post["inventory"]; ?>">&nbsp;&nbsp; 浏览次数:<input type="text" name="click" id="click" value="<?php echo $post["click"]; ?>" style="width:60px;"></td>
  19. </tr>
  20. <tr>
  21. <td align="right">上架:</td>
  22. <td>
  23. <input type="radio" value='0' name="status" <?php if($post['status']==0){echo 'checked';} ?> />&nbsp;是&nbsp;&nbsp;
  24. <input type="radio" value='1' name="status" <?php if($post['status']==1){echo 'checked';} ?> />&nbsp;否
  25. </td>
  26. </tr>
  27. <tr>
  28. <td align="right">推荐:</td>
  29. <td>
  30. <select name="tuijian" id="tuijian">
  31. <?php $tuijian = config('custom.tuijian');
  32. for($i=0;$i<count($tuijian);$i++){if($i==$post["tuijian"]){?><option selected="selected" value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option>
  33. <?php }else{?><option value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option><?php }} ?>
  34. </select>
  35. </td>
  36. </tr>
  37. <tr>
  38. <td align="right">seoTitle:</td>
  39. <td><input name="seotitle" type="text" id="seotitle" value="<?php echo $post["seotitle"]; ?>" style="width:60%"></td>
  40. </tr>
  41. <tr>
  42. <td align="right" style="vertical-align:middle;">缩略图:</td>
  43. <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>
  44. </tr>
  45. <script type="text/javascript">
  46. var _editor;
  47. $(function() {
  48. //重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
  49. _editor = UE.getEditor('ueditorimg');
  50. _editor.ready(function () {
  51. //设置编辑器不可用
  52. _editor.setDisabled('insertimage');
  53. //隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
  54. _editor.hide();
  55. //侦听图片上传
  56. _editor.addListener('beforeInsertImage', function (t, arg) {
  57. //将地址赋值给相应的input,只取第一张图片的路径
  58. $('#litpic').val(arg[0].src);
  59. //图片预览
  60. $('#picview').attr("src",arg[0].src).css("display","inline-block");
  61. })
  62. });
  63. });
  64. //弹出图片上传的对话框
  65. function upImage()
  66. {
  67. var myImage = _editor.getDialog("insertimage");
  68. myImage.render();
  69. myImage.open();
  70. }
  71. </script>
  72. <script type="text/plain" id="ueditorimg"></script>
  73. <tr>
  74. <td align="right">商品类目:</td>
  75. <td>
  76. <select name="typeid" id="typeid">
  77. <?php $catlist = category_tree(get_category('product_type',0));foreach($catlist as $row){
  78. if($row["id"]==$post["typeid"]){ ?>
  79. <option selected="selected" value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  80. <?php }else{ ?>
  81. <option value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  82. <?php }} ?>
  83. </select>
  84. </td>
  85. </tr>
  86. <tr>
  87. <td align="right">关键词:</td>
  88. <td><input type="text" name="keywords" id="keywords" style="width:50%" value="<?php echo $post["keywords"]; ?>"> (多个用","分开)</td>
  89. </tr>
  90. <tr>
  91. <td align="right" style="vertical-align:middle;">内容摘要:</td>
  92. <td><textarea name="description" rows="5" id="description" style="width:60%;height:70px;vertical-align:middle;"><?php echo $post["description"]; ?></textarea></td>
  93. </tr>
  94. <tr>
  95. <td colspan="2"><strong>图文描述:</strong></td>
  96. </tr>
  97. <tr>
  98. <td colspan="2">
  99. <!-- 加载编辑器的容器 --><script id="container" name="body" type="text/plain"><?php echo $post["body"]; ?></script>
  100. <!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script>
  101. <!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.js"></script>
  102. <!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td>
  103. </tr>
  104. <tr>
  105. <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>
  106. </tr>
  107. </tbody></table></form><!-- 表单结束 -->
  108. <script>
  109. $(function(){
  110. $(".required").blur(function(){
  111. var $parent = $(this).parent();
  112. $parent.find(".formtips").remove();
  113. if(this.value=="")
  114. {
  115. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  116. }
  117. else
  118. {
  119. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  120. }
  121. });
  122. //重置
  123. $('#addarc input[type="reset"]').click(function(){
  124. $(".formtips").remove();
  125. });
  126. $("#addarc").submit(function(){
  127. $(".required").trigger('blur');
  128. var numError = $('#addarc .onError').length;
  129. if(numError){return false;}
  130. });
  131. });
  132. </script>
  133. @endsection