index.blade.php 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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-float-number label="代币价格:" :min="0" :precision="6" value="{{ $configs->get('exchange_money','') }}" name="exchange_money" max="999999" tips="1BNB兑换代币数量"></ui-input-float-number>
  13. <h4>分发设置</h4>
  14. <ui-radio label="系统转账" :params="params" tips="开启后合约清分至对应的系统地址"></ui-radio>
  15. <h4>分红设置</h4>
  16. <ui-input-float-number label="默认分红比例:" :min="0" :precision="6" value="{{ $configs->get('receive_mix','') }}" name="receive_mix" max="999999" tips="默认分红比例"></ui-input-float-number>
  17. <ui-input-number label="大团队合约数量:" :min="0" :precision="6" value="{{ $configs->get('receive_user_max','') }}" name="receive_user_max" max="999999" tips="获取高分红团队合约数量"></ui-input-number>
  18. <ui-input-float-number label="高分红比例:" :min="0" :precision="6" value="{{ $configs->get('receive_max','') }}" name="receive_max" max="999999" tips="高分红比例"></ui-input-float-number>
  19. <ui-select label="最低分红等级:" value="{{$configs->get('receive_level_id','').''}}" id="level" name="receive_level_id" placeholder="" :options="levelList" :free="true"></ui-select>
  20. <ui-input-text label="分红收款地址:" value="{{ $configs->get('receive_address','') }}" name="receive_address" tips="系统分红金额收款地址"></ui-input-text>
  21. <h4>公排设置</h4>
  22. <ui-input-text label="公排收款地址:" value="{{ $configs->get('common_address','') }}" name="common_address" tips="系统公排金额收款地址"></ui-input-text>
  23. <ui-input-number label="公排合约数量:" :min="0" :precision="6" value="{{ $configs->get('common_num','') }}" name="common_num" max="999999" tips="公排合约数量"></ui-input-number>
  24. <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>
  25. <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>
  26. <h4>沉淀设置</h4>
  27. <ui-input-text label="沉淀收款地址:" value="{{ $configs->get('sediment_address','') }}" name="sediment_address" tips="系统沉淀金额收款地址"></ui-input-text>
  28. {{ csrf_field() }}
  29. <ui-submit></ui-submit>
  30. </el-form>
  31. </div>
  32. @endsection
  33. @section('scripts')
  34. <script type="application/javascript">
  35. $(function () {
  36. // 注意:Vue组件一定放在jQuery.validator前面验证
  37. new Vue({
  38. el: '#configs',
  39. data :function () {
  40. return {
  41. levelList:{!! $levelList !!},
  42. params: {
  43. // 注意:group和attr连个属性都不能省略 就算为空
  44. group: {},
  45. attr: {
  46. name: 'open_sys', // 当前checkbox框的name属性 【必填】
  47. radioCheck:{{$configs->get('open_sys',0)}}, // 当前选中项 int | string 【必填】
  48. label: 'el-radio-button', // 当前样式 默认 el-radio 样式 【非必填】
  49. radios: [ // 每个checkbox 就是一个json对象 【必填】
  50. {
  51. value:0, // 当前选中时值也就是value属性的值 【必填】
  52. label: '关闭', // 当前提示文字 【必填】
  53. disable: false // 是否禁止点击 默认:false 不禁止
  54. },
  55. {
  56. value:1, // 当前选中时值也就是value属性的值 【必填】
  57. label: '开启', // 当前提示文字 【必填】
  58. disable: false // 是否禁止点击 默认:false 不禁止
  59. }
  60. ]
  61. }
  62. }
  63. };
  64. },
  65. methods: {}
  66. });
  67. // 编辑保存变量
  68. window.formDatum = $('form').serialize();
  69. });
  70. </script>
  71. @component('layouts.admin.admin_component')@endcomponent
  72. @endsection