user.vue 34.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
<template>
  <view class="page">
    <view class="header" :class="{ 'header--sk': pageLoading }">
      <image class="header-bg" :src="userHeaderBg" mode="aspectFill" />
      <view class="header-mask" />
      <view :style="{ paddingTop: statusBarHeight + 'px' }" class="header-body">
        <view class="settings-tr" :style="settingsTrackStyle">
          <view class="settings-btn" @click="onSettingsTap">
            <image
              class="settings-ico-img"
              :src="settingsIcon"
              mode="aspectFit"
            />
          </view>
        </view>
        <view v-if="pageLoading" class="header-skeleton">
          <view class="user-sk-avatar user-sk-breathe" />
          <view class="user-sk-stats">
            <view class="user-sk-stat-col">
              <view class="user-sk-stat-num user-sk-breathe" />
              <view class="user-sk-stat-lb user-sk-breathe user-sk-breathe--d1" />
            </view>
            <view class="user-sk-stats-div" />
            <view class="user-sk-stat-col">
              <view class="user-sk-stat-num user-sk-breathe user-sk-breathe--d1" />
              <view class="user-sk-stat-lb user-sk-breathe user-sk-breathe--d2" />
            </view>
          </view>
        </view>
        <template v-else>
          <view class="profile" @click="goUserProfile">
            <view class="big-avatar">
              <image
                v-if="profileAvatarSrc && !avatarLoadFailed"
                class="big-avatar-img"
                :src="profileAvatarSrc"
                mode="aspectFill"
                @error="onProfileAvatarError"
              />
              <text v-else class="big-av-txt">{{
                profileAvatarLetter(profile.nickname)
              }}</text>
            </view>
            <text class="nickname">{{ profile.nickname || "用户" }}</text>
            <text class="bio">{{ profile.bio || "完善资料,让更多人认识你" }}</text>
          </view>
          <view class="stats-card">
            <view class="stat">
              <text class="stat-num">{{ userStats.photos }}</text>
              <text class="stat-label">作品</text>
            </view>
            <view class="stat-div" />
            <view class="stat">
              <text class="stat-num">{{ userStats.likes }}</text>
              <text class="stat-label">获赞</text>
            </view>
          </view>
        </template>
      </view>
      <view class="wave-fake" />
    </view>

    <view class="sheet">
      <view v-if="pageLoading" class="sheet-skeleton">
        <view class="user-sk-tabs">
          <view class="user-sk-tab user-sk-tab--on user-sk-breathe" />
          <view class="user-sk-tab user-sk-breathe user-sk-breathe--d1" />
        </view>
        <view class="user-sk-panel-hd">
          <view class="user-sk-ph-title user-sk-breathe" />
          <view class="user-sk-ph-more user-sk-breathe user-sk-breathe--d1" />
        </view>
        <view class="user-sk-grid">
          <view
            v-for="n in 4"
            :key="'usk' + n"
            class="user-sk-thumb-wrap"
          >
            <view
              class="user-sk-thumb-inner user-sk-breathe"
              :class="'user-sk-breathe--d' + (n % 3)"
            />
          </view>
        </view>
        <view class="user-sk-menu">
          <view v-for="n in 3" :key="'um' + n" class="user-sk-menu-row">
            <view class="user-sk-menu-ico user-sk-breathe" />
            <view class="user-sk-menu-lines">
              <view class="user-sk-menu-line user-sk-breathe user-sk-breathe--d1" />
            <view
              v-if="n <= 2"
              class="user-sk-menu-line user-sk-menu-line--sub user-sk-breathe user-sk-breathe--d2"
            />
            </view>
            <view class="user-sk-menu-tag user-sk-breathe" />
          </view>
        </view>
      </view>
      <template v-else>
      <view class="tabs">
        <view
          :class="['tab', activeTab === 'photos' ? 'tab-on' : '']"
          @click="activeTab = 'photos'"
        >
          <text>我的作品</text>
        </view>
        <view
          :class="['tab', activeTab === 'certificates' ? 'tab-on' : '']"
          @click="activeTab = 'certificates'"
        >
          <text>电子证书</text>
        </view>
      </view>

      <view v-if="activeTab === 'photos'" class="panel">
        <view class="panel-hd">
          <text class="panel-title">我的作品</text>
          <text class="panel-more" @click="goMyWorksList">查看更多 →</text>
        </view>
        <view class="grid-4">
          <view
            v-for="p in userPhotos"
            :key="p.id"
            class="thumb"
            @click="openUserWork(p.id)"
          >
            <image class="thumb-img" :src="p.url" mode="aspectFill" />
            <view class="thumb-badge">
              <text
                :class="[
                  'badge',
                  p.status === 'approved'
                    ? 'badge-ok'
                    : p.status === 'rejected'
                      ? 'badge-reject'
                      : 'badge-wait',
                ]"
                >{{ workStatusShort(p.status) }}</text
              >
            </view>
            <view v-if="p.status === 'approved'" class="thumb-likes">
              <view class="thumb-likes-inner">
                <image
                  class="thumb-cang"
                  :src="p.likes > 0 ? likeOnIcon : likeOffIcon"
                  mode="aspectFit"
                />
                <text class="thumb-likes-txt">{{ p.likes }}</text>
              </view>
            </view>
          </view>
        </view>
      </view>

      <view v-else class="panel">
        <view
          v-for="c in certificates"
          :key="c.id"
          class="cert-row"
        >
          <view class="cert-icon">
            <text class="cert-star">★</text>
          </view>
          <view class="cert-mid">
            <text class="cert-name">{{ c.name }}</text>
            <text class="cert-meta">{{ c.date }} · {{ c.size }}</text>
          </view>
          <text class="cert-arrow">›</text>
        </view>
      </view>

      <view class="menu">
        <view class="menu-row" @click="handleCertificateDownload">
          <view class="menu-ico-wrap menu-ico-blue">
            <image class="menu-down-ico" :src="down1Icon" mode="aspectFit" />
          </view>
          <view class="menu-txt-wrap">
            <text class="menu-txt">下载证书</text>
            <text v-if="!certificateUnlocked" class="menu-sub"
              >需10张作品+100赞</text
            >
          </view>
          <text
            :class="[
              'menu-tag',
              certificateUnlocked ? 'menu-tag-ok' : 'menu-tag-off',
            ]"
            >{{ certificateUnlocked ? "已达成" : "未解锁" }}</text
          >
        </view>

        <view class="menu-row" @click="handleGuideDownload">
          <view class="menu-ico-wrap menu-ico-green">
            <image class="menu-down-ico" :src="down2Icon" mode="aspectFit" />
          </view>
          <view class="menu-txt-wrap">
            <text class="menu-txt">下载攻略</text>
            <text v-if="!guideUnlocked" class="menu-sub">需5张作品</text>
          </view>
          <text
            :class="['menu-tag', guideUnlocked ? 'menu-tag-green' : 'menu-tag-off']"
            >{{ guideUnlocked ? "已达成" : "未解锁" }}</text
          >
        </view>

        <view class="menu-row menu-row-last" @click="goUserProfile">
          <view class="menu-ico-wrap menu-ico-green">
            <image
              class="menu-down-ico"
              :src="profileIcon"
              mode="aspectFit"
            />
          </view>
          <view class="menu-txt-wrap">
            <text class="menu-txt">我的资料</text>
          </view>
          <text class="cert-arrow">›</text>
        </view>
      </view>
      </template>
    </view>

    <ImageTabBar current="user" />

    <view v-if="showCertificateDialog" class="modal-mask" @click="showCertificateDialog = false">
      <view class="modal-box" @click.stop>
        <view class="cert-modal-inner">
          <image
            class="cert-bg"
            :src="certificateDialogSrc"
            mode="widthFix"
          />
          <view class="cert-dl-wrap">
            <view class="cert-dl" @click="handleDownloadCertificate">
              <image class="cert-dl-ico" :src="down1Icon" mode="aspectFit" />
              <text>下载证书</text>
            </view>
          </view>
        </view>
      </view>
    </view>

    <view v-if="showGuideDialog" class="modal-mask" @click="showGuideDialog = false">
      <view class="modal-box modal-guide" @click.stop>
        <image
          class="guide-img"
          :src="guideDialogSrc"
          mode="widthFix"
        />
        <view class="guide-bar">
          <view class="guide-dl" @click="handleDownloadGuideFile">
            <image class="guide-dl-ico" :src="down2Icon" mode="aspectFit" />
            <text>下载攻略</text>
          </view>
        </view>
      </view>
    </view>
    <!-- #ifdef MP-WEIXIN -->
    <canvas
      canvas-id="certificateCanvas"
      id="certificateCanvas"
      class="cert-hidden-canvas"
      :style="{ width: certCanvasW + 'px', height: certCanvasH + 'px' }"
    />
    <!-- #endif -->
  </view>
</template>

<script setup lang="ts">
import { computed, getCurrentInstance, nextTick, onMounted, ref, watch } from "vue";
import { onShow } from "@dcloudio/uni-app";
import ImageTabBar from "@/components/ImageTabBar.vue";
import { useHideNativeTabBar } from "@/composables/useHideNativeTabBar";
import { localGalleryByIndex } from "@/utils/localGalleryImages";
import { staticAsset } from "@/utils/staticAsset";
import {
  loadUserProfile,
  profileAvatarLetter,
  saveUserProfile,
  type UserProfile,
} from "@/utils/userProfileStorage";
import { apiEnabled } from "@/config/api";
import {
  get,
  getMpToken,
  clearMpSession,
  isMpSessionExpiredError,
} from "@/utils/api/http";
import { ensureMpSession, getMpLoginChannel } from "@/utils/api/mpSession";
import { reLaunchLoginIfNoBoundPhone, redirectToProfileSetupIfNeeded } from "@/utils/guestTabGuard";
import { resolveMediaUrl } from "@/utils/mediaUrl";

const statusBarHeight = ref(20);
const settingsRightSafePx = ref(16);
const settingsTopExtraPx = ref(0);
const apiOn = apiEnabled();


const emptyProfileWhileLoading: UserProfile = {
  nickname: "",
  bio: "",
  avatarUrl: "",
  gender: "secret",
  phone: "",
};

/** 接接口:首屏不展示演示用作品与统计,等请求结束 */
const pageLoading = ref(apiOn);
const profile = ref<UserProfile>(
  apiOn ? { ...emptyProfileWhileLoading } : loadUserProfile()
);
/** 服务端头像多为 /uploads/...,需拼 API 根地址才能显示 */
const profileAvatarSrc = computed(() =>
  resolveMediaUrl(profile.value.avatarUrl.trim())
);
/** 头像 URL 无效或网络失败时回退为昵称首字 */
const avatarLoadFailed = ref(false);
watch(profileAvatarSrc, () => {
  avatarLoadFailed.value = false;
});
function onProfileAvatarError() {
  avatarLoadFailed.value = true;
}
const activeTab = ref<"photos" | "certificates">("photos");
const showCertificateDialog = ref(false);
const showGuideDialog = ref(false);
const userHeaderBg = staticAsset("user-center-header.png");
const settingsIcon = staticAsset("set.png");
const likeOnIcon = staticAsset("cang_on.png");
const likeOffIcon = staticAsset("cang.png");
const down1Icon = staticAsset("down_1.png");
const down2Icon = staticAsset("down_2.png");
const profileIcon = staticAsset("zl.png");
const certificateTemplateUrl = ref(staticAsset("certificate-dialog-bg.png"));
const guideTemplateUrl = ref(staticAsset("daocheng-yading-map.png"));
const vueInstance = getCurrentInstance()?.proxy ?? null;
const certCanvasW = ref(1200);
const certCanvasH = ref(800);

const certificateDialogSrc = computed(() => resolveMediaUrl(certificateTemplateUrl.value));
const guideDialogSrc = computed(() => resolveMediaUrl(guideTemplateUrl.value));

const userStats = ref(
  apiOn ? { photos: 0, likes: 0 } : { photos: 12, likes: 458 }
);

const userPhotos = ref<
  Array<{
    id: number;
    url: string;
    status: "approved" | "pending" | "rejected";
    likes: number;
  }>
>(
  apiOn
    ? []
    : [
        { id: 1, url: localGalleryByIndex(1), status: "approved", likes: 156 },
        { id: 2, url: localGalleryByIndex(2), status: "pending", likes: 0 },
        { id: 3, url: localGalleryByIndex(3), status: "approved", likes: 89 },
        { id: 4, url: localGalleryByIndex(4), status: "approved", likes: 203 },
      ]
);

const certificates = [
  { id: 1, name: "稻城摄影大赛证书.pdf", date: "2026-03-15", size: "2.3 MB" },
  { id: 2, name: "亚丁风光奖状.pdf", date: "2026-02-20", size: "1.8 MB" },
];

const certificateUnlocked = computed(
  () => userStats.value.photos >= 10 && userStats.value.likes >= 100
);
const guideUnlocked = computed(() => userStats.value.photos >= 5);

useHideNativeTabBar();

/** 与当前 token 一致且已成功拉过「我的」数据时,再次进入 tab 不铺满骨架屏,仅静默刷新 */
let lastSuccessMpTokenForMe = "";

onMounted(() => {
  statusBarHeight.value = uni.getSystemInfoSync().statusBarHeight || 20;
  // #ifdef MP-WEIXIN
  const info = uni.getSystemInfoSync();
  const cap = uni.getMenuButtonBoundingClientRect?.();
  if (cap && info?.screenWidth) {
    const rightNeed = Math.max(0, info.screenWidth - cap.left + 8);
    settingsRightSafePx.value = rightNeed;
    settingsTopExtraPx.value = Math.max(0, cap.top - statusBarHeight.value);
  }
  // #endif
});

const settingsTrackStyle = computed(() => ({
  paddingRight: `${settingsRightSafePx.value}px`,
  paddingTop: `${settingsTopExtraPx.value}px`,
}));

async function loadUserFromApi() {
  if (!apiEnabled()) {
    pageLoading.value = false;
    return;
  }
  const token = getMpToken();
  const showFullSkeleton = !token || token !== lastSuccessMpTokenForMe;
  if (showFullSkeleton) {
    pageLoading.value = true;
  }
  try {
    // #ifndef MP-WEIXIN
    await ensureMpSession();
    // #endif
    const [st, works, prof, assetsRes] = await Promise.all([
      get<{ photos: number; likes: number }>("/api/v1/me/stats"),
      get<{
        list: Array<{
          id: number;
          imageUrl: string;
          status: string;
          likes: number;
        }>;
      }>("/api/v1/me/works"),
      get<{
        nickname: string;
        avatarUrl: string;
        bio: string;
        gender: number;
        phone?: string;
      }>("/api/v1/me/profile"),
      get<{ certificate: string; guide: string }>("/api/v1/download-assets"),
    ]);
    userStats.value = {
      photos: st.data.photos,
      likes: st.data.likes,
    };
    userPhotos.value = works.data.list.slice(0, 4).map((w) => {
      const st = w.status === "approved" ? "approved" : w.status === "rejected" ? "rejected" : "pending";
      return {
        id: w.id,
        url: resolveMediaUrl(w.imageUrl),
        status: st,
        likes: w.likes,
      };
    });
    const serverAvatar =
      typeof prof.data.avatarUrl === "string"
        ? prof.data.avatarUrl.trim()
        : "";
    profile.value = {
      ...profile.value,
      nickname: String(prof.data.nickname || "").trim(),
      avatarUrl: serverAvatar || profile.value.avatarUrl,
      bio: prof.data.bio ?? profile.value.bio,
      gender:
        prof.data.gender === 1
          ? "male"
          : prof.data.gender === 2
            ? "female"
            : "secret",
      phone:
        typeof prof.data.phone === "string"
          ? prof.data.phone.trim()
          : profile.value.phone,
    };
    const certRaw = String(assetsRes?.data?.certificate ?? "").trim();
    const guideRaw = String(assetsRes?.data?.guide ?? "").trim();
    certificateTemplateUrl.value = certRaw || staticAsset("certificate-dialog-bg.png");
    guideTemplateUrl.value = guideRaw || staticAsset("daocheng-yading-map.png");
    saveUserProfile(profile.value);
    lastSuccessMpTokenForMe = getMpToken();
  } catch (e) {
    if (isMpSessionExpiredError(e)) {
      return;
    }
    userStats.value = { photos: 0, likes: 0 };
    userPhotos.value = [];
    profile.value = loadUserProfile();
    const msg =
      e && typeof e === "object" && "msg" in e && typeof (e as { msg: string }).msg === "string"
        ? (e as { msg: string }).msg
        : "加载失败,请稍后重试";
    uni.showToast({
      title: msg.length > 20 ? msg.slice(0, 20) + "…" : msg,
      icon: "none",
    });
  } finally {
    pageLoading.value = false;
    if (!getMpToken()) {
      lastSuccessMpTokenForMe = "";
    }
  }
}

onShow(() => {
  // #ifdef MP-WEIXIN
  if (apiEnabled() && (!getMpToken() || getMpLoginChannel() !== "weixin")) {
    uni.reLaunch({ url: "/pages/login/login?tab=user" });
    return;
  }
  // #endif
  // #ifndef MP-WEIXIN
  void (async () => {
    if (apiEnabled() && !getMpToken()) {
      try {
        await ensureMpSession();
      } catch {
        /* ignore */
      }
    }
  })();
  // #endif
  if (reLaunchLoginIfNoBoundPhone()) {
    return;
  }
  if (redirectToProfileSetupIfNeeded()) {
    return;
  }
  profile.value = loadUserProfile();
  void loadUserFromApi();
});

function onSettingsTap() {
  if (!apiEnabled()) {
    uni.showToast({ title: "离线演示模式", icon: "none" });
    return;
  }
  uni.showActionSheet({
    itemList: ["退出登录"],
    success(res) {
      if (res.tapIndex === 0) {
        lastSuccessMpTokenForMe = "";
        clearMpSession();
        uni.reLaunch({ url: "/pages/login/login" });
      }
    },
  });
}

function workStatusShort(s: "approved" | "pending" | "rejected"): string {
  if (s === "approved") return "已通过";
  if (s === "rejected") return "未通过";
  return "审核中";
}

function openUserWork(id: number) {
  uni.navigateTo({ url: `/pages/photo-detail/photo-detail?id=${id}` });
}

function goMyWorksList() {
  uni.navigateTo({ url: "/pages/my-works/my-works" });
}

function goUserProfile() {
  uni.navigateTo({ url: "/pages/user-profile/user-profile" });
}

function handleCertificateDownload() {
  if (certificateUnlocked.value) showCertificateDialog.value = true;
  else {
    uni.showModal({
      title: "提示",
      content: `需要上传${10 - userStats.value.photos}张作品,获得${100 - userStats.value.likes}个赞才能解锁证书下载`,
      showCancel: false,
    });
  }
}

function handleGuideDownload() {
  if (guideUnlocked.value) showGuideDialog.value = true;
  else {
    uni.showModal({
      title: "提示",
      content: `需要上传${5 - userStats.value.photos}张作品才能解锁攻略下载`,
      showCancel: false,
    });
  }
}

function handleDownloadCertificate() {
  void downloadCertificateImage();
}

function handleDownloadGuideFile() {
  void downloadGuideImage();
}

function unlockDateYmd(): string {
  const d = new Date();
  const y = d.getFullYear();
  const m = `${d.getMonth() + 1}`.padStart(2, "0");
  const day = `${d.getDate()}`.padStart(2, "0");
  return `${y}-${m}-${day}`;
}

function downloadFileToTemp(url: string): Promise<string> {
  return new Promise((resolve, reject) => {
    uni.downloadFile({
      url,
      success: (res) => {
        if (res.statusCode === 200 && res.tempFilePath) {
          resolve(res.tempFilePath);
          return;
        }
        reject(new Error("下载失败"));
      },
      fail: () => reject(new Error("下载失败")),
    });
  });
}

function saveImageToAlbum(tempFilePath: string): Promise<void> {
  return new Promise((resolve, reject) => {
    uni.saveImageToPhotosAlbum({
      filePath: tempFilePath,
      success: () => resolve(),
      fail: (e) => reject(e),
    });
  });
}

function getImageInfo(src: string): Promise<{ width: number; height: number; path: string }> {
  return new Promise((resolve, reject) => {
    uni.getImageInfo({
      src,
      success: (r) => resolve({ width: r.width, height: r.height, path: r.path }),
      fail: () => reject(new Error("读取图片失败")),
    });
  });
}

function renderCertificateWithText(src: string, username: string, dateYmd: string): Promise<string> {
  return new Promise(async (resolve, reject) => {
    try {
      const info = await getImageInfo(src);
      const canvasW = Math.max(600, info.width);
      const canvasH = Math.max(800, info.height);
      certCanvasW.value = canvasW;
      certCanvasH.value = canvasH;
      await nextTick();
      const ctx = uni.createCanvasContext("certificateCanvas", vueInstance);
      ctx.clearRect(0, 0, canvasW, canvasH);
      ctx.drawImage(info.path, 0, 0, canvasW, canvasH);

      const name = username.trim() || "用户";
      const dateLine = dateYmd;

      // 按模板固定锚点写字:用户名位于「特此授予:」后,日期位于「颁发日期:」后
      const nameSize = Math.max(30, Math.round(canvasW * 0.036));
      const dateSize = Math.max(26, Math.round(canvasW * 0.030));
      // 基于标注图校准:用户名与日期分属两行红框
      // 用户名:特此授予后方
      const nameX = Math.round(canvasW * 0.266);
      const nameY = Math.round(canvasH * 0.224);
      // 日期:颁发日期后方
      const dateX = Math.round(canvasW * 0.73);
      const dateY = Math.round(canvasH * 0.334);

      ctx.setTextAlign("left");
      ctx.setFillStyle("#374151");
      ctx.setFontSize(nameSize);
      ctx.fillText(name, nameX, nameY);
      ctx.setFillStyle("#4b5563");
      ctx.setFontSize(dateSize);
      ctx.fillText(dateLine, dateX, dateY);
      ctx.draw(false, () => {
        setTimeout(() => {
          uni.canvasToTempFilePath(
            {
              canvasId: "certificateCanvas",
              width: canvasW,
              height: canvasH,
              destWidth: canvasW,
              destHeight: canvasH,
              fileType: "jpg",
              quality: 0.95,
              success: (res) => resolve(res.tempFilePath),
              fail: () => reject(new Error("导出证书失败")),
            },
            vueInstance
          );
        }, 80);
      });
    } catch (e) {
      reject(e);
    }
  });
}

async function downloadCertificateImage() {
  try {
    uni.showLoading({ title: "生成证书中" });
    const srcUrl = certificateDialogSrc.value;
    if (!srcUrl) {
      throw new Error("证书模板未配置");
    }
    const temp = await downloadFileToTemp(srcUrl);
    const withText = await renderCertificateWithText(temp, profile.value.nickname || "用户", unlockDateYmd());
    await saveImageToAlbum(withText);
    uni.hideLoading();
    uni.showToast({ title: "证书已保存到相册", icon: "success" });
    showCertificateDialog.value = false;
  } catch (e) {
    uni.hideLoading();
    const msg = e instanceof Error ? e.message : "证书下载失败";
    uni.showToast({ title: msg, icon: "none" });
  }
}

async function downloadGuideImage() {
  try {
    uni.showLoading({ title: "下载中" });
    const srcUrl = guideDialogSrc.value;
    if (!srcUrl) {
      throw new Error("攻略图片未配置");
    }
    const temp = await downloadFileToTemp(srcUrl);
    await saveImageToAlbum(temp);
    uni.hideLoading();
    uni.showToast({ title: "攻略已保存到相册", icon: "success" });
    showGuideDialog.value = false;
  } catch (e) {
    uni.hideLoading();
    const msg = e instanceof Error ? e.message : "攻略下载失败";
    uni.showToast({ title: msg, icon: "none" });
  }
}

</script>

<style scoped>
.page {
  min-height: 100vh;
  padding-bottom: calc(100rpx + env(safe-area-inset-bottom));
  background: #f9fafb;
}

.header {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48rpx 48rpx;
}

/* 骨架屏:多露出一段头图区域,避免加载态头图偏矮 */
.header--sk {
  padding-bottom: 96rpx;
}

.header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.header-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}

.header-body {
  position: relative;
  padding: 24rpx 48rpx 48rpx;
}

.settings-tr {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32rpx;
}

.settings-btn {
  display: flex;
  width: 80rpx;
  height: 80rpx;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.settings-ico-img {
  width: 40rpx;
  height: 40rpx;
}

/* ---------- 骨架屏(对齐真实 profile / stats / sheet 结构) ---------- */
.header-skeleton {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0;
  /* 与 .profile 一致:整块居中 */
  text-align: center;
  /* 相对设置行略上移,避免加载态留白过大 */
  margin-top: -20rpx;
}

.user-sk-avatar {
  flex-shrink: 0;
  width: 192rpx;
  height: 192rpx;
  margin-bottom: 32rpx;
  border: 8rpx solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
}

.user-sk-stats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 28rpx 28rpx;
  margin: 0 -12rpx;
  border-radius: 32rpx;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16rpx 48rpx rgba(0, 0, 0, 0.12);
}

.user-sk-stat-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10rpx;
}

.user-sk-stat-num {
  width: 56rpx;
  height: 44rpx;
  border-radius: 10rpx;
  background: #e2e8f0;
}

.user-sk-stat-lb {
  width: 64rpx;
  height: 22rpx;
  border-radius: 6rpx;
  background: #eceff3;
}

.user-sk-stats-div {
  flex-shrink: 0;
  width: 1rpx;
  margin: 8rpx 0;
  background: #e5e7eb;
  align-self: stretch;
  min-height: 56rpx;
}

.sheet-skeleton {
  padding-bottom: 32rpx;
}

.user-sk-tabs {
  display: grid;
  margin-bottom: 32rpx;
  padding: 8rpx;
  border-radius: 24rpx;
  background: #fff;
  box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
  gap: 8rpx;
  grid-template-columns: 1fr 1fr;
}

/* 左格模拟 .tab-on,右格模拟 .tab-off */
.user-sk-tab {
  min-height: 68rpx;
  border-radius: 20rpx;
  background: #f3f4f6;
}

.user-sk-tab--on {
  background: #e8ecf0;
}

.user-sk-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24rpx;
  min-height: 44rpx;
}

.user-sk-ph-title {
  width: 168rpx;
  height: 32rpx;
  border-radius: 8rpx;
  background: #e2e8f0;
}

.user-sk-ph-more {
  width: 148rpx;
  height: 28rpx;
  border-radius: 8rpx;
  background: #e8ecf0;
}

.user-sk-grid {
  display: grid;
  margin-bottom: 32rpx;
  gap: 16rpx;
  grid-template-columns: repeat(4, 1fr);
}

.user-sk-thumb-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 24rpx;
  background: #f3f4f6;
}

.user-sk-thumb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24rpx;
  background: linear-gradient(
    145deg,
    #e8ecf0 0%,
    #dce2ea 48%,
    #e8ecf0 100%
  );
}

.user-sk-menu {
  overflow: hidden;
  margin-bottom: 48rpx;
  border-radius: 24rpx;
  background: #fff;
  box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
}

.user-sk-menu-row {
  display: flex;
  align-items: center;
  padding: 40rpx 32rpx;
  border-bottom: 1rpx solid #f3f4f6;
  gap: 28rpx;
}

.user-sk-menu-row:last-child {
  border-bottom: none;
}

.user-sk-menu-ico {
  flex-shrink: 0;
  width: 88rpx;
  height: 88rpx;
  border-radius: 50%;
  background: #eef1f5;
}

.user-sk-menu-lines {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16rpx;
}

.user-sk-menu-line {
  width: 200rpx;
  max-width: 58%;
  height: 32rpx;
  border-radius: 10rpx;
  background: #e2e8f0;
}

.user-sk-menu-line--sub {
  width: 280rpx;
  max-width: 72%;
  height: 26rpx;
  border-radius: 8rpx;
  background: #eceff3;
}

.user-sk-menu-tag {
  flex-shrink: 0;
  width: 100rpx;
  height: 44rpx;
  border-radius: 12rpx;
  background: #e8ecf0;
}

@keyframes user-page-sk-breathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.38;
  }
}

.user-sk-breathe {
  animation: user-page-sk-breathe 0.85s ease-in-out infinite;
}

.user-sk-breathe--d0 {
  animation-delay: 0s;
}

.user-sk-breathe--d1 {
  animation-delay: 0.08s;
}

.user-sk-breathe--d2 {
  animation-delay: 0.16s;
}

.profile {
  align-items: center;
  margin-bottom: 32rpx;
  text-align: center;
  transition: opacity 0.15s ease;
}

.profile:active {
  opacity: 0.88;
}

.big-avatar {
  display: flex;
  width: 192rpx;
  height: 192rpx;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24rpx;
  border: 8rpx solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
}

.big-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.big-av-txt {
  font-size: 72rpx;
  color: #fff;
}

.nickname {
  display: block;
  margin-bottom: 12rpx;
  font-size: 44rpx;
  color: #fff;
}

.bio {
  font-size: 26rpx;
  color: rgba(255, 255, 255, 0.92);
}

.stats-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32rpx;
  margin: 0 -12rpx;
  border-radius: 32rpx;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16rpx 48rpx rgba(0, 0, 0, 0.12);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  margin-bottom: 6rpx;
  font-size: 44rpx;
  font-weight: 600;
  color: #7fb069;
}

.stat-label {
  font-size: 22rpx;
  color: #4b5563;
}

.stat-div {
  width: 1rpx;
  height: 56rpx;
  background: #e5e7eb;
}

.wave-fake {
  position: relative;
  height: 48rpx;
  margin-top: -48rpx;
  border-radius: 32rpx 32rpx 0 0;
  background: transparent;
}

.sheet {
  max-width: 750rpx;
  padding: 0 32rpx;
  margin: -96rpx auto 0;
}

.tabs {
  display: grid;
  padding: 8rpx;
  margin-bottom: 32rpx;
  border-radius: 24rpx;
  background: #fff;
  box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
  grid-template-columns: 1fr 1fr;
}

.tab {
  padding: 20rpx;
  font-size: 28rpx;
  color: #6b7280;
  text-align: center;
  border-radius: 20rpx;
}

.tab-on {
  color: #111827;
  background: #f3f4f6;
  font-weight: 500;
}

.panel {
  margin-bottom: 32rpx;
}

.panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24rpx;
}

.panel-title {
  font-size: 30rpx;
  color: #1f2937;
}

.panel-more {
  font-size: 26rpx;
  color: #4a90e2;
}

.grid-4 {
  display: grid;
  gap: 16rpx;
  grid-template-columns: repeat(4, 1fr);
}

.thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 24rpx;
  background: #f3f4f6;
}

.thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumb-badge {
  position: absolute;
  top: 12rpx;
  right: 12rpx;
}

.badge {
  padding: 6rpx 12rpx;
  font-size: 20rpx;
  color: #fff;
  border-radius: 8rpx;
}

.badge-ok {
  background: #7fb069;
}

.badge-wait {
  background: #eab308;
}

.badge-reject {
  background: #ef4444;
}

.thumb-likes {
  position: absolute;
  right: 12rpx;
  bottom: 12rpx;
  left: 12rpx;
}

.thumb-likes-inner {
  display: inline-flex;
  align-items: center;
  padding: 8rpx 16rpx;
  border-radius: 999rpx;
  background: rgba(0, 0, 0, 0.5);
  gap: 6rpx;
}

.thumb-cang {
  width: 22rpx;
  height: 22rpx;
  flex-shrink: 0;
}

.thumb-likes-txt {
  font-size: 20rpx;
  color: #fff;
}

.cert-row {
  display: flex;
  align-items: center;
  padding: 32rpx;
  margin-bottom: 24rpx;
  border-radius: 24rpx;
  background: #fff;
  box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
  gap: 24rpx;
}

.cert-icon {
  display: flex;
  width: 96rpx;
  height: 96rpx;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 20rpx;
  background: linear-gradient(135deg, #4a90e2, #50c8d8);
}

.cert-star {
  font-size: 40rpx;
  color: #fff;
}

.cert-mid {
  flex: 1;
  min-width: 0;
}

.cert-name {
  display: block;
  margin-bottom: 8rpx;
  overflow: hidden;
  font-size: 28rpx;
  color: #111827;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cert-meta {
  font-size: 22rpx;
  color: #6b7280;
}

.cert-arrow {
  flex-shrink: 0;
  font-size: 40rpx;
  color: #9ca3af;
}

.menu {
  overflow: hidden;
  margin-bottom: 48rpx;
  border-radius: 24rpx;
  background: #fff;
  box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
}

.menu-row {
  display: flex;
  align-items: center;
  padding: 32rpx;
  border-bottom: 1rpx solid #f3f4f6;
  gap: 24rpx;
}

.menu-row-last {
  border-bottom: none;
}

.menu-ico-wrap {
  display: flex;
  width: 80rpx;
  height: 80rpx;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28rpx;
}

.menu-ico-blue {
  background: rgba(74, 144, 226, 0.12);
  color: #4a90e2;
}

.menu-ico-green {
  background: rgba(127, 176, 105, 0.12);
  color: #7fb069;
}

.menu-ico-gray {
  background: #f3f4f6;
  color: #9ca3af;
}

.menu-down-ico {
  width: 40rpx;
  height: 40rpx;
}

.menu-txt-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6rpx;
}

.menu-txt {
  font-size: 28rpx;
  color: #111827;
}

.menu-sub {
  font-size: 22rpx;
  color: #9ca3af;
}

.menu-tag {
  padding: 8rpx 20rpx;
  font-size: 22rpx;
  border-radius: 8rpx;
}

.menu-tag-ok {
  color: #fff;
  background: #7fb069;
}

.menu-tag-green {
  color: #fff;
  background: #7fb069;
}

.menu-tag-off {
  color: #4b5563;
  background: #e5e7eb;
}

.modal-mask {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40rpx;
  background: rgba(0, 0, 0, 0.55);
}

.modal-box {
  position: relative;
  width: 100%;
  max-height: 85vh;
  overflow: auto;
}

.cert-modal-inner {
  position: relative;
  overflow: hidden;
  border-radius: 16rpx;
}

.cert-bg {
  display: block;
  width: 100%;
}

.cert-dl-wrap {
  display: flex;
  justify-content: center;
  padding: 24rpx 0 8rpx;
}

.cert-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16rpx;
  min-width: 360rpx;
  padding: 22rpx 48rpx;
  font-size: 28rpx;
  color: #fff;
  background: linear-gradient(90deg, #4a90e2, #50c8d8);
  border-radius: 999rpx;
}

.cert-dl-ico {
  width: 36rpx;
  height: 36rpx;
  flex-shrink: 0;
}

.modal-guide {
  position: relative;
  max-height: 88vh;
  border-radius: 16rpx;
  background: #fff;
}

.guide-img {
  display: block;
  width: 100%;
}

.cert-hidden-canvas {
  position: fixed;
  top: -3000px;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.guide-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 32rpx 48rpx calc(32rpx + env(safe-area-inset-bottom));
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.45) 40%
  );
}

.guide-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16rpx;
  min-width: 420rpx;
  padding: 22rpx 48rpx;
  font-size: 28rpx;
  color: #fff;
  background: linear-gradient(90deg, #4a90e2, #50c8d8);
  border-radius: 999rpx;
}

.guide-dl-ico {
  width: 36rpx;
  height: 36rpx;
  flex-shrink: 0;
}
</style>