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.

141 lines
7.8 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
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/goods">商品列表</a> > 修改商品</h5>
  5. <form id="addarc" method="post" action="/fladmin/goods/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="sn" type="text" id="sn" style="width:180px" value="<?php echo $post["sn"]; ?>">&nbsp;&nbsp; 运费:<input name="shipping_fee" type="text" id="shipping_fee" style="width:100px" value="<?php echo $post["shipping_fee"]; ?>">&nbsp;&nbsp; 销量:<input name="sale" type="text" id="sale" style="width:60px" value="<?php echo $post["sale"]; ?>"></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="market_price" type="text" id="market_price" style="width:100px" value="<?php echo $post["market_price"]; ?>">&nbsp;&nbsp; 库存:<input name="goods_number" type="text" id="goods_number" style="width:60px" value="<?php echo $post["goods_number"]; ?>">&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 colspan="2"><input name="promote_price" type="text" id="promote_price" style="width:80px" value="<?php if($post['promote_price']!=0){echo $post['promote_price'];} ?>">&nbsp;&nbsp; 活动开始日期:<input name="promote_start_date" onClick="WdatePicker({el:this,dateFmt:'yyyy-MM-dd HH:mm:ss'})" type="text" id="promote_start_date" style="width:185px" value="<?php if($post['promote_start_date']!=0){echo $post['promote_start_date'];} ?>">&nbsp;&nbsp; 活动结束日期:<input name="promote_end_date" onClick="WdatePicker({el:this,dateFmt:'yyyy-MM-dd HH:mm:ss'})" type="text" id="promote_end_date" style="width:185px" value="<?php if($post['promote_end_date']!=0){echo $post['promote_end_date'];} ?>"></td>
  30. </tr>
  31. <tr>
  32. <td align="right">推荐:</td>
  33. <td>
  34. <select name="tuijian" id="tuijian">
  35. <?php $tuijian = config('custom.tuijian');
  36. for($i=0;$i<count($tuijian);$i++){if($i==$post["tuijian"]){?><option selected="selected" value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option>
  37. <?php }else{?><option value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option><?php }} ?>
  38. </select>
  39. </td>
  40. </tr>
  41. <tr>
  42. <td align="right">seoTitle:</td>
  43. <td><input name="seotitle" type="text" id="seotitle" value="<?php echo $post["seotitle"]; ?>" style="width:60%"></td>
  44. </tr>
  45. <tr>
  46. <td align="right" style="vertical-align:middle;">缩略图:</td>
  47. <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>
  48. </tr>
  49. <script type="text/javascript">
  50. var _editor;
  51. $(function() {
  52. //重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
  53. _editor = UE.getEditor('ueditorimg');
  54. _editor.ready(function () {
  55. //设置编辑器不可用
  56. _editor.setDisabled('insertimage');
  57. //隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
  58. _editor.hide();
  59. //侦听图片上传
  60. _editor.addListener('beforeInsertImage', function (t, arg) {
  61. //将地址赋值给相应的input,只取第一张图片的路径
  62. $('#litpic').val(arg[0].src);
  63. //图片预览
  64. $('#picview').attr("src",arg[0].src).css("display","inline-block");
  65. })
  66. });
  67. });
  68. //弹出图片上传的对话框
  69. function upImage()
  70. {
  71. var myImage = _editor.getDialog("insertimage");
  72. myImage.render();
  73. myImage.open();
  74. }
  75. </script>
  76. <script type="text/plain" id="ueditorimg"></script>
  77. <tr>
  78. <td align="right">商品类目:</td>
  79. <td>
  80. <select name="typeid" id="typeid">
  81. <?php $catlist = category_tree(get_category('goods_type',0));foreach($catlist as $row){
  82. if($row["id"]==$post["typeid"]){ ?>
  83. <option selected="selected" value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  84. <?php }else{ ?>
  85. <option value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  86. <?php }} ?>
  87. </select>
  88. </td>
  89. </tr>
  90. <tr>
  91. <td align="right">关键词:</td>
  92. <td><input type="text" name="keywords" id="keywords" style="width:50%" value="<?php echo $post["keywords"]; ?>"> (多个用","分开)</td>
  93. </tr>
  94. <tr>
  95. <td align="right" style="vertical-align:middle;">内容摘要:</td>
  96. <td><textarea name="description" rows="5" id="description" style="width:60%;height:70px;vertical-align:middle;"><?php echo $post["description"]; ?></textarea></td>
  97. </tr>
  98. <tr>
  99. <td colspan="2"><strong>图文描述:</strong></td>
  100. </tr>
  101. <tr>
  102. <td colspan="2">
  103. <!-- 加载编辑器的容器 --><script id="container" name="body" type="text/plain"><?php echo $post["body"]; ?></script>
  104. <!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script>
  105. <!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.min.js"></script>
  106. <!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td>
  107. </tr>
  108. <tr>
  109. <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>
  110. </tr>
  111. </tbody></table></form><!-- 表单结束 -->
  112. <script>
  113. $(function(){
  114. $(".required").blur(function(){
  115. var $parent = $(this).parent();
  116. $parent.find(".formtips").remove();
  117. if(this.value=="")
  118. {
  119. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  120. }
  121. else
  122. {
  123. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  124. }
  125. });
  126. //重置
  127. $('#addarc input[type="reset"]').click(function(){
  128. $(".formtips").remove();
  129. });
  130. $("#addarc").submit(function(){
  131. $(".required").trigger('blur');
  132. var numError = $('#addarc .onError').length;
  133. if(numError){return false;}
  134. });
  135. });
  136. </script>
  137. @endsection