feat(client): 授权管理拆四卡,首月特惠默认选中,关于页备案号加链接

- 授权管理面板拆四张卡:授权到期时间 / 在线购买续费 / 兑换券 / 到期降级规则;
  非管理员在购买卡位显示「联系管理员 + 查看套餐价格」引导
- 购买卡套餐 tab 首月特惠放第一位并默认选中;已享受过特惠则默认高级版年付
- 关于页页脚备案号可点击跳转工信部备案查询

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JJ1g8XV1YhhmHRzhwWEW7o
This commit is contained in:
wangjia
2026-07-03 23:46:40 +08:00
parent 2a5fea2647
commit c3455ce7a7
3 changed files with 124 additions and 116 deletions
+15 -3
View File
@@ -60,9 +60,21 @@ class _AboutScreenState extends ConsumerState<AboutScreen> {
// 页脚
Padding(
padding: const EdgeInsets.only(top: 4, bottom: 12),
child: Text('© 2026 岩美科技 · 保留所有权利 · 京ICP备2026039814号',
textAlign: TextAlign.center,
style: TextStyle(fontSize: AppDims.fsXs, color: t.faint)),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('© 2026 岩美科技 · 保留所有权利 · ',
style: TextStyle(
fontSize: AppDims.fsXs, color: t.faint)),
InkWell(
onTap: () =>
launchUrl(Uri.parse('https://beian.miit.gov.cn')),
child: Text('京ICP备2026039814号',
style: TextStyle(
fontSize: AppDims.fsXs, color: t.faint)),
),
],
),
),
],
),