From 7277731f83b359443bb8259ce568c8bcf37ac31d Mon Sep 17 00:00:00 2001
From: whycq <123456>
Date: 星期五, 13 十二月 2024 16:19:43 +0800
Subject: [PATCH] #
---
src/main/webapp/static/js/permission/permission.js | 67 +++++++++++++++++----------------
1 files changed, 35 insertions(+), 32 deletions(-)
diff --git a/src/main/webapp/static/js/permission/permission.js b/src/main/webapp/static/js/permission/permission.js
index af6397b..b654c2d 100644
--- a/src/main/webapp/static/js/permission/permission.js
+++ b/src/main/webapp/static/js/permission/permission.js
@@ -13,15 +13,17 @@
url: baseUrl+'/permission/list/auth',
page: true,
limit: 16,
+ limits: [16, 30, 50, 100, 200, 500],
toolbar: '#toolbar',
cellMinWidth: 50,
cols: [[
{type: 'checkbox', fixed: 'left'}
- ,{field: 'id', title: 'ID', sort: true,align: 'center', fixed: 'left', width: 80}
+ //,{field: 'title', title: '鏍囬', sort: true,align: 'center', fixed: 'left', width: 80}
+ ,{field: 'title', title: '鏍囬', align: 'center',}
,{field: 'name', align: 'center',title: '鏉冮檺鍚嶇О'}
,{field: 'action', align: 'center',title: '鎺ュ彛鍦板潃'}
- ,{field: 'resourceName', align: 'center',title: '鎵�灞炶彍鍗�',event: 'Resource', style: 'text-decoration: underline;cursor:pointer'}
- ,{field: 'status$', align: 'center',title: '鐘舵��'}
+ // ,{field: 'resourceName', align: 'center',title: '鎵�灞炶彍鍗�',event: 'Resource', style: 'text-decoration: underline;cursor:pointer'}
+ // ,{field: 'status$', align: 'center',title: '鐘舵��'}
,{fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width:150}
]],
@@ -85,7 +87,7 @@
shadeClose: false,
content: 'permission_detail.html',
success: function(layero, index){
- clearFormVal(layer.getChildFrame('#detail', index));
+ clearFormVal(layer.getChildFrame('#detail', index));
layer.iframeAuto(index);layer.style(index, {top: (($(window).height()-layer.getChildFrame('#data-detail', index).height())/3)+"px"});
}
});
@@ -213,34 +215,34 @@
if (param === undefined) {
layer.msg("鏃犳暟鎹�");
} else {
- layer.open({
- type: 2,
- title: '鎵�灞炶鎯�',
- maxmin: true,
- area: [top.detailHeight, top.detailWidth],
- shadeClose: false,
- content: '../resource/resource_detail.html',
- success: function(layero, index){
- $.ajax({
- url: baseUrl+"/resource/"+ param +"/auth",
- headers: {'token': localStorage.getItem('token')},
- method: 'GET',
- success: function (res) {
- if (res.code === 200){
- setFormVal(layer.getChildFrame('#detail', index), res.data, true);
- top.convertDisabled(layer.getChildFrame('#data-detail :input', index), true);
- layer.getChildFrame('#data-detail-submit', index).hide();
- layer.iframeAuto(index);layer.style(index, {top: (($(window).height()-layer.getChildFrame('#data-detail', index).height())/3)+"px"});
- layero.find('iframe')[0].contentWindow.layui.form.render('select');
- } else if (res.code === 403){
- parent.location.href = "/";
- }else {
- layer.msg(res.msg)
- }
- }
- })
- }
- });
+ layer.open({
+ type: 2,
+ title: '鎵�灞炶鎯�',
+ maxmin: true,
+ area: [top.detailHeight, top.detailWidth],
+ shadeClose: false,
+ content: '../resource/resource_detail.html',
+ success: function(layero, index){
+ $.ajax({
+ url: baseUrl+"/resource/"+ param +"/auth",
+ headers: {'token': localStorage.getItem('token')},
+ method: 'GET',
+ success: function (res) {
+ if (res.code === 200){
+ setFormVal(layer.getChildFrame('#detail', index), res.data, true);
+ top.convertDisabled(layer.getChildFrame('#data-detail :input', index), true);
+ layer.getChildFrame('#data-detail-submit', index).hide();
+ layer.iframeAuto(index);layer.style(index, {top: (($(window).height()-layer.getChildFrame('#data-detail', index).height())/3)+"px"});
+ layero.find('iframe')[0].contentWindow.layui.form.render('select');
+ } else if (res.code === 403){
+ parent.location.href = "/";
+ }else {
+ layer.msg(res.msg)
+ }
+ }
+ })
+ }
+ });
}
break;
@@ -253,6 +255,7 @@
shade: [0.5,'#000'] //0.1閫忔槑搴︾殑鑳屾櫙
});
var data = {
+ title: $('#title').val(),
id: $('#id').val(),
name: $('#name').val(),
action: $('#action').val(),
--
Gitblit v1.9.1