feat(customer): 添加客户详情和邀请好友功能

- 新增客户详情页面,包括公司信息、合同信息、企业信息和联系记录
- 添加邀请好友功能,包括二维码生成、邀请记录和统计图表
- 优化导航栏和首页网格组件,支持跳转到新页面- 调整 app.config.ts,添加新页面的路由配置
This commit is contained in:
2025-08-28 15:15:13 +08:00
parent 217bfacadd
commit 7834124095
21 changed files with 3311 additions and 20 deletions

View File

@@ -81,7 +81,7 @@ const SimpleQRCodeModal: React.FC<SimpleQRCodeModalProps> = ({
{qrContent ? (
<View className={'flex flex-col justify-center'}>
<img
src={`http://127.0.0.1:9200/api/qr-code/create-encrypted-qr-image?size=300x300&expireMinutes=60&businessType=gift&data=${encodeURIComponent(qrContent)}`}
src={`https://cms-api.websoft.top/api/qr-code/create-encrypted-qr-image?size=300x300&expireMinutes=60&businessType=gift&data=${encodeURIComponent(qrContent)}`}
alt="二维码"
style={{width: '200px', height: '200px'}}
className="mx-auto"