mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改菜单支持
This commit is contained in:
parent
03d88048bc
commit
30be074f7d
@ -56,8 +56,8 @@ class Menu extends Controller
|
|||||||
protected function _index_page_filter(array &$data)
|
protected function _index_page_filter(array &$data)
|
||||||
{
|
{
|
||||||
foreach ($data as &$vo) {
|
foreach ($data as &$vo) {
|
||||||
if ($vo['url'] !== '#') {
|
if ($vo['url'] !== '#' && !preg_match('#^https?://#', $vo['url'])) {
|
||||||
$vo['url'] = trim(url($vo['url'])->build() . (empty($vo['params']) ? '' : "?{$vo['params']}"), '/\\');
|
$vo['url'] = trim(url($vo['url']) . ($vo['params'] ? "?{$vo['params']}" : ''), '\\/');
|
||||||
}
|
}
|
||||||
$vo['ids'] = join(',', DataExtend::getArrSubIds($data, $vo['id']));
|
$vo['ids'] = join(',', DataExtend::getArrSubIds($data, $vo['id']));
|
||||||
}
|
}
|
||||||
|
@ -627,7 +627,11 @@ $(function () {
|
|||||||
|
|
||||||
/*! 注册 data-open 事件行为 */
|
/*! 注册 data-open 事件行为 */
|
||||||
$body.on('click', '[data-open]', function () {
|
$body.on('click', '[data-open]', function () {
|
||||||
$.form.href(this.dataset.open, this);
|
if (this.dataset.open.match(/^https?:/)) {
|
||||||
|
location.href = this.dataset.open;
|
||||||
|
} else {
|
||||||
|
$.form.href(this.dataset.open, this);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/*! 注册 data-dbclick 事件行为 */
|
/*! 注册 data-dbclick 事件行为 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user