<style>
    .layui-form-item {
        margin-bottom: 5px;
    }
</style>
<div class="layui-card">
    <div class="layui-card-body">
        <blockquote class="layui-elem-quote layui-text">
            <b>当前选中需要批量申请审核的供应商列表</b>
        </blockquote>
        <table class="layui-table">
            <colgroup>
                <col width="300">
                <col width="100">
                <col>
            </colgroup>
            <thead>
            <tr>
                <th>供应商名称</th>
                <th>当前渠道开发员</th>
            </tr>
            </thead>
            <tbody>
            @foreach($suppliers as $supplier)
                <tr>
                    <td>{{$supplier['supplier_name']}}</td>
                    <td>{{$supplier['purchase_username']}}</td>
                </tr>
            @endforeach
            </tbody>
        </table>
    </div>
    <div align="center" style="margin-top: 20px;text-align: right">
        <button type="button" class="layui-btn layui-btn-sm layui-btn-info submit-loading" id="batch_apply_in_review_supplier">确认
        </button>
        <button type="button" class="layui-btn layui-btn-sm layui-btn-primary" id="cancel">取消
        </button>
    </div>
</div>