customer_report.blade.php 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. @extends('admin/layout')
  2. @section('content')
  3. <body class="gray-bg">
  4. <div class="wrapper wrapper-content animated fadeInRight">
  5. {{--@hasAuth('sites-report-edit')--}}
  6. {{--<button type="button" class="btn btn-info" onclick="units.report()">月报</button>--}}
  7. {{--<button type="button" class="btn btn-primary" onclick="units.afresh()">重新生成</button>--}}
  8. {{--@endHasAuth--}}
  9. <iframe
  10. src="https://rank.yinqingli.cn/pr/report?projectId={{base64_encode($site->old_id)}}"
  11. frameborder="0" width="100%" height="1080px"></iframe>
  12. </div>
  13. </body>
  14. @endsection
  15. @section('footer')
  16. <script>
  17. /* var units = {
  18. report: function () {
  19. window.open('https://rank.yinqingli.cn/webmaster/report?projectId=' + "{{base64_encode($site->old_id)}}");
  20. },
  21. afresh: function () {
  22. window.open('https://rank.yinqingli.cn/webmaster/report?noCache=1&projectId=' + "{{base64_encode($site->old_id)}}");
  23. }
  24. };*/
  25. </script>
  26. @endsection