'#5b69bc', static::Passed => '#dda451', static::Paying => '#3085d6', static::Success => '#21b978', static::Failed => '#ea5455', static::Refused => '#b3b9bf', }; } /** * @return string */ public function text(): string { return static::texts()[$this->value]; } /** * @return array */ public static function texts(): array { return [ static::Pending->value => '待处理', static::Passed->value => '待付款', static::Paying->value => '付款中', static::Success->value => '成功', static::Failed->value => '失败', static::Refused->value => '拒绝', ]; } }