* [story#75371,doing,0.1h] SMS sending failure also prompts.

This commit is contained in:
zhangjialiang
2025-06-16 15:28:58 +08:00
parent b2730580f2
commit b217acf5b3
+4 -4
View File
@@ -54,15 +54,15 @@ $('#checkMobileSender').on('click', function(e)
$.post($.createLink('admin', 'sendcode'),{mobile:$('#mobile-captcha').val(), captchaContent: $('#captchaImage').val()},function(response)
{
response = JSON.parse(response);
zui.Messager.show({
message: response.message,
type: 'primary',
});
if(response.result == 'success')
{
countdown = 60;
setSmsSenderTime();
$('.captcha-mobile-sender').hide();
zui.Messager.show({
message: response.message,
type: 'primary',
})
$('#captchaMobileError').html(response.message);
}
else