33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 平台端菜单设置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
[
|
|
'name' => 'MESSAGE_CENTER',
|
|
'title' => '消息中心',
|
|
'url' => 'message://shop/message/index',
|
|
'parent' => 'CHANNEL_ROOT',
|
|
'is_show' => 1,
|
|
'sort' => 1,
|
|
'picture' => 'addon/message/shop/view/public/img/message_new.png', // 图标
|
|
'picture_selected' => 'addon/message/shop/view/public/img/message_select.png', // 选中图标
|
|
'child_list' => [
|
|
[
|
|
'name' => 'MESSAGE_HOME',
|
|
'title' => '消息中心',
|
|
'url' => 'message://shop/message/index',
|
|
'is_show' => 1,
|
|
'sort' => 1,
|
|
],
|
|
[
|
|
'name' => 'MESSAGE_REMARKS',
|
|
'title' => '留言管理',
|
|
'url' => 'message://shop/remark/index',
|
|
'is_show' => 1,
|
|
'sort' => 2,
|
|
]
|
|
]
|
|
],
|
|
];
|