14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
$(document).ready(function()
|
|
{
|
|
$('#apiForm').ajaxForm({
|
|
success: (data) => {
|
|
if (data.result == 'success') {
|
|
if (data.locate) {
|
|
window.parent.location.href = data.locate
|
|
}
|
|
$.zui.closeModal()
|
|
}
|
|
}
|
|
})
|
|
});
|