123456789101112131415161718192021222324252627282930313233 |
- @extends('admin/layout')
- @section('content')
- <body class="gray-bg">
- <div class="wrapper wrapper-content animated fadeInRight">
- {{--@hasAuth('sites-report-edit')--}}
- {{--<button type="button" class="btn btn-info" onclick="units.report()">月报</button>--}}
- {{--<button type="button" class="btn btn-primary" onclick="units.afresh()">重新生成</button>--}}
- {{--@endHasAuth--}}
- <iframe
- src="https://rank.yinqingli.cn/pr/report?projectId={{base64_encode($site->old_id)}}"
- frameborder="0" width="100%" height="1080px"></iframe>
- </div>
- </body>
- @endsection
- @section('footer')
- <script>
- /* var units = {
- report: function () {
- window.open('https://rank.yinqingli.cn/webmaster/report?projectId=' + "{{base64_encode($site->old_id)}}");
- },
- afresh: function () {
- window.open('https://rank.yinqingli.cn/webmaster/report?noCache=1&projectId=' + "{{base64_encode($site->old_id)}}");
- }
- };*/
- </script>
- @endsection
|