12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019-07-10
- * Time: 11:22
- */
- return [
- [
- 'name' => 'management',
- 'title' => '商家',
- 'children' => [
- [
- 'name' => 'index',
- 'title' => '首页',
- 'children' => [
- [
- 'name' => 'statistics-shop',
- 'title' => '统计',
- ],
- ],
- ],
- [
- 'name' => 'product',
- 'title' => '商品',
- 'children' => [
- [
- 'name' =>'product-exchangeProduct',
- 'title' => '兑换商品',
- ],
- [
- 'name' =>'product-exchangeCode',
- 'title' => '兑换码',
- ],
- [
- 'name' => 'product-product',
- 'title' => '商品管理',
- ],
- [
- 'name' => 'product-comment',
- 'title' => '评价管理',
- ],
- [
- 'name' => 'product-trash',
- 'title' => '回收站',
- ],
- ],
- ],
- [
- 'name' => 'order',
- 'title' => '订单',
- 'children' => [
- [
- 'name' => 'order-order',
- 'title' => '订单管理',
- ],
- ],
- ],
- ],
- ]
- ];
|