<div class="layui-row">
    <blockquote class="layui-elem-quote layui-text">
        <b>联系人管理</b>
    </blockquote>
    @if($operate == 'update')
        <div class="layui-btn-group demoTable" style="margin-top: 5px">
            @if(checkPerm('AddSupplierContact'))
                <button type="button" class="layui-btn layui-btn-sm" id="add_contact">新增</button>
            @endif
            @if(checkPerm('UpdateSupplierContact'))
                <button type="button" class="layui-btn layui-btn-sm" id="update_contact">修改</button>
            @endif
            @if(checkPerm('DeleteSupplierContact'))
                <button type="button" class="layui-btn layui-btn-sm" id="batchDelete">删除</button>
            @endif
        </div>
    @endif
    <table class="layui-table" lay-filter="contactList" id="contactList"></table>
</div>

@include('script.supplier.SupplierContactScript')