customerservice.blade.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <div class="card-body">
  24. <table class="table table-bordered">
  25. <tr>
  26. <th width="100%"><h4 class="card-title"><a href="/admin/withdrawal/waitWithdrawal"> {{ trans('cs.cs.withdraw_title') }}</a> </h4>
  27. </th>
  28. </tr>
  29. <tr>
  30. <th width="100%"> {{trans('cs.cs.apply',['p'=>$applyUserCount->userCount ?? 0,'num'=>$applyUserCount->count ?? 0])}}
  31. &nbsp;&nbsp; {{trans('cs.cs.total')}}{{$applyUserCount->WithDraw ?? 0}} &nbsp;&nbsp;
  32. </th>
  33. </tr>
  34. <tr>
  35. <th width="100%"><h4 class="card-title"><a href="/admin/complaint/opinion">
  36. {{trans('cs.cs.cs_title')}}</a></h4>
  37. </th>
  38. </tr>
  39. <tr>
  40. <th width="100%"> {{trans('cs.cs.msgcount',['count'=>$message->count])}} &nbsp;&nbsp; {{trans('cs.cs.replyed',['count'=>$message->replycount])}} &nbsp;&nbsp; {{trans('cs.cs.read',['count'=>$message->readcount])}}
  41. </th>
  42. </tr>
  43. </table>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. <script>
  50. $(function(){
  51. cutStr(50);
  52. });
  53. // function update(id){
  54. // myConfirm("是否继续?",function(){
  55. // var nullity= document.getElementById('nullity').value;
  56. // myRequest("/admin/user/freeze/"+id,"post",{nullity:nullity},function(res){
  57. // layer.msg(res.msg)
  58. // setTimeout(function(){
  59. // window.location.reload();
  60. // },1500)
  61. // });
  62. // });
  63. // }
  64. setInterval(function (){
  65. window.location.reload();
  66. },300000)
  67. </script>
  68. @endsection