order_set.blade.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <hr>
  12. <h4>订单设置</h4>
  13. <ui-input-number label="确认时间:" value="{{ $configs->get('order_affirm','') }}" name="order_affirm" max="100" tips="发货多少天后自动确认收货"></ui-input-number>
  14. <ui-input-number label="完结时间:" value="{{ $configs->get('order_finish','') }}" name="order_finish" 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: 'service_type', // 当前checkbox框的name属性 【必填】
  33. radioCheck:{{$configs->get('service_type','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