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.

78 lines
3.1 KiB

7 years ago
  1. @extends('admin.layouts.app')
  2. @section('title', '快递修改')
  3. @section('content')
  4. <h5 class="sub-header"><a href="<?php echo route('admin_kuaidi'); ?>">快递列表</a> > 快递修改</h5>
  5. <form id="addarc" method="post" action="" 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" width="150px">快递名称:</td>
  10. <td><input name="name" type="text" id="name" value="<?php echo $post['name']; ?>" class="required" style="width:30%" placeholder="在此输入关键词"><input style="display:none;" name="id" type="text" id="id" value="<?php echo $id; ?>"></td>
  11. </tr>
  12. <tr>
  13. <td align="right">编码:</td>
  14. <td><input name="code" type="text" id="code" value="<?php echo $post['code']; ?>" size="15" class="required"></td>
  15. </tr>
  16. <tr>
  17. <td align="right">金额:</td>
  18. <td><input name="money" type="text" id="money" value="<?php echo $post['money']; ?>" size="10"></td>
  19. </tr>
  20. <tr>
  21. <td align="right">说明:</td>
  22. <td><input name="des" type="text" id="des" value="<?php echo $post['des']; ?>" style="width:60%"></td>
  23. </tr>
  24. <tr>
  25. <td align="right">电话:</td>
  26. <td><input name="tel" type="text" id="tel" value="<?php echo $post['tel']; ?>" size="15"></td>
  27. </tr>
  28. <tr>
  29. <td align="right">官网:</td>
  30. <td><input name="website" type="text" id="website" value="<?php echo $post['website']; ?>" size="30"></td>
  31. </tr>
  32. <tr>
  33. <td align="right">是否显示:</td>
  34. <td>
  35. <input type="radio" value='0' name="status" <?php if(isset($post['status']) && $post['status']==0){echo 'checked';} ?> />&nbsp;是&nbsp;&nbsp;
  36. <input type="radio" value='1' name="status" <?php if(isset($post['status']) && $post['status']==1){echo 'checked';} ?> />&nbsp;否
  37. </td>
  38. </tr>
  39. <tr>
  40. <td align="right">排序:</td>
  41. <td>
  42. <input name="listorder" type="text" id="listorder" value="<?php echo $post['listorder']; ?>" size="3" />
  43. </td>
  44. </tr>
  45. <tr>
  46. <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></td>
  47. </tr>
  48. </tbody></table></form><!-- 表单结束 -->
  49. <script>
  50. $(function(){
  51. $(".required").blur(function(){
  52. var $parent = $(this).parent();
  53. $parent.find(".formtips").remove();
  54. if(this.value=="")
  55. {
  56. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  57. }
  58. else
  59. {
  60. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  61. }
  62. });
  63. //重置
  64. $('#addarc input[type="reset"]').click(function(){
  65. $(".formtips").remove();
  66. });
  67. $("#addarc").submit(function(){
  68. $(".required").trigger('blur');
  69. var numError = $('#addarc .onError').length;
  70. if(numError){return false;}
  71. });
  72. });
  73. </script>
  74. @endsection