betdatial.blade.php 995 B

1234567891011121314151617181920212223242526272829303132333435
  1. @extends('vip.layouts')
  2. @section('content')
  3. <style>
  4. body{overflow-y:scroll;}
  5. </style>
  6. <script type="text/html" id="status">
  7. @{{# if(d.prize_status=='中奖'){ }}
  8. <font color="red">@{{d.prize_status}}</font>
  9. @{{# }else{ }}
  10. @{{# if(d.prize_status=='撤单'){ }}
  11. <font color="blue">@{{d.prize_status}}</font>
  12. @{{# }else{ }}
  13. <font color="green">@{{d.prize_status}}</font>
  14. @{{# } }}
  15. @{{# } }}
  16. </script>
  17. <script type="text/html" id="getMoney">
  18. @{{# if(d.get_money>0){ }}
  19. <font color="red">@{{d.get_money}}</font>
  20. @{{# }else{ }}
  21. <font color="green">@{{d.get_money}}</font>
  22. @{{# } }}
  23. </script>
  24. @include('vip.datatable')
  25. <script>
  26. function dataTableLoadFinished(res,curr,count){
  27. console.log(123);
  28. console.log($('[eventType=event-view]'));
  29. $('.layui-table-page').hide();
  30. }
  31. </script>
  32. @endsection