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.

142 lines
7.9 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
  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='1' name="status" <?php if($post['status']==1){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">商品类目:</td>
  80. <td>
  81. <select name="typeid" id="typeid">
  82. <?php $catlist = category_tree(get_category('goods_type',0));foreach($catlist as $row){
  83. if($row["id"]==$post["typeid"]){ ?>
  84. <option selected="selected" value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  85. <?php }else{ ?>
  86. <option value="<?php echo $row["id"]; ?>"><?php for($i=0;$i<$row["deep"];$i++){echo "";}echo $row["name"]; ?></option>
  87. <?php }} ?>
  88. </select>
  89. </td>
  90. </tr>
  91. <tr>
  92. <td align="right">关键词:</td>
  93. <td><input type="text" name="keywords" id="keywords" style="width:50%" value="<?php echo $post["keywords"]; ?>"> (多个用","分开)</td>
  94. </tr>
  95. <tr>
  96. <td align="right" style="vertical-align:middle;">内容摘要:</td>
  97. <td><textarea name="description" rows="5" id="description" style="width:60%;height:70px;vertical-align:middle;"><?php echo $post["description"]; ?></textarea></td>
  98. </tr>
  99. <tr>
  100. <td colspan="2"><strong>图文描述:</strong></td>
  101. </tr>
  102. <tr>
  103. <td colspan="2">
  104. <!-- 加载编辑器的容器 --><script id="container" name="body" type="text/plain"><?php echo $post["body"]; ?></script>
  105. <!-- 配置文件 --><script type="text/javascript" src="/other/flueditor/ueditor.config.js"></script>
  106. <!-- 编辑器源码文件 --><script type="text/javascript" src="/other/flueditor/ueditor.all.min.js"></script>
  107. <!-- 实例化编辑器 --><script type="text/javascript">var ue = UE.getEditor('container',{maximumWords:100000,initialFrameHeight:320,enableAutoSave:false});</script></td>
  108. </tr>
  109. <tr>
  110. <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>
  111. </tr>
  112. </tbody></table></form><!-- 表单结束 -->
  113. <script>
  114. $(function(){
  115. $(".required").blur(function(){
  116. var $parent = $(this).parent();
  117. $parent.find(".formtips").remove();
  118. if(this.value=="")
  119. {
  120. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  121. }
  122. else
  123. {
  124. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  125. }
  126. });
  127. //重置
  128. $('#addarc input[type="reset"]').click(function(){
  129. $(".formtips").remove();
  130. });
  131. $("#addarc").submit(function(){
  132. $(".required").trigger('blur');
  133. var numError = $('#addarc .onError').length;
  134. if(numError){return false;}
  135. });
  136. });
  137. </script>
  138. @endsection