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