若依开源1.1.2发布
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* ruoyi.css v1.1.1
|
||||
* ruoyi.css
|
||||
* Author: Ruoyi
|
||||
*/
|
||||
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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());
|
||||
|
@ -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());
|
||||
|
@ -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());
|
||||
|
@ -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();
|
||||
|
@ -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());
|
||||
|
@ -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();
|
||||
|
@ -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());
|
||||
|