mirror of https://gitee.com/y_project/RuoYi.git
添加用户时,用户名、手机号、邮箱唯一校验参数修正
parent
2d064a9723
commit
ac9666db76
|
@ -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 @@
|
||||||
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 @@
|
||||||
type: "post",
|
type: "post",
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
data: {
|
data: {
|
||||||
name: function () {
|
"phonenumber": function () {
|
||||||
return $.common.trim($("#phonenumber").val());
|
return $.common.trim($("#phonenumber").val());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue