7cd53ac420
图标/界面优化(问题1): - new MobileIcon.vue: 统一 SVG 图标组件(40+ 图标,2px 描边风,currentColor) - 重画占位图 default-avatar.svg / game-placeholder.svg(去 emoji,纯描边) - 替换全部 emoji 为 SVG:登录品牌🎮、组队🔊、事件🕐📍、胜出🏆、人气🔥、 邀请🔗🎮、状态切换⚫🟢🔴 等 - 重做底部 Tab 栏:van-icon 默认 → 自定义 SVG(激活态主色高亮) - 顶部栏 bell、群组详情快捷入口(账本/资产/黑名单)换 SVG - mobile.css 全局体验增强:按钮按压反馈、空状态、骨架屏工具类、 页面淡入动画、Toast 刘海屏适配、滚动条隐藏、省略号工具类 组队解散功能(问题2): - ActivityFeedMobile 补结束/解散按钮(招募中→解散,游戏中→结束游戏) - 调用 teamStore.finishGame(),带确认弹窗 - 与 PC 端 TeamSessionPanel 行为一致(session 存在且招募/游戏中时群组成员可操作) build verified: vue-tsc + vite build pass
12 lines
547 B
XML
12 lines
547 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
|
|
<defs>
|
|
<linearGradient id="avBg" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0%" stop-color="#ecfdf5"/>
|
|
<stop offset="100%" stop-color="#d1fae5"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect fill="url(#avBg)" width="64" height="64" rx="32"/>
|
|
<circle cx="32" cy="25" r="10" fill="none" stroke="#059669" stroke-width="2.5"/>
|
|
<path d="M14 54c0-9 8-15 18-15s18 6 18 15" fill="none" stroke="#059669" stroke-width="2.5" stroke-linecap="round"/>
|
|
</svg>
|