fix(about): 更新公司简介及相关显示内容

- 将公司名称由“玉林市玉州区鑫龙家电经营部”更新为“鑫龙商贸电器”
- 修改头部品牌显示文字对应新公司名称
- 更新公司简介内容,体现新的品牌及业务范围
- 更改底部版权信息,匹配新公司名称
This commit is contained in:
2026-07-14 23:02:12 +08:00
parent 4c059522a2
commit dc123d79a2
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
- 修改 `src/pages/user/about/index.tsx`:根据截图将“广西金炜建设工程有限公司”的简介更新为“玉林市玉州区鑫龙家电经营部”相关内容,包括头部品牌、公司简介、核心业务、联系信息及版权。
- 修改 `src/pages/user/about/index.tsx`:根据截图将“广西金炜建设工程有限公司”的简介更新为“鑫龙商贸电器”相关内容,包括头部品牌、公司简介、核心业务、联系信息及版权。
## 门店中心功能实现

View File

@@ -13,7 +13,7 @@ const AboutPage: React.FC = () => {
<View className='w-20 h-20 rounded-2xl bg-gradient-to-br from-blue-400 to-blue-600 flex items-center justify-center shadow-lg mb-4'>
<Text className='text-white text-4xl font-bold'></Text>
</View>
<Text className='text-xl font-bold text-gray-800'></Text>
<Text className='text-xl font-bold text-gray-800'></Text>
<Text className='text-sm text-gray-400 mt-1'> v1.0.0</Text>
</View>
@@ -21,7 +21,7 @@ const AboutPage: React.FC = () => {
<View className='bg-white mx-3 mt-3 rounded-xl p-4' style={{ boxShadow: '0 2px 8px rgba(0,0,0,0.04)' }}>
<Text className='text-base font-medium text-gray-800 mb-3 block'></Text>
<Text className='text-sm text-gray-600 leading-relaxed'>
</Text>
@@ -75,7 +75,7 @@ const AboutPage: React.FC = () => {
{/* 底部版权 */}
<View className='flex flex-col items-center py-8'>
<Text className='text-xs text-gray-400'>Copyright © 2024 </Text>
<Text className='text-xs text-gray-400'>Copyright © 2024 </Text>
<Text className='text-xs text-gray-400 mt-1'>All Rights Reserved</Text>
</View>
</ScrollView>