create.blade.php 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <div style="margin-top: 10px;" id="menuUrls-app">
  2. <div style="text-align: center;margin-top: 5px;margin-bottom: 10px;font-size: 20px;">
  3. 新增 - MenuUrl
  4. </div>
  5. <el-form action="{{route('admin.menuUrl.save')}}" method="post" id="form-create">
  6. <!-- image -->
  7. <ui-file label="图片(686*128)" size="0.5" name="image" :data="{uploadName:'menuUrls'}" tips="图片建议(686*128)"></ui-file>
  8. <!-- link -->
  9. {{-- <ui-input-text label="menuUrl链接" name="link" placeholder="menuUrl跳转链接" maxlength="255" tips="请输入有效的链接" autofocus="true"></ui-input-text>--}}
  10. <!-- show -->
  11. <ui-radio label="是否开启" :params="params" tips="消息开关-控制前台是否显示"></ui-radio>
  12. <!-- sort -->
  13. <ui-input-number label="排序" checked="checked" value="50" name="sort" min="1" max="100" tips="排序-控制前台menuUrl显示顺序"></ui-input-number>
  14. <ui-submit></ui-submit>
  15. </el-form>
  16. </div>
  17. <script type="application/javascript">
  18. $(function () {
  19. // 注意:Vue组件一定放在jQuery.validator前面验证
  20. new Vue({
  21. el: '#menuUrls-app',
  22. data :function () {
  23. return {
  24. params: {
  25. // 注意:group和attr连个属性都不能省略 就算为空
  26. group: {},
  27. attr: {
  28. name: 'show', // 当前checkbox框的name属性 【必填】
  29. radioCheck:0, // 当前选中项 int | string 【必填】
  30. label: 'el-radio-button', // 当前样式 默认 el-radio 样式 【非必填】
  31. radios: [ // 每个checkbox 就是一个json对象 【必填】
  32. {
  33. value:0, // 当前选中时值也就是value属性的值 【必填】
  34. label: '关闭', // 当前提示文字 【必填】
  35. disable: false // 是否禁止点击 默认:false 不禁止
  36. },
  37. {
  38. value:1, // 当前选中时值也就是value属性的值 【必填】
  39. label: '开启', // 当前提示文字 【必填】
  40. disable: false // 是否禁止点击 默认:false 不禁止
  41. }
  42. ]
  43. }
  44. }
  45. };
  46. }
  47. });
  48. jQuery.validator.setDefaults({
  49. debug: false, // 调试模式true不会提交,false允许提交
  50. success: "success", // 匹配成功的class样式名称
  51. errorElement: 'div' // 兼容el标签时使用(兼容el Vue组件label.error标签问题)
  52. });
  53. // 前台数据验证 验证需要设置window.form全局变量
  54. window.form = $('#form-create').validate({
  55. rules: {
  56. image: {
  57. required: true,
  58. maxlength: 255,
  59. normalizer: function ( value ) {
  60. return $.trim(value);
  61. }
  62. },
  63. // link: {
  64. // required: true,
  65. // url:true,
  66. // maxlength: 255,
  67. // normalizer: function ( value ) {
  68. // return $.trim(value);
  69. // }
  70. // },
  71. show: {
  72. required: true
  73. },
  74. sort: {
  75. required: true,
  76. normalizer: function ( value ) {
  77. return $.trim(value);
  78. }
  79. }
  80. }
  81. });
  82. });
  83. </script>
  84. @include('layouts.admin.form_script')