123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @extends('admin/site/side_layout')
- @section('header_extend')
- @endsection
- @section('right')
- @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>
- <button type="button" class="btn btn-info" onclick="units.promoteReport()" style="margin-left: 50px">推广月报</button>
- <button type="button" class="btn btn-primary" onclick="units.promoteAfresh()">重新生成</button>
- <button type="button" class="btn btn-success" onclick="units.flowReport()" style="margin-left: 50px">流程报表</button>
- <button type="button" class="btn btn-success" onclick="units.clearLastMonthData()" >清除上月数据</button>--}}
- @endHasAuth
- {{--<iframe--}}
- {{--src="https://rank.yinqingli.cn/webmaster/report?projectId={{base64_encode($site->old_id)}}"--}}
- {{--frameborder="0" width="100%" height="800px"></iframe>--}}
- @endsection
- @section('footer_extend')
- <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)}}");
- },
- promoteReport: function () {
- window.open('https://rank.yinqingli.cn/pr/report?projectId=' + "{{base64_encode($site->old_id)}}");
- },
- promoteAfresh: function () {
- window.open('https://rank.yinqingli.cn/pr/report?noCache=1&projectId=' + "{{base64_encode($site->old_id)}}");
- },
- flowReport: function () {
- window.open('/wap/{{base64_encode($siteId)}}/flow');
- },
- clearLastMonthData: function () {
- var ajaxConfig = {
- url: '/admin/site/clearLastMonthData/{{$siteId}}',
- type: 'get',
- success: function () {
- layer.msg('操作成功', {
- icon: 1,
- time: 1500 //2秒关闭(如果不配置,默认是3秒)
- }, function () {
- window.location.reload()
- });
- }
- };
- tips.ajax(ajaxConfig);
- },
- };*/
- </script>
- @endsection
|