| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- // 前置仓账号菜单权限
- return [
- // [
- // 'key' => 'dashboard',
- // 'title' => '概况',
- // ],
- [
- 'key' => 'saasGoodsAgent',
- 'title' => '代理',
- 'children' => [
- [
- 'key' => 'saasGoodsAgentGoods',
- 'title' => '代理产品',
- ],
- [
- 'key' => 'saasGoodsAgentCommission',
- 'title' => '佣金列表',
- ],
- [
- 'key' => 'saasGoodsAgentSetting',
- 'title' => '申请设置',
- 'children' => [
- [
- 'key' => 'saasGoodsAgentSetting',
- 'title' => '申请代理产品',
- ]
- ]
- ],
- ],
- ],
- [
- 'key' => 'saasGoodsAgentOrder',
- 'title' => '订单',
- 'children' => [
- [
- 'key' => 'saasGoodsAgentOrder',
- 'title' => '代理订单',
- ],
- ],
- ],
- [
- 'key' => 'saasGoodsAgentFinance',
- 'title' => '财务',
- 'children' => [
- [
- 'key' => 'saasGoodsAgentFinance',
- 'title' => '收支明细',
- ],
- ],
- ],
- ];
|