<?php $__env->startSection('head'); ?>
    @parent
    <style>
        .op-time-span {
            text-align: center;
            font-size: 0.8rem;
            color: #ccc;
        }
    </style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('main-content'); ?>
    <section class="content animated slideInRight">
        <div class="row">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-12">
                            <ol class="breadcrumb float-sm-left">
                                <li class="breadcrumb-item"><a href="/event">活动列表</a></li>
                                <li class="breadcrumb-item active"><?php echo e($title); ?> - 订单列表</li>
                            </ol>
                        </div>
                    </div>
                </div>
            </div>
            <div class="col-md-12">
                <div class="card card-primary">
                    <div class="card-body p-0">
                        <div class="table-responsive">
                            <table class="table table-hover admin-table" id="product-table">
                                <thead>
                                <tr>
                                    <th width="6%">选择</th>
                                    <th width="10%">用户</th>
                                    <th width="10%">姓名</th>
                                    <th width="20%">手机号</th>
                                    <th width="10%">下单价格</th>
                                    <th width="10%">订单状态</th>
                                    <th width="15%">下单时间</th>
                                </tr>
                                </thead>
                                <tbody>
                                <tr v-if="total === 0">
                                    <td colspan="7">暂无相关记录</td>
                                </tr>
                                <tr v-if="total > 0"  v-for="item in list">
                                    <td><input type="checkbox"></td>
                                    <td>
                                        <a>
                                            <img :src="item.avatar" class="index_image" v-if="item.avatar">
                                            <span class="title_span cp grey"
                                                  :title="item.nick_name">{{item.nick_name}}</span>
                                        </a>
                                    </td>
                                    <td>{{item.real_name}}</td>
                                    <td>{{item.tel}}</td>
                                    <td>{{item.price}}</td>
                                    <td>成功</td>
                                    <td class="op-time-span">
                                        {{item['created_at']}}
                                    </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>
        let eventid = "<?php echo e($id); ?>";
    </script>
    <script src="/static/js/event/order.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(); ?>