| 123456789101112131415161718192021222324252627282930313233343536373839 |
- @extends('vip.layouts')
- @section('content')
- <style>
- body{overflow-y:scroll;}
- </style>
- <script type="text/html" id="status">
- @{{# if(d.prize_status=='中奖'){ }}
- <font color="red">@{{d.prize_status}}</font>
- @{{# }else{ }}
- @{{# if(d.prize_status=='撤单'){ }}
- <font color="blue">@{{d.prize_status}}</font>
- @{{# }else{ }}
- <font color="green">@{{d.prize_status}}</font>
- @{{# } }}
- @{{# } }}
- </script>
- <script type="text/html" id="sbetmoney">
- @{{ Math.round(100*(parseFloat(d.money)))/100 }}
- </script>
- <script type="text/html" id="getMoney">
- @{{# if(d.get_money>0){ }}
- <font color="red">@{{d.get_money}}</font>
- @{{# }else{ }}
- <font color="green">@{{d.get_money}}</font>
- @{{# } }}
- </script>
- @include('vip.datatable')
- <script>
- function dataTableLoadFinished(res,curr,count){
- console.log(123);
- console.log($('[eventType=event-view]'));
- $('.layui-table-page').hide();
- }
- </script>
- @endsection
|