123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\enum;
-
- class ShopAdEnum
- {
-
- const TERMINAL_MOBILE = 1;
-
- const TERMINAL_PC = 2;
-
-
- const PLACE_SHOP_HOME = 1;
-
- static function getPlaceDesc($from = true)
- {
- $desc = [
- self::PLACE_SHOP_HOME => '店铺主页',
- ];
-
- 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' => 'goods',
- ],
-
-
-
-
- ],
- ],
- ];
- }
-
- 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';
- }
- }
|