feat: 更新应用版本和集成腾讯云 COS 上传功能

- 将应用版本更新至 1.0.2,修改相关配置文件
- 集成腾讯云 COS 上传功能,新增相关服务和钩子
- 更新 AI 体态评估页面,支持照片上传和评估结果展示
- 添加雷达图组件以展示评估结果
- 更新样式以适应新功能的展示和交互
- 修改登录页面背景效果,提升用户体验
This commit is contained in:
richarjiang
2025-08-13 15:21:54 +08:00
parent 5814044cee
commit 321947db98
20 changed files with 1664 additions and 342 deletions

View File

@@ -34,6 +34,52 @@ declare module 'react-native-svg' {
originY?: number;
}
export const G: React.ComponentType<React.PropsWithChildren<GProps>>;
export interface DefsProps { }
export const Defs: React.ComponentType<React.PropsWithChildren<DefsProps>>;
export interface LineProps extends CommonProps {
x1?: number | string;
y1?: number | string;
x2?: number | string;
y2?: number | string;
}
export const Line: React.ComponentType<LineProps>;
export interface LinearGradientProps {
id?: string;
x1?: number | string;
y1?: number | string;
x2?: number | string;
y2?: number | string;
}
export const LinearGradient: React.ComponentType<React.PropsWithChildren<LinearGradientProps>>;
export interface StopProps {
offset?: number | string;
stopColor?: string;
stopOpacity?: number;
}
export const Stop: React.ComponentType<StopProps>;
export interface PolygonProps extends CommonProps {
points?: string;
}
export const Polygon: React.ComponentType<PolygonProps>;
export interface PathProps extends CommonProps {
d?: string;
}
export const Path: React.ComponentType<PathProps>;
export interface TextProps extends CommonProps {
x?: number | string;
y?: number | string;
fontSize?: number | string;
fill?: string;
textAnchor?: 'start' | 'middle' | 'end';
}
export const Text: React.ComponentType<React.PropsWithChildren<TextProps>>;
}