123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- @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">
- <select name="manageHelperId" id="manageHelperId" title="" class="form-control"
- style="width: 150px;float: right"
- onchange="units.selectPage();">
- <option value="">项目经理</option>
- @foreach($managerHelpers as $item)
- <option value="{{$item->id}}">{{$item->nickname}}</option>
- @endforeach
- </select>
- <input type="text" class="form-control" id="date" name="date"
- placeholder="逾期时间"
- style="width: 160px;float: right">
- <input type="text" placeholder="请输入域名或项目名称" class="input-md form-control"
- name="keyword"
- id="keyword" style="width: 260px;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>
- </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: '#date'
- , type: 'month'
- , format: 'yyyy-MM'
- });
- var units = {
- export: function () {
- var formValues = tips.getFormValues("#searchForm");
- var str = $.param(formValues);
- window.open('/admin/flow/scheduleOverdueExport?' + 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/flow/scheduleOverdue';
- config.pageSize = 20;
- config.showColumns = true;
- config.columns = [ //字段
- {
- title: '序号', align: 'center', formatter: function (value, item, index) {
- return index + 1;
- },
- width: '10px'
- },
- {title: '项目名称', field: 'cn_title', align: 'center', width: '120px'},
- {title: '域名', field: 'domain', align: 'center'},
- {title: '项目经理', field: 'projectManager', align: 'center'},
- {title: '销售经理', field: 'salesManager', align: 'center',visible: false},
- {title: '项目管家', field: 'serverManager', align: 'center'},
- {title: '预计总天数', field: 'expectedDay', align: 'center'},
- {title: '逾期天数', field: 'overdueDay', align: 'center'},
- {title: '项目资料搜集逾期', field: 'projectDataCollection', align: 'center'},
- {title: '逾期原因', field: 'projectDataCollectionMemo', align: 'center',visible: false},
- {title: '项目资料搜集完成用时', field: 'projectDataCollectionComplete', align: 'center',visible: false},
- {title: '网站架构逾期', field: 'siteArchitecture', align: 'center'},
- {title: '逾期原因', field: 'siteArchitectureMemo', align: 'center',visible: false},
- {title: '网站架构完成用时', field: 'siteArchitectureComplete', align: 'center',visible: false},
- {title: '首页设计逾期', field: 'homepageDesign', align: 'center'},
- {title: '逾期原因', field: 'homepageDesignMemo', align: 'center',visible: false},
- {title: '首页设计完成用时', field: 'homepageDesignComplete', align: 'center',visible: false},
- {title: '内页设计逾期', field: 'insidePageDesign', align: 'center'},
- {title: '逾期原因', field: 'insidePageDesignMemo', align: 'center',visible: false},
- {title: '内页设计完成用时', field: 'insidePageDesignComplete', align: 'center',visible: false},
- {title: '整站资料提供逾期', field: 'websiteInformationProvision', align: 'center'},
- {title: '逾期原因', field: 'websiteInformationProvisionMemo', align: 'center',visible: false},
- {title: '整站资料提供完成用时', field: 'websiteInformationProvisionComplete', align: 'center',visible: false},
- {title: '测试站逾期', field: 'testStation', align: 'center'},
- {title: '逾期原因', field: 'testStationMemo', align: 'center',visible: false},
- {title: '测试站完成用时', field: 'testStationComplete', align: 'center',visible: false},
- {title: '关键词逾期', field: 'keyWords', align: 'center'},
- {title: '逾期原因', field: 'keyWordsMemo', align: 'center',visible: false},
- {title: '关键词完成用时', field: 'keyWordsComplete', align: 'center',visible: false},
- {title: 'SEO完善逾期', field: 'seo', align: 'center'},
- {title: '逾期原因', field: 'seoMemo', align: 'center',visible: false},
- {title: 'SEO完善完成用时', field: 'seoComplete', align: 'center',visible: false},
- {title: '上线逾期', field: 'online', align: 'center'},
- {title: '逾期原因', field: 'onlineMemo', align: 'center',visible: false},
- {title: '上线完成用时', field: 'onlineComplete', align: 'center',visible: false},
- {
- 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
|