{{ myServers.length }}
我的服务器
{{ (userInfo.balance || 0) | yuan }}
账户余额
{{ myOrders.filter(o=>o.status==='pending').length }}
待处理订单
{{ myServers.filter(s=>s.status==='running').length }}
运行中
我的服务器
{{ s.name || '服务器 #'+s.id }} {{ s.ip_address || '' }}
{{ {running:'运行中',stopped:'已停止',pending:'待开通'}[s.status] || s.status }}
{{ s.cpu }}核
{{ s.memory }}GB
{{ s.disk }}GB
到期: {{ s.expired_at ? dayjs(s.expired_at).format('YYYY-MM-DD') : '永久' }}
暂无服务器
我的订单
全部
待支付
已完成
| 订单号 | 产品 | 金额 | 状态 | 时间 |
|---|---|---|---|---|
| {{ o.order_no || '#'+o.id }} | {{ o.product_name || '-' }} | ¥{{ o.total_amount }} | {{ {paid:'已支付',pending:'待支付',cancelled:'已取消',refunded:'已退款'}[o.status] || o.status }} | {{ dayjs(o.created_at).format('MM-DD HH:mm') }} |
暂无订单