mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
更新权限管理模块
This commit is contained in:
parent
9825efee7c
commit
d7712d1510
@ -16,6 +16,7 @@ namespace app\admin\controller;
|
|||||||
|
|
||||||
use controller\BasicAdmin;
|
use controller\BasicAdmin;
|
||||||
use library\Data;
|
use library\Data;
|
||||||
|
use think\Db;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统权限管理控制器
|
* 系统权限管理控制器
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
<td class='list-table-sort-td'>
|
<td class='list-table-sort-td'>
|
||||||
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input"/>
|
<input name="_{$vo.id}" value="{$vo.sort}" class="list-sort-input"/>
|
||||||
</td>
|
</td>
|
||||||
<td class='text-center'>{$vo.name}</td>
|
<td class='text-center'>{$vo.title}</td>
|
||||||
<td class='text-center'>{$vo.desc|default="<span style='color:#ccc'>没有写描述哦!</span>"}</td>
|
<td class='text-center'>{$vo.desc|default="<span style='color:#ccc'>没有写描述哦!</span>"}</td>
|
||||||
<td class='text-center'>
|
<td class='text-center'>
|
||||||
{if $vo.status eq 0}
|
{if $vo.status eq 0}
|
||||||
@ -67,5 +67,6 @@
|
|||||||
{/foreach}
|
{/foreach}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
{if isset($page)}<p>{$page}</p>{/if}
|
||||||
</form>
|
</form>
|
||||||
{/block}
|
{/block}
|
@ -115,6 +115,12 @@ class BasicAdmin extends Controller {
|
|||||||
}
|
}
|
||||||
# 列表显示
|
# 列表显示
|
||||||
$result = array();
|
$result = array();
|
||||||
|
# 默认排序
|
||||||
|
$options = $db->getOptions();
|
||||||
|
if (empty($options['order'])) {
|
||||||
|
$fields = $db->getTableFields(['table' => $db->getTable()]);
|
||||||
|
in_array('sort', $fields) && $db->order('sort asc');
|
||||||
|
}
|
||||||
if ($is_page) {
|
if ($is_page) {
|
||||||
$row_page = $this->request->get('rows', cookie('rows'), 'intval');
|
$row_page = $this->request->get('rows', cookie('rows'), 'intval');
|
||||||
cookie('rows', $row_page >= 10 ? $row_page : 10);
|
cookie('rows', $row_page >= 10 ? $row_page : 10);
|
||||||
@ -164,7 +170,7 @@ class BasicAdmin extends Controller {
|
|||||||
if ($pk_value !== '') { // Edit Options
|
if ($pk_value !== '') { // Edit Options
|
||||||
!empty($pk_value) && $db->where($pk, $pk_value);
|
!empty($pk_value) && $db->where($pk, $pk_value);
|
||||||
!empty($where) && $db->where($where);
|
!empty($where) && $db->where($where);
|
||||||
$vo = array_merge($data, (array) $db->find());
|
$vo = array_merge($data, (array)$db->find());
|
||||||
}
|
}
|
||||||
$this->_callback('_form_filter', $vo);
|
$this->_callback('_form_filter', $vo);
|
||||||
$this->assign('vo', $vo);
|
$this->assign('vo', $vo);
|
||||||
|
@ -55,10 +55,8 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
};
|
};
|
||||||
JPlaceHolder.init();
|
JPlaceHolder.init();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 定义消息处理构造方法
|
* 定义消息处理构造方法
|
||||||
* @returns {common_L11._msg}
|
|
||||||
*/
|
*/
|
||||||
function msg() {
|
function msg() {
|
||||||
this.version = '2.0';
|
this.version = '2.0';
|
||||||
@ -78,9 +76,9 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 弹出警告消息框
|
* 弹出警告消息框
|
||||||
* @param {type} msg
|
* @param msg 消息内容
|
||||||
* @param {type} callback
|
* @param callback 回调函数
|
||||||
* @returns {undefined}
|
* @return {*|undefined}
|
||||||
*/
|
*/
|
||||||
msg.prototype.alert = function (msg, callback) {
|
msg.prototype.alert = function (msg, callback) {
|
||||||
this.close();
|
this.close();
|
||||||
@ -89,21 +87,28 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 确认对话框
|
* 确认对话框
|
||||||
* @param {type} msg 提示消息内容
|
* @param msg 提示消息内容
|
||||||
* @param {type} ok 确认的回调函数
|
* @param ok 确认的回调函数
|
||||||
* @param {type} no 取消的回调函数
|
* @param no 取消的回调函数
|
||||||
* @returns {undefined}
|
* @return {undefined|*}
|
||||||
*/
|
*/
|
||||||
msg.prototype.confirm = function (msg, ok, no) {
|
msg.prototype.confirm = function (msg, ok, no) {
|
||||||
this.close();
|
var self = this;
|
||||||
return this.index = layer.confirm(msg, {btn: ['确认', '取消']}, ok, no);
|
return this.index = layer.confirm(msg, {btn: ['确认', '取消']}, function () {
|
||||||
|
typeof ok === 'function' && ok.call(this);
|
||||||
|
self.close();
|
||||||
|
}, function () {
|
||||||
|
typeof no === 'function' && ok.call(this);
|
||||||
|
self.close();
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 显示成功类型的消息
|
* 显示成功类型的消息
|
||||||
* @param {type} msg 消息内容
|
* @param msg 消息内容
|
||||||
* @param {type} time 延迟关闭时间
|
* @param time 延迟关闭时间
|
||||||
* @param {type} callback 回调函数
|
* @param callback 回调函数
|
||||||
|
* @return {common_L11._msg|*}
|
||||||
*/
|
*/
|
||||||
msg.prototype.success = function (msg, time, callback) {
|
msg.prototype.success = function (msg, time, callback) {
|
||||||
this.close();
|
this.close();
|
||||||
@ -119,9 +124,10 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 显示失败类型的消息
|
* 显示失败类型的消息
|
||||||
* @param {type} msg 消息内容
|
* @param msg 消息内容
|
||||||
* @param {type} time 延迟关闭时间
|
* @param time 延迟关闭时间
|
||||||
* @param {type} callback 回调函数
|
* @param callback 回调函数
|
||||||
|
* @return {common_L11._msg|*}
|
||||||
*/
|
*/
|
||||||
msg.prototype.error = function (msg, time, callback) {
|
msg.prototype.error = function (msg, time, callback) {
|
||||||
this.close();
|
this.close();
|
||||||
@ -137,10 +143,10 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 状态消息提示
|
* 状态消息提示
|
||||||
* @param {type} msg
|
* @param msg 消息内容
|
||||||
* @param {type} time
|
* @param time 显示时间s
|
||||||
* @param {type} callback
|
* @param callback 回调函数
|
||||||
* @returns {unresolved}
|
* @return {common_L11._msg|*}
|
||||||
*/
|
*/
|
||||||
msg.prototype.tips = function (msg, time, callback) {
|
msg.prototype.tips = function (msg, time, callback) {
|
||||||
this.close();
|
this.close();
|
||||||
@ -154,8 +160,9 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 显示正在加载中的提示
|
* 显示正在加载中的提示
|
||||||
* @param {type} msg 提示内容
|
* @param msg 提示内容
|
||||||
* @param {type} callback 回调方法
|
* @param callback 回调方法
|
||||||
|
* @return {common_L11._msg|*}
|
||||||
*/
|
*/
|
||||||
msg.prototype.loading = function (msg, callback) {
|
msg.prototype.loading = function (msg, callback) {
|
||||||
this.close();
|
this.close();
|
||||||
@ -166,14 +173,21 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 自动处理显示Think返回的Json数据
|
* 自动处理显示Think返回的Json数据
|
||||||
* @param {type} data JSON数据对象
|
* @param data JSON数据对象
|
||||||
* @param {type} time 延迟关闭时间
|
* @param time 延迟关闭时间
|
||||||
|
* @return {common_L11._msg|*}
|
||||||
*/
|
*/
|
||||||
msg.prototype.auto = function (data, time) {
|
msg.prototype.auto = function (data, time) {
|
||||||
var self = this;
|
var self = this;
|
||||||
if (parseInt(data.code) === 1) {
|
if (parseInt(data.code) === 1) {
|
||||||
return self.success(data.msg, time, function () {
|
return self.success(data.msg, time, function () {
|
||||||
!!data.url ? (window.location.href = data.url) : $.form.reload();
|
!!data.url ? (window.location.href = data.url) : $.form.reload();
|
||||||
|
if (self.autoSuccessCloseIndexs && self.autoSuccessCloseIndexs.length > 0) {
|
||||||
|
for (var i in self.autoSuccessCloseIndexs) {
|
||||||
|
layer.close(self.autoSuccessCloseIndexs[i]);
|
||||||
|
}
|
||||||
|
self.autoSuccessCloseIndexs = [];
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
self.error(data.msg, 3, function () {
|
self.error(data.msg, 3, function () {
|
||||||
@ -181,6 +195,15 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* auto处理成功的自动关闭
|
||||||
|
* @param index
|
||||||
|
*/
|
||||||
|
msg.prototype.addAutoSuccessCloseIndex = function (index) {
|
||||||
|
this.autoSuccessCloseIndexs = this.autoSuccessCloseIndexs || [];
|
||||||
|
this.autoSuccessCloseIndexs.push(index);
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将消息对象挂载到Jq
|
* 将消息对象挂载到Jq
|
||||||
*/
|
*/
|
||||||
@ -193,7 +216,6 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
*/
|
*/
|
||||||
function _form() {
|
function _form() {
|
||||||
this.version = '2.0';
|
this.version = '2.0';
|
||||||
this._model = null;
|
|
||||||
this.errMsg = '{status}服务器繁忙,请稍候再试!';
|
this.errMsg = '{status}服务器繁忙,请稍候再试!';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -320,13 +342,15 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
content: res,
|
content: res,
|
||||||
title: title || '',
|
title: title || '',
|
||||||
success: function (dom, index) {
|
success: function (dom, index) {
|
||||||
|
// 此窗口完成时需要自动关闭
|
||||||
|
$.msg.addAutoSuccessCloseIndex(index);
|
||||||
var $container = $(dom);
|
var $container = $(dom);
|
||||||
/* 处理样式及返回按钮事件 */
|
/* 处理样式及返回按钮事件 */
|
||||||
$container.find('[data-close]').off('click').on('click', function () {
|
$container.find('[data-close]').off('click').on('click', function () {
|
||||||
if ($(this).attr('data-confirm')) {
|
if ($(this).attr('data-confirm')) {
|
||||||
$.msg.confirm($(this).attr('data-confirm'), function () {
|
$.msg.confirm($(this).attr('data-confirm'), function () {
|
||||||
layer.close(index);
|
layer.close(index);
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
layer.close(index);
|
layer.close(index);
|
||||||
}
|
}
|
||||||
@ -353,8 +377,8 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 打开一个iframe窗口
|
* 打开一个iframe窗口
|
||||||
* @param url
|
* @param url iframe打开的URL地址
|
||||||
* @param title
|
* @param title 窗口标题
|
||||||
*/
|
*/
|
||||||
_form.prototype.iframe = function (url, title) {
|
_form.prototype.iframe = function (url, title) {
|
||||||
return layer.open({
|
return layer.open({
|
||||||
|
@ -203,11 +203,6 @@ td .text-explode:first-child{opacity:0;display:none}
|
|||||||
.ibox-footer{color:inherit;border-top:1px solid #e7eaec;font-size:90%;background:#ffffff;padding:10px 15px}
|
.ibox-footer{color:inherit;border-top:1px solid #e7eaec;font-size:90%;background:#ffffff;padding:10px 15px}
|
||||||
.ibox-title h5{display:inline-block;font-size:16px;margin:16px 0px;font-weight:500;text-indent:8px;text-overflow:ellipsis;border-left:2px solid #88B7E0}
|
.ibox-title h5{display:inline-block;font-size:16px;margin:16px 0px;font-weight:500;text-indent:8px;text-overflow:ellipsis;border-left:2px solid #88B7E0}
|
||||||
|
|
||||||
/** 分页样式 */
|
|
||||||
.pagination > li > a{background-color:#FFFFFF !important;border:1px solid #DDDDDD !important;color:inherit !important;float:left;line-height:1.42857;margin-left:-1px;padding:4px 10px;position:relative;text-decoration:none}
|
|
||||||
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover,
|
|
||||||
.pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover{background-color:#f4f4f4 !important;color:inherit !important;border-color:#DDDDDD !important;cursor:default;z-index:2}
|
|
||||||
|
|
||||||
/** 页面加载进度 */
|
/** 页面加载进度 */
|
||||||
.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
|
.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
|
||||||
.pace-inactive{display:none}
|
.pace-inactive{display:none}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user