1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- @extends('admin/layout')
- @section('header')
- @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">
- <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'
- // , range: '→'
- , format: 'yyyy-MM'
- });
- var units = {
- 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/staff/sales';
- config.pageSize = 20;
- // config.showColumns = true;
- config.columns = [ //字段
- {
- title: '序号', align: 'center', formatter: function (value, item, index) {
- return index + 1;
- },
- width: '10px'
- },
- {title: '人员', field: 'nickname', align: 'center'},
- {title: '总数', field: 'sitesCount', align: 'center'},
- {title: '建站期', field: 'buildStation', align: 'center'},
- {title: '实施期', field: 'implement', align: 'center', width: '240px'},
- {title: '服务期', field: 'service', align: 'center', width: '160px'},
- {title: '暂停', field: 'pause', align: 'center'},
- {title: '终止/未续费', field: 'termination', align: 'center'},
- {title: '网站续费', field: 'renew', align: 'center'},
- ];
- tips.bootstrapTable(config);
- </script>
- @endsection
|