若依开源1.1.2发布

This commit is contained in:
RuoYi
2018-05-06 12:43:07 +08:00
parent 6f6a9c8ca0
commit 9d18d298e7
33 changed files with 419 additions and 65 deletions

View File

@ -1,5 +1,5 @@
/*!
* ruoyi.css v1.1.1
* ruoyi.css
* Author: Ruoyi
*/

View File

@ -5,7 +5,7 @@ $("#form-dept-add").validate({
remote: {
url: ctx + "system/dept/checkDeptNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
"deptName" : function() {
return $("input[name='deptName']").val();

View File

@ -5,7 +5,7 @@ $("#form-dept-edit").validate({
remote: {
url: ctx + "system/dept/checkDeptNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
"deptId": function() {
return $("input[name='deptId']").val();

View File

@ -9,7 +9,7 @@ $("#form-dict-add").validate({
remote: {
url: ctx + "system/dict/checkDictTypeUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
name : function() {
return $.trim($("#dictType").val());

View File

@ -9,7 +9,7 @@ $("#form-dict-edit").validate({
remote: {
url: ctx + "system/dict/checkDictTypeUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
dictId : function() {
return $.trim($("#dictId").val());

View File

@ -5,7 +5,7 @@ $("#form-menu-add").validate({
remote: {
url: ctx + "system/menu/checkMenuNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
"menuName" : function() {
return $.trim($("#menuName").val());

View File

@ -10,7 +10,7 @@ $("#form-menu-edit").validate({
remote: {
url: ctx + "system/menu/checkMenuNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
"menuId": function() {
return $("input[name='menuId']").val();

View File

@ -23,7 +23,7 @@ $("#form-role-add").validate({
remote: {
url: ctx + "system/role/checkRoleNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
"roleName" : function() {
return $.trim($("#roleName").val());

View File

@ -23,7 +23,7 @@ $("#form-role-edit").validate({
remote: {
url: ctx + "system/role/checkRoleNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
"roleId": function() {
return $("input[name='roleId']").val();

View File

@ -6,7 +6,7 @@ $("#form-user-add").validate({
remote: {
url: ctx + "system/user/checkUserNameUnique",
type: "post",
dataType: "text",
dataType: "json",
data: {
name : function() {
return $.trim($("#loginName").val());