advert.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /*
  3. * This file is part of ibrand/advert.
  4. *
  5. * (c) 果酱社区 <https://guojiang.club>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. return [
  11. 'models' => [
  12. 'goods' => GuoJiangClub\Component\Product\Models\Goods::class,
  13. 'discount' => GuoJiangClub\Component\Discount\Models\Discount::class,
  14. 'category' => GuoJiangClub\Component\Category\Category::class,
  15. 'microPage' => GuoJiangClub\Component\Advert\Models\MicroPage::class,
  16. 'groupon' => GuoJiangClub\Component\MultiGroupon\Models\MultiGroupon::class,
  17. 'seckillItem' => GuoJiangClub\Component\Seckill\Models\SeckillItem::class,
  18. 'brand' => GuoJiangClub\Component\Product\Brand::class,
  19. 'article' => GuoJiangClub\EC\Open\Backend\Store\Model\Article::class,
  20. ],
  21. 'type' => [
  22. 'store_detail' => [
  23. 'name' => '商品详情页',
  24. 'page' => '/pages/store/detail/detail?id=',
  25. ],
  26. 'store_list' => [
  27. 'name' => '商品分类页',
  28. 'page' => '/pages/store/list/list?c_id=',
  29. ],
  30. 'store_seckill' => [
  31. 'name' => '秒杀列表页',
  32. 'page' => '/pages/store/seckill/seckill',
  33. ],
  34. 'store_groups' => [
  35. 'name' => '拼团列表页',
  36. 'page' => '/pages/store/groups/groups',
  37. ],
  38. 'store_reduce' => [
  39. 'name' => '砍价列表页',
  40. 'page' => '/pages/bargain/index/index',
  41. ],
  42. 'other_micro' => [
  43. 'name' => '微页面',
  44. 'page' => '/pages/index/microPages/microPages?id=',
  45. ],
  46. 'other_links' => [
  47. 'name' => '公众号文章',
  48. 'page' => '/pages/other/links/links?url=',
  49. ],
  50. 'other' => [
  51. 'name' => '自定义',
  52. 'page' => 'other',
  53. ],
  54. 'brand_detail' => [
  55. 'name' => '品牌详情页',
  56. 'page' => '/pages/brand/detail/detail?id=',
  57. ],
  58. ],
  59. 'meta' => [
  60. '下边距' => [
  61. 'name' => 'margin_bottom',
  62. 'value' => 0,
  63. ],
  64. '左内距' => [
  65. 'name' => 'padding_left',
  66. 'value' => 0,
  67. ],
  68. '右内距' => [
  69. 'name' => 'padding_right',
  70. 'value' => 0,
  71. ],
  72. '下内距' => [
  73. 'name' => 'padding_bottom',
  74. 'value' => 0,
  75. ],
  76. '上内距' => [
  77. 'name' => 'padding_top',
  78. 'value' => 0,
  79. ],
  80. '背景色' => [
  81. 'name' => 'background_color',
  82. 'value' => '#FFFFFF',
  83. ],
  84. ],
  85. ];