|
|
|
|
<template>
|
|
|
|
|
<view class="universe-page">
|
|
|
|
|
<view class="top-safe" :style="{ height: menuButtonInfo.top + 'px' }"></view>
|
|
|
|
|
<view class="nav">
|
|
|
|
|
<view class="back" @tap="back">‹</view>
|
|
|
|
|
<view class="nav-title">我的宇宙</view>
|
|
|
|
|
<view class="ghost"></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="profile">
|
|
|
|
|
<image class="orb-img" v-if="profile.avatarUrl" :src="profile.avatarUrl" mode="aspectFill"></image>
|
|
|
|
|
<view class="orb" v-else>{{ profile.avatarText || '我' }}</view>
|
|
|
|
|
<view class="name">{{ profile.anonymousName || '半匿名漂流者' }}</view>
|
|
|
|
|
<view class="desc">{{ profile.intro || '不经营人设,不展示粉丝。这里只记录你更喜欢怎样被陪伴。' }}</view>
|
|
|
|
|
<view class="edit-profile" @tap="editProfile">编辑资料</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="stats">
|
|
|
|
|
<view><text>{{ profile.dailyQuota || 3 }}</text><text>今日机会</text></view>
|
|
|
|
|
<view><text>长期</text><text>聊天保留</text></view>
|
|
|
|
|
<view><text>{{ profile.currentMode || 'i' }}</text><text>当前状态</text></view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="tag-panel" v-if="profile.interestTags && profile.interestTags.length">
|
|
|
|
|
<view class="tag" v-for="item in profile.interestTags" :key="item">{{ item }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="panel">
|
|
|
|
|
<view class="panel-title">情绪轨道</view>
|
|
|
|
|
<view class="orbit-row" v-for="item in orbit" :key="item.day">
|
|
|
|
|
<view class="day">{{ item.day }}</view>
|
|
|
|
|
<view class="bar"><view :style="{ width: item.value + '%' }"></view></view>
|
|
|
|
|
<view class="mood">{{ item.mood }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="panel">
|
|
|
|
|
<view class="setting" @tap="goSettings">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="setting-title">隐私与安全</view>
|
|
|
|
|
<view class="setting-desc">黑名单、举报记录、半匿名规则</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="arrow">›</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { getIeProfile } from '@/common/ieApi.js'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
menuButtonInfo: { top: 44 },
|
|
|
|
|
profile: {},
|
|
|
|
|
orbit: [
|
|
|
|
|
{ day: '今天', value: 72, mood: '轻了一点' },
|
|
|
|
|
{ day: '昨天', value: 48, mood: '安静' },
|
|
|
|
|
{ day: '周六', value: 86, mood: '被听见' }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
if (uni.getMenuButtonBoundingClientRect) this.menuButtonInfo = uni.getMenuButtonBoundingClientRect()
|
|
|
|
|
this.loadProfile()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
async loadProfile() {
|
|
|
|
|
const profile = await getIeProfile()
|
|
|
|
|
if (profile) this.profile = profile
|
|
|
|
|
},
|
|
|
|
|
back() { uni.redirectTo({ url: '/package1/ieBrowser/index' }) },
|
|
|
|
|
editProfile() { uni.navigateTo({ url: '/package1/ieBrowser/profileSetup?edit=1' }) },
|
|
|
|
|
goSettings() { uni.navigateTo({ url: '/package1/ieBrowser/settings' }) }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
page { background: #f7f9ff; }
|
|
|
|
|
.universe-page { min-height: 100vh; padding: 0 32rpx 60rpx; box-sizing: border-box; color: #161b2e; background: radial-gradient(circle at 50% 12%, rgba(169,255,231,.42), transparent 330rpx), radial-gradient(circle at 86% 28%, rgba(255,184,209,.24), transparent 320rpx), linear-gradient(180deg, #fbfdff, #eef4ff 62%, #fff4e8); }
|
|
|
|
|
.nav { height: 90rpx; display: flex; align-items: center; }
|
|
|
|
|
.back, .ghost { width: 70rpx; font-size: 56rpx; color: rgba(22,27,46,.55); }
|
|
|
|
|
.nav-title { flex: 1; text-align: center; font-size: 30rpx; font-weight: 800; }
|
|
|
|
|
.profile { padding-top: 18rpx; text-align: center; }
|
|
|
|
|
.orb,
|
|
|
|
|
.orb-img { width: 148rpx; height: 148rpx; margin: 0 auto; border-radius: 50%; box-shadow: 0 0 80rpx rgba(169,255,231,.18); }
|
|
|
|
|
.orb { text-align: center; line-height: 148rpx; color: #11162a; background: linear-gradient(145deg, #effffb, #a9ffe7); font-size: 48rpx; font-weight: 800; }
|
|
|
|
|
.name { margin-top: 26rpx; font-size: 42rpx; font-weight: 800; }
|
|
|
|
|
.desc { width: 560rpx; margin: 14rpx auto 0; color: rgba(22,27,46,.52); font-size: 24rpx; line-height: 38rpx; }
|
|
|
|
|
.edit-profile { display: inline-block; margin-top: 22rpx; padding: 12rpx 28rpx; border-radius: 999rpx; color: #11162a; background: #a9ffe7; font-size: 23rpx; font-weight: 800; }
|
|
|
|
|
.stats { display: flex; margin-top: 36rpx; padding: 28rpx; border-radius: 36rpx; background: rgba(255,255,255,.62); border: 1rpx solid rgba(255,255,255,.78); box-shadow: 0 20rpx 64rpx rgba(96,112,160,.12); }
|
|
|
|
|
.stats view { flex: 1; text-align: center; }
|
|
|
|
|
.stats text { display: block; }
|
|
|
|
|
.stats text:first-child { font-size: 34rpx; font-weight: 800; }
|
|
|
|
|
.stats text:last-child { margin-top: 8rpx; color: rgba(22,27,46,.42); font-size: 21rpx; }
|
|
|
|
|
.tag-panel { display: flex; flex-wrap: wrap; margin-top: 24rpx; padding: 24rpx; border-radius: 32rpx; background: rgba(255,255,255,.58); border: 1rpx solid rgba(255,255,255,.78); }
|
|
|
|
|
.tag { margin: 0 12rpx 12rpx 0; padding: 10rpx 18rpx; border-radius: 999rpx; color: #6c69d8; background: rgba(139,124,255,.1); font-size: 22rpx; }
|
|
|
|
|
.panel { margin-top: 26rpx; padding: 30rpx; border-radius: 36rpx; background: rgba(255,255,255,.62); border: 1rpx solid rgba(255,255,255,.78); backdrop-filter: blur(24rpx); box-shadow: 0 20rpx 64rpx rgba(96,112,160,.12); }
|
|
|
|
|
.panel-title { margin-bottom: 24rpx; font-size: 30rpx; font-weight: 800; }
|
|
|
|
|
.orbit-row { display: flex; align-items: center; margin-top: 22rpx; }
|
|
|
|
|
.day { width: 86rpx; color: rgba(22,27,46,.52); font-size: 22rpx; }
|
|
|
|
|
.bar { flex: 1; height: 12rpx; border-radius: 999rpx; background: rgba(22,27,46,.06); overflow: hidden; }
|
|
|
|
|
.bar view { height: 100%; border-radius: 999rpx; background: #a9ffe7; }
|
|
|
|
|
.mood { width: 120rpx; text-align: right; color: #6c69d8; font-size: 22rpx; }
|
|
|
|
|
.setting { display: flex; align-items: center; }
|
|
|
|
|
.setting-title { font-size: 28rpx; font-weight: 800; }
|
|
|
|
|
.setting-desc { margin-top: 8rpx; color: rgba(22,27,46,.48); font-size: 22rpx; }
|
|
|
|
|
.arrow { flex: 1; text-align: right; color: rgba(22,27,46,.4); font-size: 46rpx; }
|
|
|
|
|
</style>
|