Commit c3a6f4af by 若依 Committed by Gitee

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

Merge pull request !140 from BoazJun/master
parents 2d064a97 ac9666db
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
type: "post", type: "post",
dataType: "json", dataType: "json",
data: { data: {
name : function() { "loginName": function() {
return $.common.trim($("#loginName").val()); return $.common.trim($("#loginName").val());
} }
}, },
...@@ -169,7 +169,7 @@ ...@@ -169,7 +169,7 @@
type: "post", type: "post",
dataType: "json", dataType: "json",
data: { data: {
name: function () { "email": function () {
return $.common.trim($("#email").val()); return $.common.trim($("#email").val());
} }
}, },
...@@ -185,7 +185,7 @@ ...@@ -185,7 +185,7 @@
type: "post", type: "post",
dataType: "json", dataType: "json",
data: { data: {
name: function () { "phonenumber": function () {
return $.common.trim($("#phonenumber").val()); 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