<script> layui.use(['table', 'form', 'element', 'table', 'layer', 'admin'], function () { let admin = layui.admin; let form = layui.form; let table = layui.table let element = layui.element; // $('#batch_apply_in_review_supplier').click(function () { // admin.btnLoading('.submit-loading'); // let supplierIds = getQueryVariable('supplier_ids'); // let url = '/api/supplier/BatchApplyInReviewSupplier?supplier_ids=' + supplierIds; // let res = ajax(url); // if (!res) { // layer.msg('网络错误,请重试', {icon: 6}); // } else { // if (res.err_code === 0) { // admin.closeThisDialog(); // parent.layer.msg(res.err_msg, {icon: 6}); // } else { // admin.btnLoading('.submit-loading', false); // parent.layer.msg(res.err_msg, {icon: 5}); // } // } // }); form.on('submit(batch_apply_in_review_supplier)', function (data) { let url = '/api/supplier/BatchApplyInReviewSupplier'; let res = ajax(url, data.field); console.log(data.field) if (!res) { layer.msg('网络错误,请重试', {icon: 6}); } else { if (res.err_code === 0) { parent.layer.msg(res.err_msg, {icon: 6}); admin.closeThisDialog(); } else { parent.layer.msg(res.err_msg, {icon: 5}); } } return false; }); form.on('submit(cancel)', function (data) { admin.closeThisDialog(); }); }); </script>