联系方式修改

This commit is contained in:
“wanyongkang”
2023-01-13 18:29:25 +08:00
parent 3987a22b26
commit cc17860446
10 changed files with 51 additions and 23 deletions

View File

@@ -37,10 +37,11 @@
var name = $("#username").val()
if(name == '') { alert('手机号不能为空'); return; }
if (!timing(_self)) return;
var url = '/user/SendPhoneCode?key=User_Code&phone=' + name;
var url = '/user/SendPhoneCodevefy?key=User_Code&phone=' + name;
$.ajax({
type: 'GET',
type: 'POST',
url: url,
contentType: "application/json",
success: function (res) {
alert(res.Message)
}