@extends('admin/layout') @section('header') <link href="{{asset('css/plugins/switchery/switchery.css')}}" rel="stylesheet"> <style> .btn-danger, .btn-primary, .btn-info { background: #2a94e0 !important; border-color: #2a94e0 !important; } .table-striped > tbody > tr:nth-of-type(odd) { background: #f8f8f8 !important; } .table-striped > tbody > tr .btn { background: none !important; } .table-striped > tbody > tr td { font-size: 14px !important; } .table-striped > tbody > tr:hover { background: #ffebd8 !important; } .table-striped > tbody > tr:hover .btn { background: #2a94e0 !important; color: #fff !important; } .table-striped > tbody > tr:hover .btn .glyphicon { color: #fff !important; } </style> @endsection @section('content') @php $authUser=auth()->user() @endphp <body class="gray-bg"> <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-sm-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <form class="row" id="searchForm" onsubmit="units.search();return false;"> <div class="input-group"> {{-- <input type="text" placeholder="请输入地区" class="input-md form-control" name="address" id="address" style="width: 260px;float: right">--}} <select name="status" id="status" title="" class="form-control" style="width: 150px;float: right" onchange="tips.selectPage();"> <option value="">请选择项目状态</option> @foreach(\App\Http\Models\Site::STATUS_MAP as $key=>$item) @if(!in_array($key,[5,6])) <option value="{{$key}}">{{$item}}</option> @endif @endforeach </select> <input type="text" placeholder="请输入域名或项目名称" class="input-md form-control" name="keyword" id="keyword" style="width: 200px;float: right"> <span class="input-group-btn"> <button type="button" class="btn btn-md btn-primary" onclick="units.search()"> 搜索</button> <button type="button" class="btn btn-md" style="margin-left: 10px" name="btnReset"> 重置</button> <button type="button" class="btn btn-md btn-primary" style="margin-left: 10px" onclick="units.export()"> 导出</button> </span> </span> </div> </form> <hr> <div class="table-responsive"> <table id="table" class="table table-condensed" data-mobile-responsive="true"></table> </div> </div> </div> </div> </div> </div> </body> @endsection @section('footer') <script src="{{asset('js/plugins/layDate-v5.0.9/laydate/laydate.js')}}"></script> <script> laydate.render({ elem: '#monthRange' , type: 'month' , format: 'yyyy-MM' }); var units = { export: function () { var formValues = tips.getFormValues("#searchForm"); var str = $.param(formValues); window.open('/admin/analyze/index/archive-export?=' + str) }, selectPage: function () { tips.selectPage(); }, search: function () { tips.selectPage(); }, openDetail: function (id, title) { tips.page('/admin/sites/' + id + '/overview', title); } }; // 月流量 月询盘 月排名 月软文 项目经理 项目进度 var config = {}; config.url = '/admin/analyze/index/archive'; config.pageSize = 50; config.showColumns = true; config.columns = [ //字段 { title: '序号', align: 'center', formatter: function (value, item, index) { return index + 1; }, width: '10px' }, {title: '地区', field: 'areaText', align: 'center',visible: false}, {title: '公司', field: 'cn_title', align: 'center'}, {title: '项目状态', field: 'status', align: 'center'}, {title: '网站', field: 'domain', align: 'center'}, {title: '关键词指标', field: 'keyword_goal', align: 'center'}, {title: '文章指标', field: 'article_goal', align: 'center'}, {title: '外链指标', field: 'link_goal', align: 'center'}, {title: '合同日期', field: 'sign_at', align: 'center'}, {title: '合同金额', field: 'contract_total_fee', align: 'center'}, {title: '首付款', field: 'head', align: 'center'}, {title: '建站金额', field: 'done', align: 'center'}, /*{title: '达标日期', field: 'reach_at', align: 'center'},*/ {title: '达标金额', field: 'reach', align: 'center'}, {title: '服务期尾款', field: 'service_final_payment', align: 'center'}, {title: '续费次数', field: 'renewal_times', align: 'center'}, {title: '续费金额', field: 'renewal_amount', align: 'center'}, {title: '备注', field: 'remark', align: 'center', visible: false}, {title: '项目销售', field: 'seller_title', align: 'center', visible: false}, {title: '客服经理', field: 'server_title', align: 'center', visible: false}, {title: '项目经理1', field: 'managers_title', align: 'center', visible: false}, {title: '项目经理', field: 'manage_helper_title', align: 'center', visible: false}, {title: '优化师', field: 'optimizerTitle', align: 'center', visible: false}, {title: '优化采编', field: 'optimizerAe', align: 'center', visible: false}, {title: '项目采编', field: 'ae_title', align: 'center', visible: false}, {title: '竞价', field: 'bidTitle', align: 'center', visible: false}, {title: '软文', field: 'articleTitle', align: 'center', visible: false}, {title: '设计', field: 'designerTitle', align: 'center', visible: false}, {title: '前端', field: 'webTitle', align: 'center', visible: false}, /* {title: '合同签订', field: 'sign_at', align: 'center'}, {title: '建站', field: 'buildDay', align: 'center'}, {title: '达标', field: 'reachDay', align: 'center'},*/ { title: '操作', field: 'id', align: 'center', formatter: function (value, row) { var str = '<button onclick="units.openDetail(' + value + ',\'' + row.cn_title + '\')" class="btn btn-xs"><span class="glyphicon glyphicon-menu-hamburger"></span>详情</button><br>'; return str; } } ]; tips.bootstrapTable(config); </script> @endsection