| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <template>
- <!-- 我的 -->
- <div class="user-index">
- <!-- 导航栏 -->
- <div class="content">
- <div class="user-card">
- <!-- 左侧信息保持不变 -->
- <div class="card-left">
- <div class="avatar-box">
- <img :src="userInfo.avatar" alt="Avatar" class="avatar-img" />
- </div>
- <div class="info-box">
- <div class="name-row">
- <span class="user-name">{{ userInfo.nickname }}</span>
- <span class="vip-badge">{{ userInfo.level }}</span>
- </div>
- <div class="user-id">ID: {{ userInfo.id }}</div>
- </div>
- </div>
- <!-- 右侧:动态信用分仪表盘 -->
- <div class="card-right">
- <div class="score-chart">
- <svg viewBox="0 0 100 100" class="chart-svg">
- <!--
- 第一层:灰色底轨 (Background Segments)
- 遍历配置生成4段灰色轨迹,作为槽位
- -->
- <circle
- v-for="(item, index) in backgroundSegments"
- :key="`bg-${index}`"
- cx="50" cy="50" :r="radius"
- fill="none"
- stroke="#E5E9F2"
- stroke-width="6"
- :stroke-dasharray="item.dashArray"
- stroke-linecap="round"
- :transform="item.transform"
- />
- <!--
- 第二层:彩色进度 (Progress Segments)
- 根据分数覆盖在底轨之上
- -->
- <circle
- v-for="(item, index) in progressSegments"
- :key="`prog-${index}`"
- cx="50" cy="50" :r="radius"
- fill="none"
- :stroke="item.color"
- stroke-width="6"
- :stroke-dasharray="item.dashArray"
- stroke-linecap="round"
- :transform="item.transform"
- />
- </svg>
- <!-- 环内文字 -->
- <div class="score-text">
- <div class="score-num">{{ creditScore }}</div>
- <div class="score-label">信用分</div>
- </div>
- </div>
- </div>
- </div>
- <!-- 调试滑块 (实际使用可删除) -->
- <!-- <div class="debug-slider">-->
- <!-- <div class="slider-header">-->
- <!-- <span>当前分数: {{ creditScore }}</span>-->
- <!-- <span style="font-size:12px; color:#999">拖动查看未填满时的灰色效果</span>-->
- <!-- </div>-->
- <!-- <input type="range" min="0" max="100" v-model.number="creditScore" class="custom-range" />-->
- <!-- </div>-->
- </div>
- <!-- <div class="loan-info">-->
- <!-- <div class="info-left">-->
- <!-- <img src="../../assets/img/index/user/default-head.png" alt="" />-->
- <!-- <div class="info-name" @click="deleteAccount">-->
- <!-- <div class="name-area pf500 fs18 fc121212">-->
- <!-- 用户昵称-->
- <!-- <div class="level pf500 fs12 fcDF384C" @click.stop="router.push({name: 'VipCenter'})">V2</div>-->
- <!-- </div>-->
- <!-- <div class="pf400 fs14 fc6A7187" >ID: 658908</div>-->
- <!-- </div>-->
- <!-- </div>-->
- <!-- <div class="info-right"></div>-->
- <!-- </div>-->
- <!-- <div style="width: 375px; b"></div>-->
- <img src="@/assets/icon/user/yaoqi.svg" class="invite-friend" alt="" @click="router.push('/invite')"/>
- <div class="user-func">
- <div
- class="func-item"
- v-for="(item, index) in userMenu"
- :key="index"
- @click="goMenuRouter(index, item)">
- <div class="item-left pf500 fs14 fc333333">
- <div class="left-img">
- <img :src="item.img" class="anquan-set" alt="" />
- </div>
- {{ item.name }}
- </div>
- <img src="../../assets/icon/user/right-arrow.svg" class="right-arrow" alt="" />
- </div>
- </div>
- <div class="submit pf600 fs14 fcFFFFFF" @click="out=true">退出</div>
- </div>
- <logout v-model:visible="out"></logout>
- </template>
- <script setup>
- import logout from '@/views/user/Logout.vue'
- import { ref, computed } from 'vue';
- import { useRoute, useRouter } from "vue-router";
- const router = useRouter();
- const out = ref(false);
- const userInfo = ref({
- nickname: '用户昵称',
- id: '658908',
- level: 'V2',
- avatar: 'https://api.dicebear.com/7.x/avataaars/svg?seed=Felix'
- });
- // --- 核心配置 ---
- const creditScore = ref(90); // 当前分数
- const maxScore = 100; // 满分
- const radius = 42;
- const circumference = 2 * Math.PI * radius; // 周长 ≈ 263.89
- // 修改 1: 起始角度改为 -90 度 (从顶部正中间开始,顺时针绘制)
- const startAngle = -270;
- const gapLength = 10; // 每一段之间的间隙 (像素)
- // 修改 2: 总有效长度改为完整圆周长 (不再乘 0.75,变成闭合圆环)
- const totalArcLength = circumference;
- // 颜色段配置 (总分需等于100)
- // 这里的顺序决定了圆环颜色的排列顺序
- const configSegments = [
- { max: 50, color: '#2B6BFF' }, // 蓝色
- { max: 20, color: '#FF4D6A' }, // 红色
- { max: 15, color: '#FFAA00' }, // 黄色
- { max: 15, color: '#00C087' }, // 绿色
- ];
- // --- 辅助函数:计算一段圆弧的几何信息 ---
- const calculateSegmentGeometry = (segmentMaxScore, currentStartAngle) => {
- // 1. 计算这一段理论上应该占多长 (像素)
- const ratio = segmentMaxScore / maxScore;
- let arcLength = ratio * totalArcLength;
- // 2. 减去间隙 (视觉上扣除,防止连在一起)
- // 实际绘制长度不能小于0
- const drawLength = Math.max(0, arcLength - gapLength);
- // 3. 计算这一段占用的角度 (包含被扣除的间隙,用于计算下一段的起点)
- const angleSpan = (arcLength / circumference) * 360;
- return { drawLength, angleSpan };
- };
- // --- 计算属性 1: 底轨片段 (灰色) ---
- const backgroundSegments = computed(() => {
- let currentAngle = startAngle;
- return configSegments.map(seg => {
- const { drawLength, angleSpan } = calculateSegmentGeometry(seg.max, currentAngle);
- const result = {
- dashArray: `${drawLength}, ${circumference}`,
- transform: `rotate(${currentAngle}, 50, 50)`
- };
- currentAngle += angleSpan; // 移动到下一段起点
- return result;
- });
- });
- // --- 计算属性 2: 进度片段 (彩色) ---
- const progressSegments = computed(() => {
- let currentAngle = startAngle;
- let remainingScore = creditScore.value;
- return configSegments.map(seg => {
- const { drawLength, angleSpan } = calculateSegmentGeometry(seg.max, currentAngle);
- // 计算这一段应该填满多少
- let fillRatio = 0;
- if (remainingScore >= seg.max) {
- fillRatio = 1; // 填满
- } else if (remainingScore > 0) {
- fillRatio = remainingScore / seg.max; // 填一部分
- } else {
- fillRatio = 0; // 不填
- }
- const currentDrawLength = drawLength * fillRatio;
- const result = {
- color: seg.color,
- dashArray: `${currentDrawLength}, ${circumference}`,
- transform: `rotate(${currentAngle}, 50, 50)`
- };
- currentAngle += angleSpan;
- remainingScore -= seg.max;
- return result;
- });
- });
- // const deleteAccount = () => {
- // router.push("/deleteAccount");
- // };
- const goMenuRouter = (index, item) => {
- if (index == 1) {
- router.push("/userLoanIndex");
- } else if (index == 4) {
- router.push("/userAsset");
- }else if (index === 2) {
- router.push({ name: 'AdvancedCertification' });
- }else if (index === 3) {
- router.push({ name: 'KycForm' });
- }else if (index === 5) {
- router.push({ name: 'LanguageSwitch' });
- }else if (index === 7) {
- router.push({ name: 'HelpCenter' });
- }else if (index === 8) {
- router.push({ name: 'AboutUs' });
- }else if (index === 0) {
- router.push({ name: 'SecuritySettings' });
- }
- };
- const userMenu = [
- {
- name: "安全设置",
- img: require("@/assets/icon/user/anquan-set.svg"),
- },
- {
- name: "我的贷款",
- img: require("@/assets/icon/user/my-loan.svg"),
- },
- {
- name: "高级认证",
- img: require("@/assets/icon/user/certification.svg"),
- },
- {
- name: "KYC认证",
- img: require("@/assets/icon/user/key-certification.svg"),
- },
- {
- name: "我的资产",
- img: require("@/assets/icon/user/my-money.svg"),
- },
- {
- name: "切换语言",
- img: require("@/assets/icon/user/language.svg"),
- },
- {
- name: "联系客服",
- img: require("@/assets/icon/user/customer-service.svg"),
- },
- {
- name: "帮助中心",
- img: require("@/assets/icon/user/help-center.svg"),
- },
- {
- name: "关于我们",
- img: require("@/assets/icon/user/about-we.svg"),
- },
- ];
- </script>
- <style lang="less" scoped>
- .user-index {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 100px;
- width: 100%;
- .margin-top16 {
- margin-top: 16px;
- }
- .margin-top28 {
- margin-top: 28px;
- }
- .loan-info {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-top: 20px;
- width: calc(349px - 22px);
- height: 90px;
- .info-left {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- height: 56px;
- img {
- width: 56px;
- height: 56px;
- }
- .info-name {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- margin-left: 16px;
- height: 56px;
- .name-area {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .level {
- margin-left: 5px;
- width: 20px;
- height: 18px;
- line-height: 15px;
- text-align: center;
- border-radius: 3px;
- background: #df384c1a;
- }
- }
- }
- }
- .info-right {
- width: 90px;
- height: 90px;
- background: pink;
- }
- }
- .invite-friend {
- margin: 0 auto;
- //margin-top: 20px;
- width: 360px ;
- height: 68px;
- padding-left: 15px;
- }
- .user-func {
- width: 340px;
- .func-item {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-top: 26.5px;
- width: 355px;
- height: 24px;
- &:first-child {
- margin-top: 18px;
- }
- .item-left {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- height: 24px;
- .left-img {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- width: 24px;
- height: 24px;
- }
- .anquan-set {
- margin-right: 8px;
- }
- }
- .right-arrow {
- width: 7px;
- height: 15px;
- }
- }
- }
- .submit {
- margin-top: 43px;
- width: 311px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- border-radius: 100px;
- background: #df384c;
- letter-spacing: 0.2px;
- }
- }
- //xin
- .nav-bar {
- display: flex; justify-content: space-between; align-items: center;
- height: 44px; padding: 0 16px; background: #fff;
- position: sticky; top: 0; z-index: 10;
- width: 100%;
- .icon1{ padding-left: 15px;}
- }
- .nav-title { font-size: 18px; font-weight: 500; color: #333; }
- .nav-left, .nav-right { width: 40px; }
- .content { width:100%;padding: 15px; }
- .user-card {
- background: #fff; border-radius: 16px; padding: 0px 0 0 15px;
- display: flex; justify-content: space-between; align-items: center;
- //box-shadow: 0 4px 12px rgba(0,0,0,0.03);
- }
- .card-left { display: flex; align-items: center; }
- .avatar-box {
- width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
- background: #E0E6ED; margin-right: 12px; border: 1px solid #f0f0f0;
- }
- .avatar-img { width: 100%; height: 100%; object-fit: cover; }
- .info-box { display: flex; flex-direction: column; justify-content: center; }
- .name-row { display: flex; align-items: center; margin-bottom: 6px; }
- .user-name { font-size: 18px; font-weight: 600; color: #1A1A1A; margin-right: 8px; }
- .vip-badge {
- background-color: #FDEEEE; color: #E02F44; font-size: 10px; font-weight: 700;
- padding: 1px 5px; border-radius: 4px; line-height: 1.4; font-style: italic;
- }
- .user-id { font-size: 14px; color: #858B9C; }
- .card-right { position: relative; }
- .score-chart {
- width: 90px; height: 90px; position: relative;
- display: flex; align-items: center; justify-content: center;
- }
- .chart-svg {
- width: 100%; height: 100%;
- transform: rotate(0deg);
- }
- .score-text {
- position: absolute; text-align: center;
- top: 50%; left: 50%;
- transform: translate(-50%, -50%);
- }
- .score-num {
- font-size: 22px; font-weight: 700; color: #1A1A1A; line-height: 1; margin-bottom: 2px;
- }
- .score-label {
- font-size: 10px; color: #858B9C; transform: scale(0.9);
- }
- /* 调试滑块样式 */
- .debug-slider {
- margin-top: 20px; padding: 15px; background: #fff; border-radius: 12px;
- }
- .slider-header {
- display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: #333;
- }
- .custom-range {
- width: 100%; accent-color: #2B6BFF;
- }
- </style>
|