| 1234567891011121314151617181920212223242526272829303132333435 |
- @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="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
|