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.

55 lines
2.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
  1. @extends('admin.layouts.app')
  2. @section('title', '会员信息修改')
  3. @section('content')
  4. <h5 class="sub-header"><a href="<?php echo route('admin_user'); ?>">会员列表</a> > 会员信息修改</h5>
  5. <form id="addarc" method="post" action="" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }}
  6. <input style="display:none;" type="text" name="id" id="id" value="<?php echo $id; ?>">
  7. <table class="table table-striped table-bordered">
  8. <tbody>
  9. <tr>
  10. <td align="right">昵称:</td>
  11. <td><input name="nickname" type="text" id="nickname" value="<?php echo $post["nickname"]; ?>" style="width:30%"></td>
  12. </tr>
  13. <tr>
  14. <td align="right">性别:</td>
  15. <td>
  16. <select name="sex" id="sex">
  17. <option<?php if($post["sex"]==1){ echo ' selected'; } ?> value="1">男</option>
  18. <option<?php if($post["sex"]==2){ echo ' selected'; } ?> value="2">女</option>
  19. </select>
  20. </td>
  21. </tr>
  22. <tr>
  23. <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>
  24. </tr>
  25. </tbody></table></form><!-- 表单结束 -->
  26. <script>
  27. $(function(){
  28. $(".required").blur(function(){
  29. var $parent = $(this).parent();
  30. $parent.find(".formtips").remove();
  31. if(this.value=="")
  32. {
  33. $parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
  34. }
  35. else
  36. {
  37. $parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
  38. }
  39. });
  40. //重置
  41. $('#addarc input[type="reset"]').click(function(){
  42. $(".formtips").remove();
  43. });
  44. $("#addarc").submit(function(){
  45. $(".required").trigger('blur');
  46. var numError = $('#addarc .onError').length;
  47. if(numError){return false;}
  48. });
  49. });
  50. </script>
  51. @endsection