'店铺主页', ]; return $from === true ? $desc : ($desc[$from] ?? ''); } static function getTerminal($from = true) { $desc = [ self::TERMINAL_MOBILE => '移动端', self::TERMINAL_PC => 'PC端', ]; return $from === true ? $desc : ($desc[$from] ?? ''); } static function getLinkPage(): array { return [ // [ // 'name' => '店铺信息', // 'list' => [ // [ // 'name' => '店铺页面', // 'type' => 'shop', // ], // ], // ], [ 'name' => '商品信息', 'list' => [ [ 'name' => '商品列表', 'type' => 'goods', ], // [ // 'name' => '商品分类', // 'type' => 'goods_category', // ], ], ], ]; } static function getShopLinkPaths(): array { return [ [ 'name' => '店铺首页', 'path' => '/pages/store_index/store_index', ], [ 'name' => '店铺信息', 'path' => '/pages/store_detail/store_detail', ], ]; } static function getShopGoodsListPath(): string { return '/pages/goods_details/goods_details'; } static function getShopGoodsCategoryPath(): string { return '/pages/store_index/store_index'; } }