修改菜单支持

This commit is contained in:
Anyon 2020-11-05 18:57:19 +08:00
parent 03d88048bc
commit 30be074f7d
2 changed files with 7 additions and 3 deletions

View File

@ -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']));
} }

View File

@ -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 事件行为 */