| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- @extends('admin.layouts')
- @section('css')
- <link href="/assets/global/plugins/datatables/datatables.min.css" rel="stylesheet" type="text/css" />
- <link href="/assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.css" rel="stylesheet" type="text/css" />
- @endsection
- @section('content')
- <!-- BEGIN CONTENT BODY -->
- <div class="page-content" style="padding-top:0;">
- <!-- BEGIN PAGE BASE CONTENT -->
- <div class="row">
- <div class="col-md-12">
- <!-- BEGIN EXAMPLE TABLE PORTLET-->
- <div class="portlet light bordered">
- <div class="portlet-title">
- <div class="caption font-dark">
- <span class="caption-subject bold uppercase"> 文章列表 </span>
- </div>
- <div class="actions">
- <div class="btn-group">
- <button class="btn sbold blue" onclick="addArticle()"> 添加文章 </button>
- </div>
- </div>
- </div>
- <div class="portlet-body">
- <div class="table-scrollable table-scrollable-borderless">
- <table class="table table-hover table-light">
- <thead>
- <tr>
- <th> # </th>
- <th> 类型 </th>
- <th> 标题 </th>
- <th> 排序 </th>
- <th> 发布日期 </th>
- <th> 操作 </th>
- </tr>
- </thead>
- <tbody>
- @if($list->isEmpty())
- <tr>
- <td colspan="6" style="text-align: center;">暂无数据</td>
- </tr>
- @else
- @foreach($list as $vo)
- <tr class="odd gradeX">
- <td> {{$vo->id}} </td>
- @if ($vo->type == '1')
- <td> 文章 </td>
- @elseif ($vo->type == '2')
- <td> 公告 </td>
- @elseif ($vo->type == '3')
- <td> 购买说明 </td>
- @elseif ($vo->type == '4')
- <td> 使用教程 </td>
- @else
- <td> 未知 </td>
- @endif
- <td> <a href="{{url('article?id=' . $vo->id)}}" target="_blank"> {{str_limit($vo->title, 80)}} </a> </td>
- <td> {{$vo->sort}} </td>
- <td> {{$vo->created_at}} </td>
- <td>
- <button type="button" class="btn btn-sm blue btn-outline" onclick="editArticle('{{$vo->id}}')"> 编辑 </button>
- <button type="button" class="btn btn-sm red btn-outline" onclick="delArticle('{{$vo->id}}')"> 删除 </button>
- </td>
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- </div>
- <div class="row">
- <div class="col-md-4 col-sm-4">
- <div class="dataTables_info" role="status" aria-live="polite">共 {{$list->total()}} 篇文章</div>
- </div>
- <div class="col-md-8 col-sm-8">
- <div class="dataTables_paginate paging_bootstrap_full_number pull-right">
- {{ $list->links() }}
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- END EXAMPLE TABLE PORTLET-->
- </div>
- </div>
- <!-- END PAGE BASE CONTENT -->
- </div>
- <!-- END CONTENT BODY -->
- @endsection
- @section('script')
- <script type="text/javascript">
- // 添加文章
- function addArticle() {
- window.location.href = '{{url('admin/addArticle')}}';
- }
- // 编辑文章
- function editArticle(id) {
- window.location.href = '{{url('admin/editArticle?id=')}}' + id + '&page=' + '{{Request::get('page', 1)}}';
- }
- // 删除文章
- function delArticle(id) {
- layer.confirm('确定删除文章?', {icon: 2, title:'警告'}, function(index) {
- $.post("{{url('admin/delArticle')}}", {id:id, _token:'{{csrf_token()}}'}, function(ret) {
- layer.msg(ret.message, {time:1000}, function() {
- if (ret.status == 'success') {
- window.location.reload();
- }
- });
- });
- layer.close(index);
- });
- }
- </script>
- @endsection
|