edit.blade.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <div style="margin-top: 10px;" id="roles-app">
  2. <div style="text-align: center;margin-top: 5px;margin-bottom: 10px;font-size: 20px;">
  3. 编辑角色
  4. </div>
  5. <el-form action="{{route('admin.role.update',array('id'=>$model->id))}}" method="post" id="form-create">
  6. <!-- 链接 -->
  7. <ui-input-text label="角色名称" name="name" value="{{$model->name}}" placeholder="角色名称" maxlength="255" tips="用于设置用户分配权限" autofocus="true"></ui-input-text>
  8. <ui-radio label="是否开启" :params="params" tips="控制是否上线对应角色"></ui-radio>
  9. <ui-submit></ui-submit>
  10. </el-form>
  11. </div>
  12. <script type="application/javascript">
  13. $(function () {
  14. // 注意:Vue组件一定放在jQuery.validator前面验证
  15. new Vue({
  16. el: '#roles-app',
  17. data :function () {
  18. return {
  19. params: {
  20. // 注意:group和attr连个属性都不能省略 就算为空
  21. group: {},
  22. attr: {
  23. name: 'status', // 当前checkbox框的name属性 【必填】
  24. radioCheck:'{{$model->status}}', // 当前选中项 int | string 【必填】
  25. label: 'el-radio-button', // 当前样式 默认 el-radio 样式 【非必填】
  26. radios: [ // 每个checkbox 就是一个json对象 【必填】
  27. {
  28. value:'0', // 当前选中时值也就是value属性的值 【必填】
  29. label: '关闭', // 当前提示文字 【必填】
  30. disable: false // 是否禁止点击 默认:false 不禁止
  31. },
  32. {
  33. value:'1', // 当前选中时值也就是value属性的值 【必填】
  34. label: '开启', // 当前提示文字 【必填】
  35. disable: false // 是否禁止点击 默认:false 不禁止
  36. }
  37. ]
  38. }
  39. }
  40. };
  41. },
  42. });
  43. jQuery.validator.setDefaults({
  44. debug: false, // 调试模式true不会提交,false允许提交
  45. success: "success", // 匹配成功的class样式名称
  46. errorElement: 'div' // 兼容el标签时使用(兼容el Vue组件label.error标签问题)
  47. });
  48. // 前台数据验证 验证需要设置window.form全局变量
  49. window.form = $('#form-create').validate({
  50. rules: {
  51. name: {
  52. required: true,
  53. maxlength: 200,
  54. normalizer: function ( value ) {
  55. return $.trim(value);
  56. }
  57. }
  58. }
  59. });
  60. // 编辑保存变量
  61. window.formDatum = $('form').serialize();
  62. });
  63. </script>
  64. @include('layouts.admin.form_script')