<?php
use \common\libs\MyLib;
?>
<?php $this->beginBlock('header_css'); ?>
<link href="/assets/css/plugins/bootstrap-table/bootstrap-table.min.css" rel="stylesheet">
<?php $this->endBlock(); ?>

<div class="wrapper wrapper-content animated fadeInRight">
    <div class="ibox float-e-margins">
        <div class="ibox-title">
            <h5>内勤核保</h5>
            <div class="ibox-tools">
                <a class="btn btn-primary btn-xs edit-btn" data-id="0" href="javascript:void(0);" onclick="$('#listTable').bootstrapTable('refresh');">
                    <i class="fa fa-refresh"></i> 刷新
                </a>
            </div>
        </div>
        <div class="ibox-content">
            <form role="form" class="form-inline" onsubmit="return search();">
                <div class="form-group">
                    <label>车主</label>
                    <input type="text" name="car_man" id="car_man" class="form-control">
                    <label style="margin-left:20px;">电话</label>
                    <input type="text" name="phone" id="phone" class="form-control">
                    <label style="margin-left:20px;">车牌</label>
                    <input type="text" name="car_no" id="car_no" class="form-control">
                    <label style="margin-left:20px;">被保险人</label>
                    <input type="text" name="id_man" id="id_man" class="form-control">
                    <button type="submit" class="btn btn-primary" style="margin-left:20px;">搜索</button>
                </div>
            </form>
            <div class="row" style="margin-top:20px;">
                <div class="col-md-12">
                    <table id="listTable">
                        <thead class="bg-warning">
                        <tr>
                            <th width="50" data-field="id">ID</th>
                            <th data-field="id_man">被保险人</th>
                            <th data-field="link_man_phone">联系电话</th>
                            <th data-field="company_name">保险公司</th>
                            <th data-field="car_no">车牌号</th>
                            <th data-field="factory_model">车型</th>
                            <th data-field="submit_date">提单日期</th>
                            <th data-field="total_all">共计签单</th>
                            <th data-field="user_name">销售座席</th>
                            <th data-field="status_name">状态</th>
                            <th data-field="lock_name">当前操作</th>
                            <th data-formatter="opFormatter">操作</th>
                        </tr>
                        </thead>
                    </table>
                </div>
            </div>
        </div>
    </div>
</div>


<?php $this->beginBlock('footer_js'); ?>
<script src="/assets/js/plugins/bootstrap-table/bootstrap-table.min.js"></script>
<script src="/assets/js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
<script src="/assets/js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
<script>
    var o = {};
    function opFormatter(value, row, index) {
        var opStr = [];
        opStr.push('<a href="javascript:void(0);" onclick="view(' + row.id + ')">');
        opStr.push('<i class="fa fa-file-o" title="详情"></i>');
        opStr.push('</a>');

        return opStr.join(' ');
    }
    function view(id) {
        window.location.href = '/insurer/office-mng-edit?id=' + id;
    }
    function refreshList() {
        $('#listTable').bootstrapTable('refresh');
    }

    function search() {
        $('#listTable').bootstrapTable('destroy');
        $('#listTable').bootstrapTable({
            url: "/insurer/office-mng-json",
            pagination: true,
            sidePagination: 'server',
            multipleSelectRow: true,
            queryParams: function(params) {
                o['limit'] = params['limit'];
                o['offset'] = params['offset'];
                return o;
            }
        });
        return false;
    }

    $(function() {
        search();
    });
</script>
<?php $this->endBlock(); ?>