添加用户时,用户名、手机号、邮箱唯一校验参数修正

pull/140/head
dlnu_wqj 2019-10-14 15:51:14 +08:00
parent 2d064a9723
commit ac9666db76
1 changed files with 3 additions and 3 deletions

View File

@ -149,7 +149,7 @@
type: "post",
dataType: "json",
data: {
name : function() {
"loginName": function() {
return $.common.trim($("#loginName").val());
}
},
@ -169,7 +169,7 @@
type: "post",
dataType: "json",
data: {
name: function () {
"email": function () {
return $.common.trim($("#email").val());
}
},
@ -185,7 +185,7 @@
type: "post",
dataType: "json",
data: {
name: function () {
"phonenumber": function () {
return $.common.trim($("#phonenumber").val());
}
},