betdatial.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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="sbetmoney">
  18. @{{ Math.round(100*(parseFloat(d.money)))/100 }}
  19. </script>
  20. <script type="text/html" id="getMoney">
  21. @{{# if(d.get_money>0){ }}
  22. <font color="red">@{{d.get_money}}</font>
  23. @{{# }else{ }}
  24. <font color="green">@{{d.get_money}}</font>
  25. @{{# } }}
  26. </script>
  27. @include('vip.datatable')
  28. <script>
  29. function dataTableLoadFinished(res,curr,count){
  30. console.log(123);
  31. console.log($('[eventType=event-view]'));
  32. $('.layui-table-page').hide();
  33. }
  34. </script>
  35. @endsection