jh-admin/addon/team/config/menu_shop.php

45 lines
1.3 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | 店铺端菜单设置
// +----------------------------------------------------------------------
return [
[
'name' => 'TEAM',
'title' => '团队奖励',
'url' => 'team://shop/index/index',
'parent' => 'PROMOTION_CENTER',
'is_show' => 1,
'sort' => 100,
'child_list' => [
[
'name' => 'TEAM_INDEX',
'title' => '成员列表',
'url' => 'team://shop/index/index',
'is_show' => 1,
'sort' => 1,
],
[
'name' => 'TEAM_LEVEL',
'title' => '等级管理',
'url' => 'team://shop/index/level',
'is_show' => 1,
'sort' => 2,
],
[
'name' => 'TEAM_COMMISSION',
'title' => '佣金明细',
'url' => 'team://shop/index/commissionIndex',
'is_show' => 1,
'sort' => 2,
],
[
'name' => 'TEAM_SET',
'title' => '基本设置',
'url' => 'team://shop/index/set',
'is_show' => 1,
'sort' => 3,
]
]
]
];