<?php $__env->startSection('head'); ?>
    @parent
<?php $__env->stopSection(); ?>
<?php $__env->startSection('main-content'); ?>
    <section class="content animated slideInRight">
        <div class="row">
            <div class="col-md-12">
                <div class="card card-primary card-outline">
                    <div class="card-header">
                        <a class="btn btn-primary btn-sm fa fa-plus-square-o white" href="/news/form"> 新建文档 </a>
                        <a class="btn btn-info btn-sm fa fa-gear white" href="/news/setting"> 设置 </a>
                        <div class="card-tools" style="top:0.7rem">
                            <div class="input-group input-group-sm">
                                <input type="text" class="form-control title-input" placeholder="标题搜索">
                                <div class="input-group-append">
                                    <div class="btn btn-default">
                                        <i class="fa fa-search title-search"></i>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="card-body p-0">
                        <div class="table-responsive">
                            <table class="table table-hover admin-table" id="news-table">
                                <thead>
                                <tr>
                                    <th width="6%">选择</th>
                                    <th width="20%">标题</th>
                                    <th width="10%">分类</th>
                                    <th width="10%">状态</th>
                                    <th width="15%">记录</th>
                                    <th width="19%">操作</th>
                                </tr>
                                </thead>
                                <tbody>
                                <tr v-if="total == 0">
                                    <td colspan="6">暂无相关记录</td>
                                </tr>
                                <tr v-if="total > 0 " v-for="item in list">
                                    <td><input type="checkbox"></td>
                                    <td>
                                        <a :href="`/news/form/${item.id}`">
                                            <img :src="item.index_image" class="index_image" v-if="item.index_image">
                                            <span class="title_span cp grey"
                                                  :title="item.title">{{item['title']}}</span>
                                        </a>
                                    </td>
                                    <td>{{item.sort_name}}</td>
                                    <td v-html="item.status === 2 ? '<span>已发布</span>':'<span>未发布</span>'"></td>
                                    <td>
                                        <span>{{item.creator_name}} {{item.created_at}}</span>
                                        <span>{{item.mender_name}} {{item.updated_at}}</span>
                                    </td>
                                    <td style="font-size: .8rem">
                                        <i @click="publish(item.id)" v-if="item.status === 1">发布 |</i>
                                        <i @click="rollback(item.id)"  v-if="item.status === 2">撤回 |</i>
                                        <i @click="del(item.id)">删除</i>&nbsp;
                                    </td>
                                </tr>
                                </tbody>
                            </table>
                        </div>
                    </div>
                    <div class="card-footer">
                        <div id="page-wrap"></div>
                    </div>
                </div>
            </div>
        </div>
        </div>
    </section>
<?php $__env->startSection('script'); ?>
    @parent
    <script src="/static/js/news/news.js?vt=<?php echo e(time()); ?>"></script>
<?php $__env->stopSection(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.index', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>