style(user): 美化个人中心页面顶部绿色系风格

- 将顶部渐变背景由紫粉色改为绿色系,增强视觉统一性
- 用户信息卡片背景调整为毛玻璃效果,提升质感与层次感
- 用户名、ID及箭头等文字颜色改为白色及半透明白色,增强对比度
- 数据概览从三列扩展为四列,新增余额栏目,文字统一为白色
- VIP标识渐变色由粉红色改为金色,突显尊贵感
- 增加第三个装饰圆形,调整装饰元素大小和位置,更加协调
- 注释并暂时移除门店列表和其他页面中的“立即预约”按钮相关代码,避免用户误操作
- 修正首页门店信息跳转路径,指向正确页面
This commit is contained in:
2026-06-23 17:34:21 +08:00
parent 66491b1853
commit 6c22856b69
5 changed files with 90 additions and 54 deletions

View File

@@ -318,15 +318,15 @@ const StoreListPage: React.FC = () => {
>
<Text className='text-xs text-gray-500'>🗺 </Text>
</View>
<View
className='flex-1 py-2 rounded-lg text-center'
style={{ background: selectMode ? '#0e932e' : '#fff7ed', border: selectMode ? 'none' : '1px solid #fed7aa' }}
onClick={() => handleBooking(store)}
>
<Text className={`text-xs ${selectMode ? 'text-white' : 'text-orange-500'}`}>
{selectMode ? '✓ 选择' : '📅 立即预约'}
</Text>
</View>
{/*<View*/}
{/* className='flex-1 py-2 rounded-lg text-center'*/}
{/* style={{ background: selectMode ? '#0e932e' : '#fff7ed', border: selectMode ? 'none' : '1px solid #fed7aa' }}*/}
{/* onClick={() => handleBooking(store)}*/}
{/*>*/}
{/* <Text className={`text-xs ${selectMode ? 'text-white' : 'text-orange-500'}`}>*/}
{/* {selectMode ? '✓ 选择' : '📅 立即预约'}*/}
{/* </Text>*/}
{/*</View>*/}
</View>
</View>
))}