Commit c3a6f4af by 若依 Committed by Gitee

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

Merge pull request !140 from BoazJun/master
parents 2d064a97 ac9666db
......@@ -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());
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment