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