1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- @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-float-number label="代币价格:" :min="0" :precision="6" value="{{ $configs->get('exchange_money','') }}" name="exchange_money" max="999999" tips="1BNB兑换代币数量"></ui-input-float-number>
- <h4>分发设置</h4>
- <ui-radio label="系统转账" :params="params" tips="开启后合约清分至对应的系统地址"></ui-radio>
- <h4>分红设置</h4>
- <ui-input-float-number label="默认分红比例:" :min="0" :precision="6" value="{{ $configs->get('receive_mix','') }}" name="receive_mix" max="999999" tips="默认分红比例"></ui-input-float-number>
- <ui-input-number label="大团队合约数量:" :min="0" :precision="6" value="{{ $configs->get('receive_user_max','') }}" name="receive_user_max" max="999999" tips="获取高分红团队合约数量"></ui-input-number>
- <ui-input-float-number label="高分红比例:" :min="0" :precision="6" value="{{ $configs->get('receive_max','') }}" name="receive_max" max="999999" tips="高分红比例"></ui-input-float-number>
- <ui-select label="最低分红等级:" value="{{$configs->get('receive_level_id','').''}}" id="level" name="receive_level_id" placeholder="" :options="levelList" :free="true"></ui-select>
- <ui-input-text label="分红收款地址:" value="{{ $configs->get('receive_address','') }}" name="receive_address" tips="系统分红金额收款地址"></ui-input-text>
- <h4>公排设置</h4>
- <ui-input-text label="公排收款地址:" value="{{ $configs->get('common_address','') }}" name="common_address" tips="系统公排金额收款地址"></ui-input-text>
- <ui-input-number label="公排合约数量:" :min="0" :precision="6" value="{{ $configs->get('common_num','') }}" name="common_num" max="999999" tips="公排合约数量"></ui-input-number>
- <ui-input-float-number label="出局BNB数量:" :min="0" :precision="6" value="{{ $configs->get('common_bnb','') }}" name="common_bnb" max="999999" tips="出局BNB数量"></ui-input-float-number>
- <ui-input-float-number label="出局代币比例:" :min="0" :precision="6" value="{{ $configs->get('common_db','') }}" name="common_db" max="999999" tips="出局时多少BNB转换代币"></ui-input-float-number>
- <h4>沉淀设置</h4>
- <ui-input-text label="沉淀收款地址:" value="{{ $configs->get('sediment_address','') }}" name="sediment_address" tips="系统沉淀金额收款地址"></ui-input-text>
- {{ 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 {
- levelList:{!! $levelList !!},
- params: {
- // 注意:group和attr连个属性都不能省略 就算为空
- group: {},
- attr: {
- name: 'open_sys', // 当前checkbox框的name属性 【必填】
- radioCheck:{{$configs->get('open_sys',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
|