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.

192 lines
10 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
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. <script language="javascript" type="text/javascript" src="http://<?php echo env('APP_DOMAIN'); ?>/js/My97DatePicker/WdatePicker.js"></script>
  5. <h5 class="sub-header"><a href="/fladmin/goods">商品列表</a> > 修改商品</h5>
  6. <form id="addarc" method="post" action="/fladmin/goods/doedit" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }}
  7. <table class="table table-striped table-bordered">
  8. <tbody>
  9. <tr>
  10. <td align="right">商品标题:</td>
  11. <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>
  12. </tr>
  13. <tr>
  14. <td align="right">货号:</td>
  15. <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>
  16. </tr>
  17. <tr>
  18. <td align="right">商品价格:</td>
  19. <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>
  20. </tr>
  21. <tr>
  22. <td align="right">上架:</td>
  23. <td>
  24. <input type="radio" value='0' name="status" <?php if($post['status']==0){echo 'checked';} ?> />&nbsp;是&nbsp;&nbsp;
  25. <input type="radio" value='2' name="status" <?php if($post['status']==2){echo 'checked';} ?> />&nbsp;否
  26. </td>
  27. </tr>
  28. <tr>
  29. <td align="right">活动价:</td>
  30. <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>
  31. </tr>
  32. <tr>
  33. <td align="right">推荐:</td>
  34. <td>
  35. <select name="tuijian" id="tuijian">
  36. <?php $tuijian = config('custom.tuijian');
  37. for($i=0;$i<count($tuijian);$i++){if($i==$post["tuijian"]){?><option selected="selected" value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option>
  38. <?php }else{?><option value="<?php echo $i; ?>"><?php echo $tuijian[$i]; ?></option><?php }} ?>
  39. </select>
  40. </td>
  41. </tr>
  42. <tr>
  43. <td align="right">seoTitle:</td>
  44. <td><input name="seotitle" type="text" id="seotitle" value="<?php echo $post["seotitle"]; ?>" style="width:60%"></td>
  45. </tr>
  46. <tr>
  47. <td align="right" style="vertical-align:middle;">缩略图:</td>
  48. <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>
  49. </tr>
  50. <script type="text/javascript">
  51. var _editor;
  52. $(function() {
  53. //重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
  54. _editor = UE.getEditor('ueditorimg');
  55. _editor.ready(function () {
  56. //设置编辑器不可用
  57. _editor.setDisabled('insertimage');
  58. //隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
  59. _editor.hide();
  60. //侦听图片上传
  61. _editor.addListener('beforeInsertImage', function (t, arg) {
  62. //将地址赋值给相应的input,只取第一张图片的路径
  63. $('#litpic').val(arg[0].src);
  64. //图片预览
  65. $('#picview').attr("src",arg[0].src).css("display","inline-block");
  66. })
  67. });
  68. });
  69. //弹出图片上传的对话框
  70. function upImage()
  71. {
  72. var myImage = _editor.getDialog("insertimage");
  73. myImage.render();
  74. myImage.open();
  75. }
  76. </script>
  77. <script type="text/plain" id="ueditorimg"></script>
  78. <tr>
  79. <td align="right" style="vertical-align:middle;">商品图片:</td>
  80. <td style="vertical-align:middle;" id="duotulist"><button type="button" onclick="upImage2();">选择图片</button><?php if($goods_img_list){foreach($goods_img_list as $k=>$v){echo '<img style="margin-left:10px;" src="'.$v['url'].'" width="120" height="80"><input name="goods_img[]" type="text" value="'.$v['url'].'" style="display:none;">';}} ?></td>
  81. </tr>
  82. <script type="text/javascript">
  83. var _editor2;
  84. $(function() {
  85. //重新实例化一个编辑器,防止在上面的editor编辑器中显示上传的图片或者文件
  86. _editor2 = UE.getEditor('ueditordimg');
  87. _editor2.ready(function () {
  88. //设置编辑器不可用
  89. _editor2.setDisabled('insertimage');
  90. //隐藏编辑器,因为不会用到这个编辑器实例,所以要隐藏
  91. _editor2.hide();
  92. //侦听图片上传
  93. _editor2.addListener('beforeInsertImage', function (t, arg) {
  94. $("#duotulist").html('<button type="button" onclick="upImage2();">选择图片</button>');
  95. for (var i=0;i<arg.length;i++)
  96. {
  97. if(i<8)
  98. {
  99. $("#duotulist").append('<img style="margin-left:10px;" src="'+arg[i].src+'" width="120" height="80"><input name="goods_img[]" type="text" value="'+arg[i].src+'" style="display:none;">');
  100. }
  101. }
  102. })
  103. });
  104. });
  105. //弹出图片上传的对话框
  106. function upImage2()
  107. {
  108. var myImage = _editor2.getDialog("insertimage");
  109. myImage.render();
  110. myImage.open();
  111. }
  112. </script>
  113. <script type="text/plain" id="ueditordimg"></script>
  114. <tr>
  115. <td align="right">商品类目:</td>
  116. <td>
  117. <select name="typeid" id="typeid">
  118. <?php $catlist = category_tree(get_category('goods_type',0));foreach($catlist as $row){
  119. if($row["id"]==$post["typeid"]){ ?>
  120. <option selected="selected" value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  121. <?php }else{ ?>
  122. <option value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  123. <?php }} ?>
  124. </select>
  125. </td>
  126. </tr>
  127. <tr>
  128. <td align="right">商品品牌:</td>
  129. <td>
  130. <select name="brand_id" id="brand_id">
  131. <option value="0">请选择品牌</option>
  132. <?php foreach($goodsbrand_list as $row){
  133. if($row["id"]==$post["brand_id"]){ ?>
  134. <option selected="selected" value="<?php echo $row["id"]; ?>"><?php echo $row["title"]; ?></option>
  135. <?php }else{ ?>
  136. <option value="<?php echo $row["id"]; ?>"><?php echo $row["title"]; ?></option>
  137. <?php }} ?>
  138. </select>
  139. </td>
  140. </tr>
  141. <tr>
  142. <td align="right">关键词:</td>
  143. <td><input type="text" name="keywords" id="keywords" style="width:50%" value="<?php echo $post["keywords"]; ?>"> (多个用","分开)</td>
  144. </tr>
  145. <tr>
  146. <td align="right" style="vertical-align:middle;">内容摘要:</td>
  147. <td><textarea name="description" rows="5" id="description" style="width:60%;height:70px;vertical-align:middle;"><?php echo $post["description"]; ?></textarea></td>
  148. </tr>
  149. <tr>
  150. <td colspan="2"><strong>图文描述:</strong></td>
  151. </tr>
  152. <tr>
  153. <td colspan="2">
  154. <!-- 加载编辑器的容器 --><script id="container" name="body" type="text/plain"><?php echo $post["body"]; ?></script>
  155. <!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script>
  156. <!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.min.js"></script>
  157. <!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td>
  158. </tr>
  159. <tr>
  160. <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>
  161. </tr>
  162. </tbody></table></form><!-- 表单结束 -->
  163. <script>
  164. $(function(){
  165. $(".required").blur(function(){
  166. var $parent = $(this).parent();
  167. $parent.find(".formtips").remove();
  168. if(this.value=="")
  169. {
  170. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  171. }
  172. else
  173. {
  174. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  175. }
  176. });
  177. //重置
  178. $('#addarc input[type="reset"]').click(function(){
  179. $(".formtips").remove();
  180. });
  181. $("#addarc").submit(function(){
  182. $(".required").trigger('blur');
  183. var numError = $('#addarc .onError').length;
  184. if(numError){return false;}
  185. });
  186. });
  187. </script>
  188. @endsection