'#5b69bc', static::Success => '#21b978', 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::Success->value => '成功', static::Refused->value => '拒绝', ]; } }