speed_measurement.blade.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. @extends('admin/layout')
  2. @section('header')
  3. <link href="{{asset('css/plugins/switchery/switchery.css')}}" rel="stylesheet">
  4. <style>
  5. .btn-danger, .btn-primary, .btn-info {
  6. background: #2a94e0 !important;
  7. border-color: #2a94e0 !important;
  8. }
  9. .table-striped > tbody > tr:nth-of-type(odd) {
  10. background: #f8f8f8 !important;
  11. }
  12. .table-striped > tbody > tr .btn {
  13. background: none !important;
  14. }
  15. .table-striped > tbody > tr td {
  16. font-size: 14px !important;
  17. }
  18. .table-striped > tbody > tr:hover {
  19. background: #ffebd8 !important;
  20. }
  21. .table-striped > tbody > tr:hover .btn {
  22. background: #2a94e0 !important;
  23. color: #fff !important;
  24. }
  25. .table-striped > tbody > tr:hover .btn .glyphicon {
  26. color: #fff !important;
  27. }
  28. </style>
  29. @endsection
  30. @section('content')
  31. @php $authUser=auth()->user() @endphp
  32. <body class="gray-bg">
  33. <div class="wrapper wrapper-content animated fadeInRight">
  34. <div class="row">
  35. <div class="col-sm-12">
  36. <div class="ibox float-e-margins">
  37. <div class="ibox-content">
  38. <form class="row" id="searchForm" onsubmit="units.search();return false;">
  39. <div class="input-group">
  40. <select name="sellerId" id="sellerId" title="" class="form-control"
  41. style="width: 150px;float: right" onchange="units.selectPage();">
  42. <option value="">销售人员</option>
  43. @foreach($sellerUsers as $item)
  44. <option value="{{$item->id}}">{{$item->nickname}}</option>
  45. @endforeach
  46. </select>
  47. <select name="serverId" id="serverId" title="" class="form-control"
  48. style="width: 150px;float: right" onchange="units.selectPage();">
  49. <option value="">客户经理</option>
  50. @foreach($services as $item)
  51. <option value="{{$item->id}}">{{$item->nickname}}</option>
  52. @endforeach
  53. </select>
  54. <select name="manageHelperId" id="manageHelperId" title="" class="form-control"
  55. style="width: 150px;float: right"
  56. onchange="units.selectPage();">
  57. <option value="">项目经理</option>
  58. @foreach($managerHelpers as $item)
  59. <option value="{{$item->id}}">{{$item->nickname}}</option>
  60. @endforeach
  61. </select>
  62. <select name="editorId" id="editorId" title="" class="form-control"
  63. style="width: 150px;float: right" onchange="units.selectPage();">
  64. <option value="">项目采编</option>
  65. @foreach($editors as $item)
  66. <option value="{{$item->id}}">{{$item->nickname}}</option>
  67. @endforeach
  68. </select>
  69. <select name="editorId" id="editorId" title="" class="form-control"
  70. style="width: 150px;float: right" onchange="units.selectPage();">
  71. <option value="">前端</option>
  72. @foreach($webs as $item)
  73. <option value="{{$item->id}}">{{$item->nickname}}</option>
  74. @endforeach
  75. </select>
  76. <select name="optimizerId" id="optimizerId" title="" class="form-control"
  77. style="width: 150px;float: right"
  78. onchange="units.selectPage();">
  79. <option value="">优化师</option>
  80. @foreach($optimizers as $item)
  81. <option value="{{$item->id}}">{{$item->nickname}}</option>
  82. @endforeach
  83. </select>
  84. <input type="text" placeholder="请输入域名或项目名称" class="input-md form-control"
  85. name="keyword"
  86. id="keyword" style="width: 260px;float: right">
  87. <span class="input-group-btn">
  88. <button type="button" class="btn btn-md btn-primary"
  89. onclick="units.search()"> 搜索</button>
  90. <button type="button" class="btn btn-md" style="margin-left: 10px"
  91. name="btnReset"> 重置</button>
  92. <button type="button" class="btn btn-md btn-primary" style="margin-left: 10px"
  93. onclick="units.export()"> 导出</button>
  94. </span>
  95. </div>
  96. </form>
  97. <hr>
  98. <div class="table-responsive">
  99. <table id="table" class="table table-condensed" data-mobile-responsive="true"></table>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. </body>
  107. @endsection
  108. @section('footer')
  109. <script src="{{asset('js/plugins/layDate-v5.0.9/laydate/laydate.js')}}"></script>
  110. <script>
  111. laydate.render({
  112. elem: '#monthRange'
  113. , type: 'month'
  114. , format: 'yyyy-MM'
  115. });
  116. laydate.render({
  117. elem: '#monthRange2'
  118. , type: 'month'
  119. , format: 'yyyy-MM'
  120. });
  121. var units = {
  122. export: function () {
  123. var formValues = tips.getFormValues("#searchForm");
  124. var str = $.param(formValues);
  125. window.open('/admin/analyze/index/speed-measurement-export?=' + str)
  126. },
  127. selectPage: function () {
  128. tips.selectPage();
  129. },
  130. search: function () {
  131. tips.selectPage();
  132. },
  133. openDetail: function (id, title) {
  134. tips.page('/admin/sites/' + id + '/overview', title);
  135. }
  136. };
  137. // 月流量 月询盘 月排名 月软文 项目经理 项目进度
  138. var config = {};
  139. config.url = '/admin/analyze/index/speed-measurement';
  140. config.pageSize = 20;
  141. config.showColumns = true;
  142. config.columns = [ //字段
  143. {
  144. title: '序号', align: 'center', formatter: function (value, item, index) {
  145. return index + 1;
  146. },
  147. width: '10px'
  148. },
  149. {title: '上线时间', field: 'online_at', align: 'center', sortable: true,visible: false},
  150. {title: '公司', field: 'cn_title', align: 'center'},
  151. {title: '网站', field: 'domain', align: 'center'},
  152. {title: '关键词指标', field: 'keyword_goal', align: 'center'},
  153. {title: '建站时长', field: 'online_days', align: 'center'},
  154. {title: 'pc端测速得分', field: 'pcSpeedMeasurement', align: 'center'},
  155. {title: '移动端测速得分', field: 'mobileSpeedMeasurement', align: 'center'},
  156. {title: '项目销售', field: 'seller_title', align: 'center'},
  157. {title: '客服经理', field: 'server_title', align: 'center'},
  158. {title: '项目经理1', field: 'managers_title', align: 'center', visible: false},
  159. {title: '项目经理', field: 'manage_helper_title', align: 'center'},
  160. {title: '优化师', field: 'optimizerTitle', align: 'center'},
  161. {title: '项目采编', field: 'ae_title', align: 'center'},
  162. {title: '竞价', field: 'bidTitle', align: 'center', visible: false},
  163. {title: '软文', field: 'articleTitle', align: 'center', visible: false},
  164. {title: '设计', field: 'designerTitle', align: 'center', visible: false},
  165. {title: '前端', field: 'web', align: 'center'},
  166. {title: '合同签订时间', field: 'sign_at', align: 'center', visible: false},
  167. {title: '下单时间', field: 'order_at', align: 'center', visible: false},
  168. {title: '分配时间', field: 'assign_at', align: 'center',visible: false},
  169. /*{title: '上线时间', field: 'online_at', align: 'center', visible: false},*/
  170. {title: '达标时间', field: 'reach_at', align: 'center', visible: false},
  171. {title: '过期时间', field: 'expired_at', align: 'center', visible: false},
  172. {title: '百千约访时间', field: 'bq_at', align: 'center', visible: false},
  173. {title: '续费次数', field: 'renewal_times', align: 'center', visible: false},
  174. {title: '续费时间', field: 'renewal_at', align: 'center', visible: false},
  175. // {title: '评分', field: 'score', align: 'center'},
  176. {
  177. title: '操作', field: 'id', align: 'center',
  178. formatter: function (value, row) {
  179. var str = '<button onclick="units.openDetail(' + value + ',\'' + row.cn_title + '\')" class="btn btn-xs"><span class="glyphicon glyphicon-menu-hamburger"></span>详情</button><br>';
  180. return str;
  181. }
  182. }
  183. ];
  184. tips.bootstrapTable(config);
  185. </script>
  186. @endsection