fix(mobile-app): 社区权益考核仅在有社区授权时显示
用户需要先通过自助申请获得社区授权,才会在'我的'页面显示社区权益考核 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
3f34b11181
commit
ddeb3f227a
|
|
@ -1822,9 +1822,11 @@ class _ProfilePageState extends ConsumerState<ProfilePage> {
|
|||
const SizedBox(height: 16),
|
||||
// 分享邀请按钮
|
||||
_buildShareButton(),
|
||||
const SizedBox(height: 16),
|
||||
// 社区权益考核
|
||||
_buildCommunityAssessment(),
|
||||
// 社区权益考核(仅在有社区授权时显示)
|
||||
if (_hasCommunityAuth) ...[
|
||||
const SizedBox(height: 16),
|
||||
_buildCommunityAssessment(),
|
||||
],
|
||||
// 市团队权益考核
|
||||
if (_hasAuthCityCompanyAuth) ...[
|
||||
const SizedBox(height: 16),
|
||||
|
|
|
|||
Loading…
Reference in New Issue