feat(home): 新增健康资讯模块(健康知识 + 健康咨询)

采用 HMAC-SHA256 签名认证获取 Token,通过栏目/文章 API 获取数据,
详情/更多/搜索均跳转 H5 页面。同时新增带下划线指示器的 Tab 样式。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
zhanglei
2026-06-29 16:47:46 +08:00
co-authored by Claude Opus 4.7
parent 4ff52c0465
commit f5be575491
25 changed files with 1169 additions and 5 deletions
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 选中状态-->
<item android:drawable="@drawable/bg_theme_background_shape3" android:state_checked="true"/>
<item android:drawable="@drawable/bg_theme_background_shape3" android:state_selected="true"/>
<!-- 默认状态-->
<item android:drawable="@color/colorWhite"/>
</selector>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="?attr/colorPrimary" />
<corners android:radius="3dp" />
</shape>