123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @extends('layouts.admin.app')
- @section('crumbs')
- <ol class="breadcrumb crumbs">
- <li><a href="{{ route('admin.index') }}#">后台导航</a></li>
- <li class="active">系统配置</li>
- </ol>
- @endsection
- @section('content')
- <div id="configs">
- <el-form action="{{ route('admin.config.update') }}" method="post" id="configs-edit">
- <h4>消费金设置</h4>
- <ui-input-number label="注册赠送消费金:" value="{{ $configs->get('consume_money','') }}" name="consume_money" max="100" tips="注册赠送消费金数量"></ui-input-number>
- <ui-radio label="是否循环赠送" :params="params" tips="是否开启循环赠送消费金"></ui-radio>
- <ui-input-number label="循环赠送数量:" value="{{ $configs->get('consume_give','') }}" name="consume_give" max="100" tips="循环赠送消费金数量"></ui-input-number>
- {{ csrf_field() }}
- <ui-submit></ui-submit>
- </el-form>
- </div>
- @endsection
- @section('scripts')
- <script type="application/javascript">
- $(function () {
- // 注意:Vue组件一定放在jQuery.validator前面验证
- new Vue({
- el: '#configs',
- data :function () {
- return {
- params: {
- // 注意:group和attr连个属性都不能省略 就算为空
- group: {},
- attr: {
- name: 'consume_for', // 当前checkbox框的name属性 【必填】
- radioCheck:{{$configs->get('consume_for','0')}}, // 当前选中项 int | string 【必填】
- label: 'el-radio-button', // 当前样式 默认 el-radio 样式 【非必填】
- radios: [ // 每个checkbox 就是一个json对象 【必填】
- {
- value:'0', // 当前选中时值也就是value属性的值 【必填】
- label: '关闭', // 当前提示文字 【必填】
- disable: false // 是否禁止点击 默认:false 不禁止
- },
- {
- value:'1', // 当前选中时值也就是value属性的值 【必填】
- label: '开启', // 当前提示文字 【必填】
- disable: false // 是否禁止点击 默认:false 不禁止
- }
- ]
- }
- }
- };
- },
- methods: {}
- });
- // 编辑保存变量
- window.formDatum = $('form').serialize();
- });
- </script>
- @component('layouts.admin.admin_component')@endcomponent
- @endsection
|