dk.blade.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. @extends('base.base')
  2. @section('base')
  3. <!-- 内容区域 -->
  4. <div class="main-panel">
  5. <div class="content-wrapper">
  6. <div class="page-header">
  7. <h3 class="page-title">
  8. <span class="page-title-icon bg-gradient-primary text-white mr-2">
  9. <i class="mdi mdi-settings"></i>
  10. </span>
  11. {{ __('auto.用户控制系统页面数据详情') }}
  12. </h3>
  13. <nav aria-label="breadcrumb">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="#">{{ __('auto.用户控制系统页面数据详情') }}</a></li>
  16. <li class="breadcrumb-item active" aria-current="page">{{ __('auto.全局报表') }}</li>
  17. </ol>
  18. </nav>
  19. </div>
  20. <div class="row">
  21. <div class="col-lg-12 grid-margin stretch-card">
  22. <div class="card">
  23. <center>
  24. <a href="/admin/global/dk_userlist" style="color: white">
  25. <button type="button" class="btn btn-sm btn-gradient-primary btn-icon-text">
  26. {{ __('auto.详细用户列表查看') }}
  27. </button>
  28. </a>
  29. </center>
  30. <div class="card-body">
  31. <h4 class="card-title">{{ __('auto.全局报表') }}</h4>
  32. <table class="table table-bordered">
  33. <thead>
  34. <tr>
  35. <td width="6%">{{ __('auto.今日总流水:') }}{{$data['flowing_water']}}</td>
  36. <td width="6%">{{ __('auto.今日总税收:') }}{{$data['Revenue']}}</td>
  37. <td width="6%">{{ __('auto.今日总充值:') }}{{$data['pay_sum']}}</td>
  38. <td width="6%">{{ __('auto.今日总彩金:') }}{{$data['cellData']}}</td>
  39. <td width="6%">{{ __('auto.今日总茶叶:') }}</td>
  40. <td width="6%">{{ __('auto.今日杀率:') }}{{$data['shalv']}} %</td>
  41. </tr>
  42. <tr>
  43. </tr>
  44. </thead>
  45. </table>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. <div class="row">
  51. <div class="col-lg-12 grid-margin stretch-card">
  52. <div class="card">
  53. <div class="card-body">
  54. <form class="well form-inline margin-top-20" method="get" action='/admin/global/dk'>
  55. @csrf
  56. <spen style="padding-left: 10px">{{ __('auto.选择时间:') }}</spen>
  57. <input type="datetime-local" step="01" name="start_time" class="form-control"
  58. value="{{$start_time}}"/>&nbsp;&nbsp;
  59. <input type="datetime-local" step="01" name="end_time" class="form-control"
  60. value="{{$end_time}}"/>&nbsp;&nbsp;
  61. <input type="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.查询') }}"/>&nbsp;&nbsp;
  62. <a href="/admin/global/report"
  63. class="btn btn-sm btn-gradient-warning btn-icon-text">{{ __('auto.清空') }}</a>&nbsp;&nbsp;
  64. <select class="form-control" name="date" style="color: black">
  65. <option value="">{{ __('auto.选择时间') }}</option>
  66. <option value="1" @if ($date == 1)
  67. selected
  68. @endif>{{ __('auto.今日') }}</option>
  69. <option value="2" @if ($date == 2)
  70. selected
  71. @endif>{{ __('auto.昨日') }}</option>
  72. <option value="3" @if ($date == 3)
  73. selected
  74. @endif>{{ __('auto.本周') }}</option>
  75. <option value="4" @if ($date == 4)
  76. selected
  77. @endif>{{ __('auto.本月') }}</option>
  78. </select>
  79. </form>
  80. <table class="table table-bordered" style="margin-top: 10px">
  81. <tr>
  82. <td><b>{{ __('auto.流水:') }}{{$gameRoomInfo->flowing_water}}</b></td>
  83. <td><b>{{ __('auto.平台输赢:') }}{{$gameRoomInfo->win_lose}}</b></td>
  84. <td><b>{{ __('auto.税收:') }}{{$gameRoomInfo->Revenue}}</b></td>
  85. </tr>
  86. </table>
  87. <br>
  88. <div>
  89. <table class="table table-bordered">
  90. <tr>
  91. <td>{{ __('auto.游戏房间') }}</td>
  92. <td>{{ __('auto.流水') }}</td>
  93. <td>{{ __('auto.平台输赢') }}</td>
  94. <td>{{ __('auto.税收') }}</td>
  95. </tr>
  96. @foreach($game_list as $k=>$v)
  97. <tr>
  98. <td>{{$v->ServerName}}</td>
  99. <td>{{$v->liushui}}</td>
  100. <td>{{$v->Score}}</td>
  101. <td>{{$v->ri_Revenue}}</td>
  102. </tr>
  103. @endforeach
  104. </table>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. <script>
  113. function del(id) {
  114. myConfirm("{{ __('auto.删除操作不可逆,是否继续') }}?", function () {
  115. myRequest("/admin/accusation/del/" + id, "post", {}, function (res) {
  116. layer.msg(res.msg)
  117. setTimeout(function () {
  118. window.location.reload();
  119. }, 1500)
  120. });
  121. });
  122. }
  123. </script>
  124. @endsection