consume.blade.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @extends('layouts.admin.app')
  2. @section('crumbs')
  3. <ol class="breadcrumb crumbs">
  4. <li><a href="{{ route('admin.index') }}#">后台导航</a></li>
  5. <li class="active">系统配置</li>
  6. </ol>
  7. @endsection
  8. @section('content')
  9. <div id="configs">
  10. <el-form action="{{ route('admin.config.update') }}" method="post" id="configs-edit">
  11. <h4>消费金设置</h4>
  12. <ui-input-number label="注册赠送消费金:" value="{{ $configs->get('consume_money','') }}" name="consume_money" max="100" tips="注册赠送消费金数量"></ui-input-number>
  13. <ui-radio label="是否循环赠送" :params="params" tips="是否开启循环赠送消费金"></ui-radio>
  14. <ui-input-number label="循环赠送数量:" value="{{ $configs->get('consume_give','') }}" name="consume_give" max="100" tips="循环赠送消费金数量"></ui-input-number>
  15. {{ csrf_field() }}
  16. <ui-submit></ui-submit>
  17. </el-form>
  18. </div>
  19. @endsection
  20. @section('scripts')
  21. <script type="application/javascript">
  22. $(function () {
  23. // 注意:Vue组件一定放在jQuery.validator前面验证
  24. new Vue({
  25. el: '#configs',
  26. data :function () {
  27. return {
  28. params: {
  29. // 注意:group和attr连个属性都不能省略 就算为空
  30. group: {},
  31. attr: {
  32. name: 'consume_for', // 当前checkbox框的name属性 【必填】
  33. radioCheck:{{$configs->get('consume_for','0')}}, // 当前选中项 int | string 【必填】
  34. label: 'el-radio-button', // 当前样式 默认 el-radio 样式 【非必填】
  35. radios: [ // 每个checkbox 就是一个json对象 【必填】
  36. {
  37. value:'0', // 当前选中时值也就是value属性的值 【必填】
  38. label: '关闭', // 当前提示文字 【必填】
  39. disable: false // 是否禁止点击 默认:false 不禁止
  40. },
  41. {
  42. value:'1', // 当前选中时值也就是value属性的值 【必填】
  43. label: '开启', // 当前提示文字 【必填】
  44. disable: false // 是否禁止点击 默认:false 不禁止
  45. }
  46. ]
  47. }
  48. }
  49. };
  50. },
  51. methods: {}
  52. });
  53. // 编辑保存变量
  54. window.formDatum = $('form').serialize();
  55. });
  56. </script>
  57. @component('layouts.admin.admin_component')@endcomponent
  58. @endsection