'待平台审核', self::SYS_AUDIT_STATUS_WAIT_WECHAT => '待微信审核', self::SYS_AUDIT_STATUS_SUCCESS => '审核通过', self::SYS_AUDIT_STATUS_FAIL => '审核未通过', ]; if (true === $from) { return $desc; } return $desc[$from] ?? '未知'; } /** * @notes 价格类型 * @param bool $from * @return string|string[] * @author 段誉 * @date 2023/2/16 21:54 */ public static function getPriceTypeDesc($from = true) { $desc = [ self::PRICE_ONE => '一口价', self::PRICE_RANGE => '价格区间', self::PRICE_DISCOUNT => '显示价格', ]; if (true === $from) { return $desc; } return $desc[$from] ?? '未知'; } /** * @notes 商品来源类型描述 * @param bool $from * @return string|string[] * @author 段誉 * @date 2023/2/17 9:36 */ public static function getSourceTypeDesc($from = true) { $desc = [ self::SOURCE_TYPE_GOODS => '商品库', self::SOURCE_TYPE_SELF => '自定义', ]; if (true === $from) { return $desc; } return $desc[$from] ?? '未知'; } /** * @notes 微信审核状态 * @param bool $from * @return string|string[] * @author 段誉 * @date 2023/2/20 10:32 */ public static function getWxAuditStatusDesc($from = true) { $desc = [ self::WX_AUDIT_STATUS_WAIT => '微信未审核', self::WX_AUDIT_STATUS_ING => '微信审核中', self::WX_AUDIT_STATUS_SUCCESS => '微信审核通过', self::WX_AUDIT_STATUS_FAIL => '微信审核失败', ]; if (true === $from) { return $desc; } return $desc[$from] ?? ''; } }