截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ShopEnum.php 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\enum;
  20. class ShopEnum
  21. {
  22. /**
  23. * 审核状态
  24. */
  25. const AUDIT_STATUS_STAY = 1; //待审核
  26. const AUDIT_STATUS_OK = 2; //审核通过
  27. const AUDIT_STATUS_REFUSE = 3; //审核拒绝
  28. /**
  29. * 商家类型
  30. */
  31. const SHOP_TYPE_SELF = 1; //官方自营
  32. const SHOP_TYPE_IN = 2; //入驻商家
  33. /**
  34. * 营业状态
  35. */
  36. const SHOP_RUN_CLOSE = 0; //暂停营业
  37. const SHOP_RUN_OPEN = 1; //营业中
  38. /**
  39. * 冻结状态
  40. */
  41. const SHOP_FREEZE_NORMAL = 0; //正常
  42. const SHOP_FREEZE_BAN = 1; //冻结
  43. /**
  44. * 产品审核
  45. */
  46. const PRODUCT_AUDIT_FALSE = 0; //关闭
  47. const PRODUCT_AUDIT_TRUE = 1; //开启
  48. /**
  49. * 店铺推荐
  50. */
  51. const SHOP_RECOMMEND_FALSE = 0; //不推荐
  52. const SHOP_RECOMMEND_TRUE = 1; //推荐
  53. /**
  54. * 商家默认logo、背景图、PC端店铺封面、PC端店铺头图
  55. */
  56. const DEFAULT_LOGO = '/static/common/image/default/shop_default_logo.png';
  57. const DEFAULT_BG = '/static/common/image/default/shop_default_bg.jpg';
  58. const DEFAULT_COVER = '/static/common/image/default/shop_default_cover.png';
  59. const DEFAULT_BANNER = '/static/common/image/default/shop_default_banner.jpg';
  60. /**
  61. * 背景图、PC端店铺封面、PC端店铺头图的示例图片
  62. */
  63. const DOME_BG = '/static/common/image/default/shop_demo_background.png';
  64. const DOME_COVER = '/static/common/image/default/shop_demo_cover.png';
  65. const DOME_BANNER = '/static/common/image/default/shop_demo_banner.png';
  66. /**
  67. * 发票开关
  68. * INVOICE_CLOSE-关闭
  69. * INVOICE_OPEN- 开启
  70. */
  71. const INVOICE_CLOSE = 0;
  72. const INVOICE_OPEN = 1;
  73. /**
  74. * 发票是否支持专票
  75. * SPEC_INVOICE_NOT - 不支持
  76. * SPEC_INVOICE_SUPPORT - 不支持
  77. */
  78. const SPEC_INVOICE_UNABLE = 0;
  79. const SPEC_INVOICE_ABLE = 1;
  80. /**
  81. * 商家支持的配送方式
  82. * DELIVERY_EXPRESS = 快递发货
  83. * DELIVERY_VIRTUAL = 线下自提
  84. */
  85. const DELIVERY_EXPRESS = 1;
  86. const DELIVERY_SELF = 2;
  87. /**
  88. * NOTE: 审核状态
  89. * @author: 张无忌
  90. * @param bool $form
  91. * @return array|mixed|string
  92. */
  93. public static function getAuditStatusDesc($form = true){
  94. $desc = [
  95. self::AUDIT_STATUS_STAY => '待审核',
  96. self::AUDIT_STATUS_OK => '审核通过',
  97. self::AUDIT_STATUS_REFUSE => '审核拒绝'
  98. ];
  99. if(true === $form){
  100. return $desc;
  101. }
  102. return $desc[$form] ?? '';
  103. }
  104. /**
  105. * NOTE: 商家类型
  106. * @author: 张无忌
  107. * @param bool $form
  108. * @return array|mixed|string
  109. *
  110. */
  111. public static function getShopTypeDesc($form = true){
  112. $desc = [
  113. self::SHOP_TYPE_SELF => '官方自营',
  114. self::SHOP_TYPE_IN => '入驻商家',
  115. ];
  116. if(true === $form){
  117. return $desc;
  118. }
  119. return $desc[$form] ?? '';
  120. }
  121. /**
  122. * NOTE: 营业状态
  123. * @author: 张无忌
  124. * @param bool $form
  125. * @return array|mixed|string
  126. */
  127. public static function getShopIsRunDesc($form = true)
  128. {
  129. $desc = [
  130. self::SHOP_RUN_CLOSE => '暂停营业',
  131. self::SHOP_RUN_OPEN => '营业中',
  132. ];
  133. if(true === $form){
  134. return $desc;
  135. }
  136. return $desc[$form] ?? '';
  137. }
  138. /**
  139. * NOTE: 商家冻结状态
  140. * @author: 张无忌
  141. * @param bool $form
  142. * @return array|mixed|string
  143. */
  144. public static function getShopFreezeDesc($form = true) {
  145. $desc = [
  146. self::SHOP_FREEZE_NORMAL => '正常',
  147. self::SHOP_FREEZE_BAN => '冻结',
  148. ];
  149. if(true === $form){
  150. return $desc;
  151. }
  152. return $desc[$form] ?? '';
  153. }
  154. /**
  155. * NOTE: 商家推荐状态
  156. * @author: 张无忌
  157. * @param bool $form
  158. * @return array|mixed|string
  159. */
  160. public static function getShopIsRecommendDesc($form = true) {
  161. $desc = [
  162. self::SHOP_RECOMMEND_TRUE => '推荐',
  163. self::SHOP_RECOMMEND_FALSE => '不推荐',
  164. ];
  165. if(true === $form){
  166. return $desc;
  167. }
  168. return $desc[$form] ?? '';
  169. }
  170. /**
  171. * @notes 支持的配送方式
  172. * @param bool $form
  173. * @return string|string[]
  174. * @author 段誉
  175. * @date 2022/11/1 11:19
  176. */
  177. public static function getDeliveryTypeDesc($form = true)
  178. {
  179. $desc = [
  180. self::DELIVERY_EXPRESS => '快递发货',
  181. self::DELIVERY_SELF => '线下自提',
  182. ];
  183. if(true === $form){
  184. return $desc;
  185. }
  186. return $desc[$form] ?? '';
  187. }
  188. }