Compare commits
93 Commits
633bc1c814
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b37bfcfd02 | ||
|
|
952acbbf1f | ||
|
|
1865b1cfcd | ||
|
|
edfa8a2d3a | ||
|
|
d28b083630 | ||
|
|
ff8d9836d5 | ||
|
|
f653e6659a | ||
|
|
9c4f0c5650 | ||
|
|
c2b889ac8f | ||
|
|
c624bc2d1d | ||
|
|
2d3cefa43e | ||
|
|
d8c5c3a919 | ||
|
|
14d8e0b349 | ||
|
|
210f913aed | ||
|
|
516063bb14 | ||
|
|
d15012841c | ||
|
|
b39ac7cb24 | ||
|
|
fee3b05c9e | ||
|
|
ab70f7e78f | ||
|
|
63a6ade0d4 | ||
|
|
d5012753c1 | ||
|
|
b9bec457a7 | ||
|
|
f11b48e50a | ||
|
|
033c70962c | ||
|
|
38843473c4 | ||
|
|
f4004da994 | ||
|
|
99cf4249db | ||
|
|
8110e209c7 | ||
|
|
a7cc9babac | ||
|
|
dd4129bb58 | ||
|
|
b302103c15 | ||
|
|
c62e12756b | ||
|
|
bc1b95210a | ||
|
|
dc2be76648 | ||
|
|
3f623ee6ee | ||
|
|
fd5bc9d12c | ||
|
|
3964d33e31 | ||
|
|
bd3185aac3 | ||
|
|
f40c33fa2e | ||
|
|
1d1b49d36e | ||
|
|
ae835bd213 | ||
|
|
5d735736ad | ||
|
|
916c383dd5 | ||
|
|
a883caf981 | ||
|
|
5738464cc8 | ||
|
|
2d178fa470 | ||
|
|
9137a3410b | ||
|
|
fe562ecec9 | ||
|
|
a1658ad0ea | ||
|
|
ff1ce034b4 | ||
|
|
e3c7450d18 | ||
|
|
09defb45e0 | ||
|
|
8c5d693b7a | ||
|
|
c32701abb4 | ||
|
|
51b2a322dc | ||
|
|
c4bbff1260 | ||
|
|
b393cfd67a | ||
|
|
18909f7ce2 | ||
|
|
d974987cff | ||
|
|
c7cd83f3e9 | ||
|
|
24c1cd53d5 | ||
|
|
d5353f4437 | ||
|
|
1bfcfd2dec | ||
|
|
fabc7547ed | ||
|
|
20978b05c6 | ||
|
|
88cd1c2e8f | ||
|
|
756a49bbf5 | ||
|
|
4c53fa9f65 | ||
|
|
5e0da973af | ||
|
|
8dfd7612b1 | ||
|
|
8d47d6d494 | ||
|
|
72eb440504 | ||
|
|
32457aa947 | ||
|
|
a6e9c1c9ce | ||
|
|
1fef1818d8 | ||
|
|
6c1084ef32 | ||
|
|
818e947513 | ||
|
|
19c18b478f | ||
|
|
e5a8f3ca3f | ||
|
|
90e7f000c8 | ||
|
|
59fa05c341 | ||
|
|
39f8b88715 | ||
|
|
aa09652069 | ||
|
|
74679b0407 | ||
|
|
806878fa54 | ||
|
|
5e49b247db | ||
|
|
28f0f83531 | ||
|
|
66e483c315 | ||
|
|
5e8a3db6d9 | ||
|
|
1d84e34cb3 | ||
|
|
5944f8d011 | ||
|
|
6c23726e09 | ||
|
|
b3165a56cf |
45
App.vue
45
App.vue
@@ -1,21 +1,40 @@
|
|||||||
<script>
|
<script>
|
||||||
import { useUserStore } from './stores/user'
|
import { useUserStore } from "./stores/user";
|
||||||
|
import { userOpenApp } from "./api/auth";
|
||||||
export default {
|
|
||||||
onLaunch() {
|
const openApp = async () => {
|
||||||
const userStore = useUserStore()
|
try {
|
||||||
userStore.loadFromStorage()
|
const res = await userOpenApp();
|
||||||
}
|
if (res?.points && res.points > 0) {
|
||||||
}
|
uni.showToast({
|
||||||
|
title: `每日登录 +${res.points} 积分`,
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const userStore = useUserStore();
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("userOpenApp error", e);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
onLaunch() {
|
||||||
|
const userStore = useUserStore();
|
||||||
|
userStore.loadFromStorage();
|
||||||
|
if (userStore.userInfo.id) {
|
||||||
|
openApp();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import url("common/style/common-style.scss");
|
@import url("common/style/common-style.scss");
|
||||||
wx-swiper .wx-swiper-dot {
|
wx-swiper .wx-swiper-dot {
|
||||||
position: relative;
|
position: relative;
|
||||||
right: -260rpx;
|
right: -260rpx;
|
||||||
bottom: 110rpx;
|
bottom: 110rpx;
|
||||||
}
|
}
|
||||||
/* tabBar */
|
/* tabBar */
|
||||||
.customtabbar {
|
.customtabbar {
|
||||||
|
|||||||
14
api/auth.js
14
api/auth.js
@@ -23,6 +23,20 @@ export const updateUserInfo = async (body) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const userOpenApp = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/user/open-app",
|
||||||
|
method: "POST",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getUserAsset = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/user/asset",
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
export const reportPrivacy = async () => {
|
export const reportPrivacy = async () => {
|
||||||
// return request({
|
// return request({
|
||||||
// url: "/api/common/privacy/report",
|
// url: "/api/common/privacy/report",
|
||||||
|
|||||||
@@ -7,6 +7,20 @@ export const getAvatarSystemList = async (page = 1) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getAvatarSystemCategoryList = async () => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/avatar/category/list`,
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getAvatarSystemListByCategory = async (categoryId, page = 1) => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/avatar/system/list?categoryId=${categoryId}&page=${page}`,
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
export const getAvatarDecorList = async (page = 1) => {
|
export const getAvatarDecorList = async (page = 1) => {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/blessing/avatar/decor/list?page=${page}`,
|
url: `/api/blessing/avatar/decor/list?page=${page}`,
|
||||||
|
|||||||
@@ -14,3 +14,10 @@ export const createCardShareToken = async (data) => {
|
|||||||
data,
|
data,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getGreetingSceneList = async (exclude) => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/greeting-scene/list?exclude=${exclude}`,
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|||||||
23
api/daily.js
Normal file
23
api/daily.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import { request } from "@/utils/request.js";
|
||||||
|
|
||||||
|
export const getDailyInfo = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/blessing/daily-greeting/home",
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getDailyRandomGreeting = async (sceneId) => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/daily-greeting/random?sceneId=${sceneId}`,
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const saveDailyGreeting = async (data) => {
|
||||||
|
return request({
|
||||||
|
url: "/api/blessing/daily-greeting/send",
|
||||||
|
method: "POST",
|
||||||
|
data,
|
||||||
|
});
|
||||||
|
};
|
||||||
24
api/make.js
24
api/make.js
@@ -16,16 +16,24 @@ export const updateCard = async (data) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getCardTemplateList = async (page = 1) => {
|
export const getCardTemplateList = async (page = 1, scene = "") => {
|
||||||
|
let url = "/api/blessing/card/template/list?page=" + page;
|
||||||
|
if (scene) {
|
||||||
|
url += "&scene=" + scene;
|
||||||
|
}
|
||||||
return request({
|
return request({
|
||||||
url: "/api/blessing/card/template/list?page=" + page,
|
url,
|
||||||
method: "GET",
|
method: "GET",
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getCardTemplateContentList = async (page = 1) => {
|
export const getCardTemplateContentList = async (page = 1, scene = "") => {
|
||||||
|
let url = "/api/blessing/card/template-content/list?page=" + page;
|
||||||
|
if (scene) {
|
||||||
|
url += "&scene=" + scene;
|
||||||
|
}
|
||||||
return request({
|
return request({
|
||||||
url: "/api/blessing/card/template-content/list?page=" + page,
|
url,
|
||||||
method: "GET",
|
method: "GET",
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -37,9 +45,13 @@ export const getCardMusicList = async () => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getCardTemplateTitleList = async (page = 1) => {
|
export const getCardTemplateTitleList = async (page = 1, scene = "") => {
|
||||||
|
let url = "/api/blessing/card/template-title/list?page=" + page;
|
||||||
|
if (scene) {
|
||||||
|
url += "&scene=" + scene;
|
||||||
|
}
|
||||||
return request({
|
return request({
|
||||||
url: "/api/blessing/card/template-title/list?page=" + page,
|
url,
|
||||||
method: "GET",
|
method: "GET",
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
import { request } from "@/utils/request.js";
|
import { request } from "@/utils/request.js";
|
||||||
|
import { useUserStore } from "@/stores/user";
|
||||||
|
const userStore = useUserStore();
|
||||||
|
|
||||||
export const abilityCheck = async (scene) => {
|
export const abilityCheck = async (scene) => {
|
||||||
return request({
|
return request({
|
||||||
url: "/api/blessing/ability/check?scene=" + scene,
|
url: "/api/ability/check?scene=" + scene,
|
||||||
method: "GET",
|
method: "GET",
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -23,11 +25,16 @@ export const getPageDetail = async (shareToken) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const getShareReward = async (data) => {
|
export const getShareReward = async (data) => {
|
||||||
return request({
|
const res = await request({
|
||||||
url: "/api/blessing/share/reward",
|
url: "/api/reward/share",
|
||||||
method: "POST",
|
method: "POST",
|
||||||
data,
|
data,
|
||||||
});
|
});
|
||||||
|
console.log("getShareReward res", res);
|
||||||
|
if (res && res.success) {
|
||||||
|
userStore.fetchUserAssets();
|
||||||
|
}
|
||||||
|
return res;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const saveRecord = async (data) => {
|
export const saveRecord = async (data) => {
|
||||||
@@ -53,6 +60,27 @@ export const getRecommendList = async (page = 1) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getRankList = async (scene) => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/rank/resource-list?scene=${scene}`,
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getCardSpecialTopic = async () => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/card/special-topic`,
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getRandomRecommendList = async (scene) => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/random/recommend/list?scene=${scene}`,
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
export const msgCheckApi = async (content) => {
|
export const msgCheckApi = async (content) => {
|
||||||
return request({
|
return request({
|
||||||
url: "/api/common/msg-check?content=" + content,
|
url: "/api/common/msg-check?content=" + content,
|
||||||
@@ -81,3 +109,26 @@ export const createTracking = async (data) => {
|
|||||||
data,
|
data,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const watchAdReward = async (token, scene, type, resourceId) => {
|
||||||
|
return request({
|
||||||
|
url: "/api/ad/reward",
|
||||||
|
method: "POST",
|
||||||
|
data: {
|
||||||
|
rewardToken: token,
|
||||||
|
scene,
|
||||||
|
type,
|
||||||
|
resourceId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const watchAdStart = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/ad/start",
|
||||||
|
method: "POST",
|
||||||
|
data: {
|
||||||
|
adPlacementId: "adunit-d7a28e0357d98947",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|||||||
22
api/user.js
Normal file
22
api/user.js
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import { request } from "@/utils/request.js";
|
||||||
|
|
||||||
|
export const getUserSignInfo = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/sign/info",
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const userSignIn = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/sign/in",
|
||||||
|
method: "POST",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getUserLuckInfo = async () => {
|
||||||
|
return request({
|
||||||
|
url: "/api/blessing/user/luck-info",
|
||||||
|
method: "GET",
|
||||||
|
});
|
||||||
|
};
|
||||||
@@ -20,3 +20,10 @@ export const getWallpaperRecommendList = async () => {
|
|||||||
method: "get",
|
method: "get",
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getWallpaperSameList = async (id) => {
|
||||||
|
return request({
|
||||||
|
url: `/api/blessing/wallpaper/same/list?id=${id}`,
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed } from "vue";
|
import { ref, computed, onMounted, onUnmounted } from "vue";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { getPlatformProvider, isSinglePageMode } from "@/utils/system";
|
import { getPlatformProvider, isSinglePageMode } from "@/utils/system";
|
||||||
import { uploadImage } from "@/utils/common";
|
import { uploadImage } from "@/utils/common";
|
||||||
@@ -112,6 +112,19 @@ const props = defineProps({
|
|||||||
|
|
||||||
const emit = defineEmits(["logind"]);
|
const emit = defineEmits(["logind"]);
|
||||||
|
|
||||||
|
// 监听全局事件
|
||||||
|
const handleGlobalShow = () => {
|
||||||
|
open();
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
uni.$on("show-login-popup", handleGlobalShow);
|
||||||
|
});
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
uni.$off("show-login-popup", handleGlobalShow);
|
||||||
|
});
|
||||||
|
|
||||||
// 是否处于单页模式(朋友圈打开)
|
// 是否处于单页模式(朋友圈打开)
|
||||||
const isSinglePage = computed(() => isSinglePageMode());
|
const isSinglePage = computed(() => isSinglePageMode());
|
||||||
|
|
||||||
@@ -197,6 +210,9 @@ const handleAlipayLogin = async () => {
|
|||||||
id: loginRes?.user?.id,
|
id: loginRes?.user?.id,
|
||||||
isVip: loginRes?.isVip || false,
|
isVip: loginRes?.isVip || false,
|
||||||
vipExpireAt: loginRes?.vipExpireAt || null,
|
vipExpireAt: loginRes?.vipExpireAt || null,
|
||||||
|
points: loginRes?.points || 0,
|
||||||
|
exp: loginRes?.exp || 0,
|
||||||
|
level: loginRes?.level || 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
userStore.setToken(loginRes.token);
|
userStore.setToken(loginRes.token);
|
||||||
@@ -268,6 +284,9 @@ const confirmLogin = async () => {
|
|||||||
id: loginRes?.user?.id,
|
id: loginRes?.user?.id,
|
||||||
isVip: loginRes?.isVip || false,
|
isVip: loginRes?.isVip || false,
|
||||||
vipExpireAt: loginRes?.vipExpireAt || null,
|
vipExpireAt: loginRes?.vipExpireAt || null,
|
||||||
|
points: loginRes?.points || 0,
|
||||||
|
exp: loginRes?.exp || 0,
|
||||||
|
level: loginRes?.level || 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
userStore.setToken(loginRes.token);
|
userStore.setToken(loginRes.token);
|
||||||
|
|||||||
1034
components/LuckyPopup/LuckyPopup.vue
Normal file
1034
components/LuckyPopup/LuckyPopup.vue
Normal file
File diff suppressed because it is too large
Load Diff
94
components/RewardAd/RewardAd.vue
Normal file
94
components/RewardAd/RewardAd.vue
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
<template>
|
||||||
|
<view></view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { onMounted, onUnmounted } from "vue";
|
||||||
|
import { watchAdStart } from "@/api/system.js";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
adUnitId: {
|
||||||
|
type: String,
|
||||||
|
default: "adunit-d7a28e0357d98947",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(["onReward", "onError", "onClose"]);
|
||||||
|
|
||||||
|
let videoAd = null;
|
||||||
|
let rewardToken = "";
|
||||||
|
|
||||||
|
const onLoadHandler = () => {
|
||||||
|
console.log("Ad Loaded");
|
||||||
|
};
|
||||||
|
|
||||||
|
const onErrorHandler = (err) => {
|
||||||
|
console.error("Ad Load Error", err);
|
||||||
|
emit("onError", err);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onCloseHandler = (res) => {
|
||||||
|
if (res && res.isEnded) {
|
||||||
|
emit("onReward", rewardToken);
|
||||||
|
} else {
|
||||||
|
uni.showToast({ title: "观看完整广告才能获取奖励哦", icon: "none" });
|
||||||
|
emit("onClose");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if (uni.createRewardedVideoAd) {
|
||||||
|
videoAd = uni.createRewardedVideoAd({
|
||||||
|
adUnitId: props.adUnitId,
|
||||||
|
});
|
||||||
|
|
||||||
|
videoAd.onLoad(onLoadHandler);
|
||||||
|
videoAd.onError(onErrorHandler);
|
||||||
|
videoAd.onClose(onCloseHandler);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
if (videoAd) {
|
||||||
|
videoAd.offLoad(onLoadHandler);
|
||||||
|
videoAd.offError(onErrorHandler);
|
||||||
|
videoAd.offClose(onCloseHandler);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const show = async () => {
|
||||||
|
try {
|
||||||
|
// Step 1: Start Ad Session to get Token
|
||||||
|
const res = await watchAdStart();
|
||||||
|
if (res && res.rewardToken) {
|
||||||
|
rewardToken = res.rewardToken;
|
||||||
|
|
||||||
|
// Step 2: Show Ad
|
||||||
|
if (videoAd) {
|
||||||
|
videoAd.show().catch(() => {
|
||||||
|
videoAd
|
||||||
|
.load()
|
||||||
|
.then(() => videoAd.show())
|
||||||
|
.catch((err) => {
|
||||||
|
console.error("Ad show failed", err);
|
||||||
|
uni.showToast({
|
||||||
|
title: "广告加载失败,请稍后再试",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
emit("onError", err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
uni.showToast({ title: "当前环境不支持广告", icon: "none" });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
uni.showToast({ title: "广告启动失败,请稍后再试", icon: "none" });
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("watchAdStart failed", e);
|
||||||
|
uni.showToast({ title: "广告启动失败,请稍后再试", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
defineExpose({ show });
|
||||||
|
</script>
|
||||||
46
pages.json
46
pages.json
@@ -3,12 +3,28 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "新春祝福",
|
"navigationBarTitleText": "祝福 壁纸 头像",
|
||||||
"enablePullDownRefresh": true,
|
"enablePullDownRefresh": true,
|
||||||
"navigationStyle": "custom",
|
"navigationStyle": "custom",
|
||||||
"backgroundColor": "#FFFFFF"
|
"backgroundColor": "#FFFFFF"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/greeting/daily",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "每日精选",
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/greeting/share",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "问候分享",
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/make/index",
|
"path": "pages/make/index",
|
||||||
"style": {
|
"style": {
|
||||||
@@ -20,7 +36,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/mine/greeting",
|
"path": "pages/mine/greeting",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "我的新春祝福",
|
"navigationBarTitleText": "我的祝福",
|
||||||
"navigationStyle": "custom",
|
"navigationStyle": "custom",
|
||||||
"enablePullDownRefresh": true
|
"enablePullDownRefresh": true
|
||||||
}
|
}
|
||||||
@@ -28,7 +44,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/mine/wallpaper",
|
"path": "pages/mine/wallpaper",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "我的新春壁纸",
|
"navigationBarTitleText": "我的壁纸",
|
||||||
"navigationStyle": "custom",
|
"navigationStyle": "custom",
|
||||||
"enablePullDownRefresh": true
|
"enablePullDownRefresh": true
|
||||||
}
|
}
|
||||||
@@ -76,7 +92,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/avatar/index",
|
"path": "pages/avatar/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "新春头像挂饰",
|
"navigationBarTitleText": "头像挂饰",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
@@ -89,6 +105,14 @@
|
|||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/avatar/download",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "精选头像",
|
||||||
|
"enablePullDownRefresh": false,
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/creation/index",
|
"path": "pages/creation/index",
|
||||||
"style": {
|
"style": {
|
||||||
@@ -100,7 +124,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/detail/index",
|
"path": "pages/detail/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "新春祝福详情",
|
"navigationBarTitleText": "祝福详情",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
@@ -115,7 +139,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/fortune/index",
|
"path": "pages/fortune/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "新年运势",
|
"navigationBarTitleText": "每日好运",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
@@ -123,7 +147,7 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/fortune/detail",
|
"path": "pages/fortune/detail",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "新年运势",
|
"navigationBarTitleText": "每日好运",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
@@ -159,6 +183,14 @@
|
|||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/wallpaper/share",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "壁纸分享",
|
||||||
|
"enablePullDownRefresh": false,
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
|
|||||||
@@ -15,9 +15,9 @@
|
|||||||
<text class="nickname">{{
|
<text class="nickname">{{
|
||||||
detailData.from?.nickname || "神秘用户"
|
detailData.from?.nickname || "神秘用户"
|
||||||
}}</text>
|
}}</text>
|
||||||
<view class="tag">马年专属</view>
|
<view class="tag">专属头像</view>
|
||||||
</view>
|
</view>
|
||||||
<text class="action-text">换上了新春头像</text>
|
<text class="action-text">换上了专属头像</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<!-- Decorative Elements -->
|
<!-- Decorative Elements -->
|
||||||
<view class="card-footer-text">
|
<view class="card-footer-text">
|
||||||
<text class="icon">🌸</text> 2026 丙午马年限定
|
<text class="icon">🌸</text> 专属限定
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
<view class="section-header">
|
<view class="section-header">
|
||||||
<view class="left">
|
<view class="left">
|
||||||
<view class="bar"></view>
|
<view class="bar"></view>
|
||||||
<text class="title">热门新春头像</text>
|
<text class="title">热门头像</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="more" @tap="goToMake">查看全部</text>
|
<text class="more" @tap="goToMake">查看全部</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -69,10 +69,10 @@
|
|||||||
</view>
|
</view>
|
||||||
<text class="frame-name">{{
|
<text class="frame-name">{{
|
||||||
item.type === "decor"
|
item.type === "decor"
|
||||||
? "新春饰品"
|
? "精美饰品"
|
||||||
: item.type === "avatar"
|
: item.type === "avatar"
|
||||||
? "新春头像"
|
? "爆款头像"
|
||||||
: "新春相框"
|
: "热门相框"
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -84,8 +84,8 @@
|
|||||||
<text>🏮</text>
|
<text>🏮</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-content">
|
<view class="banner-content">
|
||||||
<text class="banner-title">去抽取新年运势</text>
|
<text class="banner-title">去抽取今日运势</text>
|
||||||
<text class="banner-desc">每日一签,开启你的新年好运</text>
|
<text class="banner-desc">每日一签,开启你的今日好运</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="banner-arrow">›</text>
|
<text class="banner-arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -94,8 +94,8 @@
|
|||||||
<text>🧧</text>
|
<text>🧧</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-content">
|
<view class="banner-content">
|
||||||
<text class="banner-title">去制作新年贺卡</text>
|
<text class="banner-title">制作一张祝福贺卡</text>
|
||||||
<text class="banner-desc">定制专属祝福,传递浓浓年味</text>
|
<text class="banner-desc">写下心意,把祝福送给重要的人</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="banner-arrow">›</text>
|
<text class="banner-arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -104,8 +104,8 @@
|
|||||||
<text>🖼</text>
|
<text>🖼</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-content">
|
<view class="banner-content">
|
||||||
<text class="banner-title">去挑选新年壁纸</text>
|
<text class="banner-title">去挑选精美壁纸</text>
|
||||||
<text class="banner-desc">精选新年壁纸,让手机也过年</text>
|
<text class="banner-desc">换上精选壁纸,让手机也焕新</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="banner-arrow">›</text>
|
<text class="banner-arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -114,19 +114,19 @@
|
|||||||
<view class="page-footer">
|
<view class="page-footer">
|
||||||
<view class="footer-line">
|
<view class="footer-line">
|
||||||
<text class="line"></text>
|
<text class="line"></text>
|
||||||
<text class="text">2026 HAPPY NEW YEAR</text>
|
<text class="text">LUCKY EVERY DAY</text>
|
||||||
<text class="line"></text>
|
<text class="line"></text>
|
||||||
</view>
|
</view>
|
||||||
<text class="footer-sub">新春祝福 · 传递温情</text>
|
<text class="footer-sub">专属头像</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from "vue";
|
import { ref } from "vue";
|
||||||
import { onLoad, onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
|
import { onLoad, onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
|
||||||
import { getPageDetail } from "@/api/system.js";
|
import { getPageDetail, getShareReward } from "@/api/system";
|
||||||
import { getAvatarRecommendList } from "@/api/avatar.js";
|
import { getAvatarRecommendList } from "@/api/avatar.js";
|
||||||
import { getShareToken, saveViewRequest } from "@/utils/common.js";
|
import { getShareToken, saveViewRequest } from "@/utils/common.js";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
@@ -147,8 +147,9 @@ onLoad((options) => {
|
|||||||
|
|
||||||
onShareAppMessage(async () => {
|
onShareAppMessage(async () => {
|
||||||
const token = await getShareToken("avatar_download", detailData.value?.id);
|
const token = await getShareToken("avatar_download", detailData.value?.id);
|
||||||
|
getShareReward({ scene: "avatar_download" });
|
||||||
return {
|
return {
|
||||||
title: "快来看看我刚领到的新年专属头像 🎊",
|
title: "快来看看我刚领到的专属头像 🎊",
|
||||||
path: `/pages/avatar/detail?shareToken=${token}`,
|
path: `/pages/avatar/detail?shareToken=${token}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
detailData.value?.imageUrl ||
|
detailData.value?.imageUrl ||
|
||||||
@@ -159,7 +160,7 @@ onShareAppMessage(async () => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const token = await getShareToken("avatar_download", detailData.value?.id);
|
const token = await getShareToken("avatar_download", detailData.value?.id);
|
||||||
return {
|
return {
|
||||||
title: "快来看看我刚领到的新年专属头像 🎊",
|
title: "快来看看我刚领到的专属头像 🎊",
|
||||||
query: `shareToken=${token}`,
|
query: `shareToken=${token}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
detailData.value?.imageUrl ||
|
detailData.value?.imageUrl ||
|
||||||
|
|||||||
538
pages/avatar/download.vue
Normal file
538
pages/avatar/download.vue
Normal file
@@ -0,0 +1,538 @@
|
|||||||
|
<template>
|
||||||
|
<view class="avatar-download-page">
|
||||||
|
<NavBar title="精选头像" />
|
||||||
|
|
||||||
|
<!-- Category Tabs -->
|
||||||
|
<view class="category-tabs">
|
||||||
|
<scroll-view scroll-x class="tabs-scroll" :show-scrollbar="false">
|
||||||
|
<view class="tabs-content">
|
||||||
|
<view
|
||||||
|
v-for="(item, index) in categories"
|
||||||
|
:key="index"
|
||||||
|
class="tab-item"
|
||||||
|
:class="{ active: currentCategoryId === item.id }"
|
||||||
|
@tap="switchCategory(item.id)"
|
||||||
|
>
|
||||||
|
{{ item.name }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Points Info -->
|
||||||
|
<view class="points-bar">
|
||||||
|
<view class="points-left">
|
||||||
|
<uni-icons type="download" size="14" color="#ff9800" />
|
||||||
|
<text>每次下载消耗 {{ downloadCost }} 积分</text>
|
||||||
|
</view>
|
||||||
|
<view class="points-right">
|
||||||
|
<text>当前积分:</text>
|
||||||
|
<text class="score-val">{{ userPoints }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Avatar Grid -->
|
||||||
|
<scroll-view
|
||||||
|
scroll-y
|
||||||
|
class="avatar-scroll"
|
||||||
|
@scrolltolower="loadMore"
|
||||||
|
refresher-enabled
|
||||||
|
:refresher-triggered="isRefreshing"
|
||||||
|
@refresherrefresh="onRefresh"
|
||||||
|
>
|
||||||
|
<view class="grid-container">
|
||||||
|
<view class="grid-item" v-for="(item, index) in avatars" :key="index">
|
||||||
|
<image
|
||||||
|
:src="getThumbUrl(item.imageUrl)"
|
||||||
|
mode="aspectFill"
|
||||||
|
class="avatar-img"
|
||||||
|
@tap="previewImage(index)"
|
||||||
|
/>
|
||||||
|
<view class="action-overlay">
|
||||||
|
<button
|
||||||
|
class="action-btn share"
|
||||||
|
open-type="share"
|
||||||
|
:data-item="item"
|
||||||
|
@tap.stop="shareAvatar(item)"
|
||||||
|
>
|
||||||
|
<text class="icon">➦</text>
|
||||||
|
</button>
|
||||||
|
<view class="action-btn download" @tap.stop="downloadAvatar(item)">
|
||||||
|
<text class="icon">↓</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Loading State -->
|
||||||
|
<view class="loading-state" v-if="loading">
|
||||||
|
<text>加载中...</text>
|
||||||
|
</view>
|
||||||
|
<view class="empty-state" v-if="!loading && avatars.length === 0">
|
||||||
|
<text>暂无内容</text>
|
||||||
|
</view>
|
||||||
|
<view class="no-more" v-if="!loading && !hasMore && avatars.length > 0">
|
||||||
|
<text>没有更多了</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Spacer for bottom button -->
|
||||||
|
<view class="bottom-spacer"></view>
|
||||||
|
</scroll-view>
|
||||||
|
|
||||||
|
<!-- Bottom Button -->
|
||||||
|
<view class="bottom-action-bar">
|
||||||
|
<button class="create-btn" @tap="goToMake">
|
||||||
|
<uni-icons
|
||||||
|
type="compose"
|
||||||
|
size="20"
|
||||||
|
color="#fff"
|
||||||
|
style="margin-right: 8rpx"
|
||||||
|
/>
|
||||||
|
去制作专属头像
|
||||||
|
</button>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<LoginPopup
|
||||||
|
ref="loginPopupRef"
|
||||||
|
@logind="handleLogind"
|
||||||
|
:share-token="shareToken"
|
||||||
|
/>
|
||||||
|
<RewardAd ref="rewardAdRef" @onReward="handleAdReward" />
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from "vue";
|
||||||
|
import {
|
||||||
|
getAvatarSystemCategoryList,
|
||||||
|
getAvatarSystemListByCategory,
|
||||||
|
avatarDownloadRecord,
|
||||||
|
} from "@/api/avatar.js";
|
||||||
|
import {
|
||||||
|
saveRemoteImageToLocal,
|
||||||
|
saveRecordRequest,
|
||||||
|
getShareToken,
|
||||||
|
trackRecord,
|
||||||
|
saveViewRequest,
|
||||||
|
} from "@/utils/common.js";
|
||||||
|
import { onShareAppMessage, onShareTimeline, onLoad } from "@dcloudio/uni-app";
|
||||||
|
import { getShareReward, watchAdReward } from "@/api/system.js";
|
||||||
|
import { checkAbilityAndHandle } from "@/utils/ability.js";
|
||||||
|
import { useUserStore } from "@/stores/user";
|
||||||
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
import RewardAd from "@/components/RewardAd/RewardAd.vue";
|
||||||
|
|
||||||
|
const userStore = useUserStore();
|
||||||
|
const loginPopupRef = ref(null);
|
||||||
|
const rewardAdRef = ref(null);
|
||||||
|
|
||||||
|
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
||||||
|
const userPoints = computed(() => userStore.userInfo.points || 0);
|
||||||
|
const downloadCost = ref(20);
|
||||||
|
|
||||||
|
const categories = ref([]);
|
||||||
|
const currentCategoryId = ref(null);
|
||||||
|
const avatars = ref([]);
|
||||||
|
const page = ref(1);
|
||||||
|
const loading = ref(false);
|
||||||
|
const hasMore = ref(true);
|
||||||
|
const isRefreshing = ref(false);
|
||||||
|
const shareToken = ref("");
|
||||||
|
|
||||||
|
onShareAppMessage(async (options) => {
|
||||||
|
if (!isLoggedIn.value) {
|
||||||
|
const shareToken = await getShareToken("avatar_download_index", "");
|
||||||
|
return {
|
||||||
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
|
path: `/pages/index/index?shareToken=${shareToken}`,
|
||||||
|
imageUrl:
|
||||||
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
getShareReward({ scene: "avatar_download" });
|
||||||
|
if (options.from === "button") {
|
||||||
|
const shareToken = await getShareToken(
|
||||||
|
"avatar_download",
|
||||||
|
options?.target?.dataset?.item?.id,
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
title: "快来挑选喜欢的专属头像吧",
|
||||||
|
path: `/pages/avatar/download?shareToken=${shareToken}`,
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
const shareToken = await getShareToken("avatar_download_index", "");
|
||||||
|
return {
|
||||||
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
|
path: `/pages/index/index?shareToken=${shareToken}`,
|
||||||
|
imageUrl:
|
||||||
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
onShareTimeline(async () => {
|
||||||
|
const shareToken = await getShareToken("avatar_timeline");
|
||||||
|
return {
|
||||||
|
title: "精选头像,定制专属祝福 🧧",
|
||||||
|
query: `shareToken=${shareToken}`,
|
||||||
|
imageUrl:
|
||||||
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
onLoad((options) => {
|
||||||
|
if (options.shareToken) {
|
||||||
|
shareToken.value = options.shareToken;
|
||||||
|
saveViewRequest(options.shareToken, "avatar_download");
|
||||||
|
}
|
||||||
|
fetchCategories();
|
||||||
|
trackRecord({
|
||||||
|
eventName: "avatar_download_page_visit",
|
||||||
|
eventType: `visit`,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const getThumbUrl = (url) => {
|
||||||
|
// Use square thumbnail for avatars
|
||||||
|
return `${url}?imageView2/1/w/340/h/340/q/80`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const fetchCategories = async () => {
|
||||||
|
try {
|
||||||
|
const res = await getAvatarSystemCategoryList();
|
||||||
|
const list = Array.isArray(res) ? res : res?.list || [];
|
||||||
|
if (list.length > 0) {
|
||||||
|
categories.value = list;
|
||||||
|
currentCategoryId.value = list[0].id;
|
||||||
|
loadAvatars(true);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch categories", e);
|
||||||
|
uni.showToast({ title: "获取分类失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const switchCategory = (id) => {
|
||||||
|
if (currentCategoryId.value === id) return;
|
||||||
|
currentCategoryId.value = id;
|
||||||
|
loadAvatars(true);
|
||||||
|
trackRecord({
|
||||||
|
eventName: "avatar_category_click",
|
||||||
|
eventType: `select`,
|
||||||
|
elementId: id || "",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadAvatars = async (reset = false) => {
|
||||||
|
if (loading.value) return;
|
||||||
|
if (!currentCategoryId.value) return;
|
||||||
|
if (reset) {
|
||||||
|
page.value = 1;
|
||||||
|
hasMore.value = true;
|
||||||
|
avatars.value = [];
|
||||||
|
}
|
||||||
|
if (!hasMore.value) return;
|
||||||
|
|
||||||
|
loading.value = true;
|
||||||
|
try {
|
||||||
|
const res = await getAvatarSystemListByCategory(
|
||||||
|
currentCategoryId.value,
|
||||||
|
page.value,
|
||||||
|
);
|
||||||
|
const list = res?.list || [];
|
||||||
|
hasMore.value = !!res?.hasNext;
|
||||||
|
|
||||||
|
if (reset) {
|
||||||
|
avatars.value = list;
|
||||||
|
} else {
|
||||||
|
avatars.value = [...avatars.value, ...list];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasMore.value) {
|
||||||
|
page.value++;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch avatars", e);
|
||||||
|
uni.showToast({ title: "获取列表失败", icon: "none" });
|
||||||
|
} finally {
|
||||||
|
loading.value = false;
|
||||||
|
isRefreshing.value = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadMore = () => {
|
||||||
|
loadAvatars();
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleLogind = async () => {
|
||||||
|
// Logic after successful login if needed
|
||||||
|
};
|
||||||
|
|
||||||
|
const onRefresh = () => {
|
||||||
|
isRefreshing.value = true;
|
||||||
|
loadAvatars(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const previewImage = (index) => {
|
||||||
|
const urls = avatars.value.map((item) => item.imageUrl);
|
||||||
|
uni.previewImage({
|
||||||
|
urls,
|
||||||
|
current: index,
|
||||||
|
});
|
||||||
|
const item = avatars.value[index];
|
||||||
|
trackRecord({
|
||||||
|
eventName: "avatar_preview_click",
|
||||||
|
eventType: `select`,
|
||||||
|
elementId: item?.id || "",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAdReward = async (token) => {
|
||||||
|
try {
|
||||||
|
const res = await watchAdReward(token);
|
||||||
|
if (res) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "获得50积分",
|
||||||
|
icon: "success",
|
||||||
|
});
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Reward claim failed", e);
|
||||||
|
uni.showToast({ title: "奖励发放失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const downloadAvatar = async (item) => {
|
||||||
|
trackRecord({
|
||||||
|
eventName: "avatar_download_click",
|
||||||
|
eventType: `click`,
|
||||||
|
elementId: item?.id || "",
|
||||||
|
});
|
||||||
|
if (!isLoggedIn.value) {
|
||||||
|
loginPopupRef.value.open();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const canProceed = await checkAbilityAndHandle("avatar_download");
|
||||||
|
if (!canProceed) return;
|
||||||
|
|
||||||
|
uni.showLoading({ title: "下载中..." });
|
||||||
|
try {
|
||||||
|
await Promise.all([
|
||||||
|
saveRemoteImageToLocal(item.imageUrl),
|
||||||
|
avatarDownloadRecord({ id: item.id, url: item.imageUrl }),
|
||||||
|
]);
|
||||||
|
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
uni.showToast({ title: "保存成功 消耗 20 积分", icon: "success" });
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Download failed", e);
|
||||||
|
// saveRemoteImageToLocal handles its own error toast usually, but let's be safe
|
||||||
|
} finally {
|
||||||
|
uni.hideLoading();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const shareAvatar = (item) => {};
|
||||||
|
|
||||||
|
const goToMake = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/avatar/index",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.avatar-download-page {
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #ffffff;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-tabs {
|
||||||
|
padding: 0;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-bottom: 1rpx solid #eeeeee;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.points-bar {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 16rpx 30rpx;
|
||||||
|
background-color: #fffbf0;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.points-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8rpx;
|
||||||
|
color: #ff9800;
|
||||||
|
}
|
||||||
|
|
||||||
|
.points-right {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.score-val {
|
||||||
|
color: #d81e06;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin-left: 4rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs-scroll {
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs-content {
|
||||||
|
display: inline-flex;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-item {
|
||||||
|
padding: 24rpx 30rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #999999;
|
||||||
|
position: relative;
|
||||||
|
transition: all 0.3s;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-item.active {
|
||||||
|
color: #e60012;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
width: 80rpx;
|
||||||
|
height: 4rpx;
|
||||||
|
background-color: #e60012;
|
||||||
|
border-radius: 2rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar-scroll {
|
||||||
|
flex: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-container {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 30rpx;
|
||||||
|
padding: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-item {
|
||||||
|
aspect-ratio: 1; /* Make it square */
|
||||||
|
border-radius: 32rpx;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
background: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar-img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-overlay {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20rpx;
|
||||||
|
right: 20rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-btn {
|
||||||
|
width: 64rpx;
|
||||||
|
height: 64rpx;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: 1rpx solid rgba(255, 255, 255, 0.2);
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-btn.share .icon {
|
||||||
|
font-size: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-btn .icon {
|
||||||
|
color: #fff;
|
||||||
|
font-size: 36rpx;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-state,
|
||||||
|
.empty-state,
|
||||||
|
.no-more {
|
||||||
|
text-align: center;
|
||||||
|
padding: 40rpx;
|
||||||
|
color: #999999;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-spacer {
|
||||||
|
height: 140rpx; /* Space for fixed bottom bar */
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-action-bar {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background: #fff;
|
||||||
|
padding: 20rpx 30rpx calc(20rpx + constant(safe-area-inset-bottom));
|
||||||
|
padding: 20rpx 30rpx calc(20rpx + env(safe-area-inset-bottom));
|
||||||
|
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||||
|
z-index: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
.create-btn {
|
||||||
|
background: linear-gradient(135deg, #ff3b30, #ff1744);
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 50rpx;
|
||||||
|
height: 88rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
<text>分享或保存即可去除水印</text>
|
<text>分享或保存即可去除水印</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="preview-square">
|
<view class="preview-square">
|
||||||
<view class="watermark">年禧集.马年春节祝福</view>
|
<view class="watermark">精美头像壁纸祝福</view>
|
||||||
<image
|
<image
|
||||||
class="avatar-img"
|
class="avatar-img"
|
||||||
:src="currentAvatar?.imageUrl"
|
:src="currentAvatar?.imageUrl"
|
||||||
@@ -61,7 +61,16 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="action-buttons">
|
<view class="action-buttons">
|
||||||
<button class="btn secondary" @tap="saveAndUse">保存</button>
|
<view class="points-display" v-if="isLoggedIn">
|
||||||
|
<text class="label">当前积分:</text>
|
||||||
|
<text class="value">{{ userPoints }}</text>
|
||||||
|
</view>
|
||||||
|
<button class="btn secondary" @tap="saveAndUse">
|
||||||
|
<view class="btn-content">
|
||||||
|
<text>保存</text>
|
||||||
|
<text class="btn-sub">消耗 20 积分</text>
|
||||||
|
</view>
|
||||||
|
</button>
|
||||||
<button class="btn primary" open-type="share">分享给朋友</button>
|
<button class="btn primary" open-type="share">分享给朋友</button>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -82,7 +91,7 @@
|
|||||||
></uni-icons>
|
></uni-icons>
|
||||||
<view class="btn-texts">
|
<view class="btn-texts">
|
||||||
<text class="btn-title">上传我的照片</text>
|
<text class="btn-title">上传我的照片</text>
|
||||||
<text class="btn-sub">制作专属新年头像</text>
|
<text class="btn-sub">制作专属头像</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<uni-icons
|
<uni-icons
|
||||||
@@ -122,6 +131,18 @@
|
|||||||
>
|
>
|
||||||
<image :src="item.imageUrl" class="grid-img" mode="aspectFill" />
|
<image :src="item.imageUrl" class="grid-img" mode="aspectFill" />
|
||||||
<view v-if="selectedFrame?.id === item.id" class="check">✓</view>
|
<view v-if="selectedFrame?.id === item.id" class="check">✓</view>
|
||||||
|
<!-- Lock Overlay -->
|
||||||
|
<view v-if="!item.isUnlock && item.unlockType" class="lock-overlay">
|
||||||
|
<!-- Badge -->
|
||||||
|
<view class="unlock-badge" :class="item.unlockType">
|
||||||
|
{{ getUnlockLabel(item.unlockType) }}
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Center Lock -->
|
||||||
|
<view class="center-lock">
|
||||||
|
<uni-icons type="locked-filled" size="18" color="#fff" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="frameLoading" class="loading-more">加载中...</view>
|
<view v-if="frameLoading" class="loading-more">加载中...</view>
|
||||||
@@ -141,6 +162,18 @@
|
|||||||
>
|
>
|
||||||
<image :src="item.imageUrl" class="grid-img" mode="aspectFill" />
|
<image :src="item.imageUrl" class="grid-img" mode="aspectFill" />
|
||||||
<view v-if="selectedDecor?.id === item.id" class="check">✓</view>
|
<view v-if="selectedDecor?.id === item.id" class="check">✓</view>
|
||||||
|
<!-- Lock Overlay -->
|
||||||
|
<view v-if="!item.isUnlock && item.unlockType" class="lock-overlay">
|
||||||
|
<!-- Badge -->
|
||||||
|
<view class="unlock-badge" :class="item.unlockType">
|
||||||
|
{{ getUnlockLabel(item.unlockType) }}
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Center Lock -->
|
||||||
|
<view class="center-lock">
|
||||||
|
<uni-icons type="locked-filled" size="18" color="#fff" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="decorLoading" class="loading-more">加载中...</view>
|
<view v-if="decorLoading" class="loading-more">加载中...</view>
|
||||||
@@ -162,6 +195,7 @@
|
|||||||
@logind="handleLogind"
|
@logind="handleLogind"
|
||||||
:share-token="shareToken"
|
:share-token="shareToken"
|
||||||
/>
|
/>
|
||||||
|
<RewardAd ref="rewardAdRef" @onReward="handleAdReward" />
|
||||||
|
|
||||||
<!-- More Avatar Popup -->
|
<!-- More Avatar Popup -->
|
||||||
<!-- <uni-popup ref="morePopup" type="bottom" background-color="#fff">
|
<!-- <uni-popup ref="morePopup" type="bottom" background-color="#fff">
|
||||||
@@ -204,13 +238,14 @@ import {
|
|||||||
onReachBottom,
|
onReachBottom,
|
||||||
} from "@dcloudio/uni-app";
|
} from "@dcloudio/uni-app";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { getShareReward, abilityCheck } from "@/api/system.js";
|
import { checkAbilityAndHandle, getUnlockLabel } from "@/utils/ability.js";
|
||||||
import {
|
import {
|
||||||
getAvatarSystemList,
|
getAvatarSystemList,
|
||||||
getAvatarFrameList,
|
getAvatarFrameList,
|
||||||
getAvatarDecorList,
|
getAvatarDecorList,
|
||||||
avatarCreateComplete,
|
avatarCreateComplete,
|
||||||
} from "@/api/avatar.js";
|
} from "@/api/avatar.js";
|
||||||
|
import { getShareReward, watchAdReward } from "@/api/system.js";
|
||||||
import {
|
import {
|
||||||
saveRecordRequest,
|
saveRecordRequest,
|
||||||
getShareToken,
|
getShareToken,
|
||||||
@@ -221,11 +256,15 @@ import {
|
|||||||
import { trackRecord } from "@/utils/common.js";
|
import { trackRecord } from "@/utils/common.js";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
||||||
|
import RewardAd from "@/components/RewardAd/RewardAd.vue";
|
||||||
|
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const loginPopupRef = ref(null);
|
const loginPopupRef = ref(null);
|
||||||
|
const rewardAdRef = ref(null);
|
||||||
|
const currentUnlockItem = ref(null);
|
||||||
|
|
||||||
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
||||||
|
const userPoints = computed(() => userStore.userInfo.points || 0);
|
||||||
|
|
||||||
const systemAvatars = ref([]);
|
const systemAvatars = ref([]);
|
||||||
const frames = ref([]);
|
const frames = ref([]);
|
||||||
@@ -305,6 +344,7 @@ const loadFrames = async () => {
|
|||||||
if (list.length > 0) {
|
if (list.length > 0) {
|
||||||
frames.value.push(
|
frames.value.push(
|
||||||
...list.map((item) => ({
|
...list.map((item) => ({
|
||||||
|
...item,
|
||||||
id: item.id,
|
id: item.id,
|
||||||
imageUrl: item.imageUrl,
|
imageUrl: item.imageUrl,
|
||||||
})),
|
})),
|
||||||
@@ -332,6 +372,7 @@ const loadDecors = async () => {
|
|||||||
if (list.length > 0) {
|
if (list.length > 0) {
|
||||||
decors.value.push(
|
decors.value.push(
|
||||||
...list.map((item) => ({
|
...list.map((item) => ({
|
||||||
|
...item,
|
||||||
id: item.id,
|
id: item.id,
|
||||||
imageUrl: item.imageUrl,
|
imageUrl: item.imageUrl,
|
||||||
})),
|
})),
|
||||||
@@ -412,6 +453,10 @@ const toggleAvatar = (avatar) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const toggleFrame = (frame) => {
|
const toggleFrame = (frame) => {
|
||||||
|
if (frame.unlockType && !frame.isUnlock) {
|
||||||
|
handleUnlock(frame);
|
||||||
|
return;
|
||||||
|
}
|
||||||
trackRecord({
|
trackRecord({
|
||||||
eventName: "avatar_frame_click",
|
eventName: "avatar_frame_click",
|
||||||
eventType: `select`,
|
eventType: `select`,
|
||||||
@@ -425,6 +470,10 @@ const toggleFrame = (frame) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const toggleDecor = (decor) => {
|
const toggleDecor = (decor) => {
|
||||||
|
if (decor.unlockType && !decor.isUnlock) {
|
||||||
|
handleUnlock(decor);
|
||||||
|
return;
|
||||||
|
}
|
||||||
trackRecord({
|
trackRecord({
|
||||||
eventName: "avatar_decor_click",
|
eventName: "avatar_decor_click",
|
||||||
eventType: `select`,
|
eventType: `select`,
|
||||||
@@ -437,6 +486,93 @@ const toggleDecor = (decor) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleUnlock = (item) => {
|
||||||
|
switch (item.unlockType) {
|
||||||
|
case "vip":
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/mine/vip",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "ad":
|
||||||
|
currentUnlockItem.value = item;
|
||||||
|
rewardAdRef.value.show();
|
||||||
|
break;
|
||||||
|
case "sing1":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到1天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "sing3":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到3天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "sing5":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到5天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "sing7":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到7天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
uni.showToast({
|
||||||
|
title: "未满足解锁条件",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAdReward = async (token) => {
|
||||||
|
try {
|
||||||
|
const res = await watchAdReward(
|
||||||
|
token,
|
||||||
|
"unlock",
|
||||||
|
activeTool.value === "frame" ? "avatar_frame" : "avatar_decor",
|
||||||
|
currentUnlockItem.value.id,
|
||||||
|
);
|
||||||
|
if (res) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "解锁成功",
|
||||||
|
icon: "success",
|
||||||
|
});
|
||||||
|
// 解锁成功后,更新本地状态,允许使用
|
||||||
|
if (currentUnlockItem.value) {
|
||||||
|
currentUnlockItem.value.isUnlock = true;
|
||||||
|
|
||||||
|
if (activeTool.value === "frame") {
|
||||||
|
const index = frames.value.findIndex(
|
||||||
|
(t) => t.id === currentUnlockItem.value.id,
|
||||||
|
);
|
||||||
|
if (index !== -1) {
|
||||||
|
frames.value[index].isUnlock = true;
|
||||||
|
}
|
||||||
|
toggleFrame(currentUnlockItem.value);
|
||||||
|
} else if (activeTool.value === "decor") {
|
||||||
|
const index = decors.value.findIndex(
|
||||||
|
(t) => t.id === currentUnlockItem.value.id,
|
||||||
|
);
|
||||||
|
if (index !== -1) {
|
||||||
|
decors.value[index].isUnlock = true;
|
||||||
|
}
|
||||||
|
toggleDecor(currentUnlockItem.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
currentUnlockItem.value = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Reward claim failed", e);
|
||||||
|
uni.showToast({ title: "奖励发放失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// 挂饰状态
|
// 挂饰状态
|
||||||
const decorState = ref({
|
const decorState = ref({
|
||||||
x: 300, // 初始中心 X (rpx)
|
x: 300, // 初始中心 X (rpx)
|
||||||
@@ -674,29 +810,20 @@ const saveAndUse = async () => {
|
|||||||
loginPopupRef.value.open();
|
loginPopupRef.value.open();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const abilityRes = await abilityCheck("avatar_download");
|
|
||||||
if (!abilityRes.canUse) {
|
const canProceed = await checkAbilityAndHandle("avatar_download");
|
||||||
if (
|
if (!canProceed) return;
|
||||||
abilityRes?.blockType === "need_share" &&
|
|
||||||
abilityRes?.message === "分享可继续"
|
|
||||||
) {
|
|
||||||
uni.showToast({
|
|
||||||
title: "分享给好友可继续使用",
|
|
||||||
icon: "none",
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
uni.showToast({
|
|
||||||
title: "您今日头像下载次数已用完,明日再试",
|
|
||||||
icon: "none",
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const tempPath = await saveByCanvas(true);
|
const tempPath = await saveByCanvas(true);
|
||||||
const id = createAvatarId();
|
const id = createAvatarId();
|
||||||
saveRecordRequest(tempPath, id, "avatar_download");
|
saveRecordRequest(tempPath, id, "avatar_download");
|
||||||
completeCardInfo(id);
|
completeCardInfo(id);
|
||||||
|
|
||||||
|
if (userStore?.userInfo?.points >= 20) {
|
||||||
|
userStore.userInfo.points -= 20;
|
||||||
|
}
|
||||||
|
// userStore.fetchUserAssets();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
// 调用avatarDownloadRecord API记录下载次数
|
// 调用avatarDownloadRecord API记录下载次数
|
||||||
// await avatarDownloadRecord({
|
// await avatarDownloadRecord({
|
||||||
@@ -759,7 +886,6 @@ const completeCardInfo = async (id) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
onShareAppMessage(async (options) => {
|
onShareAppMessage(async (options) => {
|
||||||
getShareReward({ scene: "avatar_download" });
|
|
||||||
if (options.from === "button") {
|
if (options.from === "button") {
|
||||||
if (!isLoggedIn.value) {
|
if (!isLoggedIn.value) {
|
||||||
loginPopupRef.value.open();
|
loginPopupRef.value.open();
|
||||||
@@ -771,9 +897,10 @@ onShareAppMessage(async (options) => {
|
|||||||
getShareToken("avatar_download", id),
|
getShareToken("avatar_download", id),
|
||||||
completeCardInfo(id),
|
completeCardInfo(id),
|
||||||
]);
|
]);
|
||||||
|
getShareReward({ scene: "avatar_download" });
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
return {
|
return {
|
||||||
title: "3 秒生成新春专属头像,真的好看😆",
|
title: "3 秒生成专属头像,真的好看😆",
|
||||||
path: `/pages/avatar/detail?shareToken=${shareToken}`,
|
path: `/pages/avatar/detail?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
imageUrl +
|
imageUrl +
|
||||||
@@ -781,8 +908,9 @@ onShareAppMessage(async (options) => {
|
|||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
const shareToken = await getShareToken("avatar_download_not_login", "");
|
const shareToken = await getShareToken("avatar_download_not_login", "");
|
||||||
|
getShareReward({ scene: "avatar_index" });
|
||||||
return {
|
return {
|
||||||
title: "3 秒生成新春专属头像,真的好看😆",
|
title: "3 秒生成专属头像,真的好看😆",
|
||||||
path: `/pages/avatar/index?shareToken=${shareToken}`,
|
path: `/pages/avatar/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -793,7 +921,7 @@ onShareAppMessage(async (options) => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const shareToken = await getShareToken("avatar_timeline");
|
const shareToken = await getShareToken("avatar_timeline");
|
||||||
return {
|
return {
|
||||||
title: "快来定制你的新年专属头像 🎊",
|
title: "快来定制你的专属头像 🎊",
|
||||||
query: `shareToken=${shareToken}`,
|
query: `shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -1025,17 +1153,56 @@ onShareTimeline(async () => {
|
|||||||
display: flex;
|
display: flex;
|
||||||
gap: 20rpx;
|
gap: 20rpx;
|
||||||
margin-bottom: 30rpx;
|
margin-bottom: 30rpx;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.points-display {
|
||||||
|
position: absolute;
|
||||||
|
top: -60rpx;
|
||||||
|
right: 30rpx;
|
||||||
|
background: rgba(255, 255, 255, 0.9);
|
||||||
|
padding: 8rpx 20rpx;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #ff3b30;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 4rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 88rpx;
|
height: 96rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border-radius: 44rpx;
|
border-radius: 48rpx;
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
|
.btn-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 1.2;
|
||||||
|
|
||||||
|
.btn-sub {
|
||||||
|
font-size: 20rpx;
|
||||||
|
opacity: 0.8;
|
||||||
|
font-weight: normal;
|
||||||
|
margin-top: 2rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.primary {
|
&.primary {
|
||||||
background: #ff3b30;
|
background: #ff3b30;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@@ -1106,6 +1273,69 @@ onShareTimeline(async () => {
|
|||||||
font-size: 20rpx;
|
font-size: 20rpx;
|
||||||
padding: 4rpx 8rpx;
|
padding: 4rpx 8rpx;
|
||||||
border-radius: 0 0 0 16rpx;
|
border-radius: 0 0 0 16rpx;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 锁定遮罩样式 */
|
||||||
|
.lock-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
z-index: 10;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
pointer-events: none; /* 让点击事件穿透到 grid-item */
|
||||||
|
}
|
||||||
|
|
||||||
|
.unlock-badge {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
background: linear-gradient(
|
||||||
|
135deg,
|
||||||
|
#ff9a9e 0%,
|
||||||
|
#fecfef 99%,
|
||||||
|
#fecfef 100%
|
||||||
|
);
|
||||||
|
color: #fff;
|
||||||
|
font-size: 16rpx;
|
||||||
|
padding: 4rpx 10rpx;
|
||||||
|
border-radius: 0 0 0 12rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
z-index: 20;
|
||||||
|
|
||||||
|
&.vip {
|
||||||
|
background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
|
||||||
|
}
|
||||||
|
&.ad {
|
||||||
|
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||||
|
}
|
||||||
|
&.sing1,
|
||||||
|
&.sing3,
|
||||||
|
&.sing5,
|
||||||
|
&.sing7 {
|
||||||
|
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.center-lock {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
width: 48rpx;
|
||||||
|
height: 48rpx;
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.upload-card {
|
&.upload-card {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<text>灵感瞬间</text>
|
<text>灵感瞬间</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-title">今日推荐创作</view>
|
<view class="banner-title">今日推荐创作</view>
|
||||||
<view class="banner-main-title">开启你的第一份<br />新春祝福</view>
|
<view class="banner-main-title">开启你今日的第一份<br />祝福</view>
|
||||||
<view class="go-btn">去制作</view>
|
<view class="go-btn">去制作</view>
|
||||||
</view>
|
</view>
|
||||||
<image
|
<image
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
<view class="icon-box card-bg">
|
<view class="icon-box card-bg">
|
||||||
<image src="/static/icon/celebrate.png" mode="aspectFit" />
|
<image src="/static/icon/celebrate.png" mode="aspectFit" />
|
||||||
</view>
|
</view>
|
||||||
<text>新春贺卡</text>
|
<text>祝福贺卡</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="quick-item" @tap="handleQuickAction('fortune')">
|
<view class="quick-item" @tap="handleQuickAction('fortune')">
|
||||||
<view class="icon-box fortune-bg">
|
<view class="icon-box fortune-bg">
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 按心情创作 -->
|
<!-- 按心情创作 -->
|
||||||
<view class="section">
|
<!-- <view class="section">
|
||||||
<view class="section-header">
|
<view class="section-header">
|
||||||
<text class="section-title">按心情创作</text>
|
<text class="section-title">按心情创作</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -84,13 +84,13 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view> -->
|
||||||
|
|
||||||
<!-- 编辑精选 -->
|
<!-- 编辑精选 -->
|
||||||
<view class="section">
|
<view class="section">
|
||||||
<view class="section-header">
|
<view class="section-header">
|
||||||
<text class="section-title">编辑精选</text>
|
<text class="section-title">编辑精选</text>
|
||||||
<text class="view-all" @tap="viewAll">查看全部</text>
|
<!-- <text class="view-all" @tap="viewAll">查看全部</text> -->
|
||||||
</view>
|
</view>
|
||||||
<view class="featured-grid">
|
<view class="featured-grid">
|
||||||
<view
|
<view
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
/>
|
/>
|
||||||
<view class="user-meta">
|
<view class="user-meta">
|
||||||
<view class="user-name">{{ cardDetail?.blessingFrom }}</view>
|
<view class="user-name">{{ cardDetail?.blessingFrom }}</view>
|
||||||
<view class="user-msg">给你发来了一条新春祝福</view>
|
<view class="user-msg">给你发来了一条专属祝福</view>
|
||||||
<view class="year-tag">
|
<view class="year-tag">
|
||||||
<text class="fire-icon">🎉</text> {{ cardDetail?.year || 2026 }}
|
<text class="fire-icon">🎉</text> {{ cardDetail?.year || 2026 }}
|
||||||
{{ cardDetail?.festival || "丙午马年" }}
|
{{ cardDetail?.festival || "丙午马年" }}
|
||||||
@@ -83,8 +83,8 @@
|
|||||||
<text>🏮</text>
|
<text>🏮</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-content">
|
<view class="banner-content">
|
||||||
<text class="banner-title">去抽取新年运势</text>
|
<text class="banner-title">去抽取今日运势</text>
|
||||||
<text class="banner-desc">每日一签,开启你的新年好运</text>
|
<text class="banner-desc">每日一签,开启你的好运</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="banner-arrow">›</text>
|
<text class="banner-arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -93,8 +93,8 @@
|
|||||||
<text>🧧</text>
|
<text>🧧</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-content">
|
<view class="banner-content">
|
||||||
<text class="banner-title">去制作新年头像</text>
|
<text class="banner-title">换个好看头像吧</text>
|
||||||
<text class="banner-desc">定制专属头像,传递浓浓年味</text>
|
<text class="banner-desc">精选头像合集,找到你的专属风格</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="banner-arrow">›</text>
|
<text class="banner-arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -103,8 +103,8 @@
|
|||||||
<text>🖼</text>
|
<text>🖼</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="banner-content">
|
<view class="banner-content">
|
||||||
<text class="banner-title">去挑选新年壁纸</text>
|
<text class="banner-title">去挑选精美壁纸</text>
|
||||||
<text class="banner-desc">精选新年壁纸,让手机也过年</text>
|
<text class="banner-desc">换上精选壁纸,让手机也焕新</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="banner-arrow">›</text>
|
<text class="banner-arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -113,10 +113,10 @@
|
|||||||
<view class="page-footer">
|
<view class="page-footer">
|
||||||
<view class="footer-line">
|
<view class="footer-line">
|
||||||
<text class="line"></text>
|
<text class="line"></text>
|
||||||
<text class="text">2026 HAPPY NEW YEAR</text>
|
<text class="text">HAPPY EVERY DAY</text>
|
||||||
<text class="line"></text>
|
<text class="line"></text>
|
||||||
</view>
|
</view>
|
||||||
<view class="footer-sub">新春祝福 · 传递温情</view>
|
<view class="footer-sub">专属祝福 · 传递温情</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
@@ -132,7 +132,7 @@ import {
|
|||||||
onShareAppMessage,
|
onShareAppMessage,
|
||||||
onShareTimeline,
|
onShareTimeline,
|
||||||
} from "@dcloudio/uni-app";
|
} from "@dcloudio/uni-app";
|
||||||
import { getPageDetail } from "@/api/system.js";
|
import { getPageDetail, getShareReward } from "@/api/system";
|
||||||
import { getShareToken, saveViewRequest } from "@/utils/common.js";
|
import { getShareToken, saveViewRequest } from "@/utils/common.js";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
|
||||||
@@ -194,8 +194,9 @@ onUnload(() => {
|
|||||||
|
|
||||||
onShareAppMessage(async () => {
|
onShareAppMessage(async () => {
|
||||||
const token = await getShareToken("card_generate", cardDetail.value?.id);
|
const token = await getShareToken("card_generate", cardDetail.value?.id);
|
||||||
|
getShareReward({ scene: "card_generate" });
|
||||||
return {
|
return {
|
||||||
title: "送你一张精美的新春祝福卡片 🎊",
|
title: "送你一张精美的专属祝福卡片 🎊",
|
||||||
path: `/pages/detail/index?shareToken=${token || ""}`,
|
path: `/pages/detail/index?shareToken=${token || ""}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
cardDetail.value?.imageUrl ||
|
cardDetail.value?.imageUrl ||
|
||||||
@@ -206,7 +207,7 @@ onShareAppMessage(async () => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const token = await getShareToken("card_generate", cardDetail.value?.id);
|
const token = await getShareToken("card_generate", cardDetail.value?.id);
|
||||||
return {
|
return {
|
||||||
title: "送你一张精美的新春祝福卡片 🎊",
|
title: "送你一张精美的专属祝福卡片 🎊",
|
||||||
query: `shareToken=${token}`,
|
query: `shareToken=${token}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
cardDetail.value?.imageUrl ||
|
cardDetail.value?.imageUrl ||
|
||||||
|
|||||||
@@ -16,9 +16,9 @@
|
|||||||
/>
|
/>
|
||||||
<text class="banner-icon" v-else-if="!inviterName">✨</text>
|
<text class="banner-icon" v-else-if="!inviterName">✨</text>
|
||||||
<text class="banner-text" v-if="inviterName"
|
<text class="banner-text" v-if="inviterName"
|
||||||
>你的好友 {{ inviterName }} 正在抽取2026新年运势</text
|
>你的好友 {{ inviterName }} 正在抽取今日运势</text
|
||||||
>
|
>
|
||||||
<text class="banner-text" v-else>2026 灵马贺岁 · 开启你的新年好运</text>
|
<text class="banner-text" v-else>今日运势 · 开启你的好运</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="mini-btn" @click="goTest">
|
<view class="mini-btn" @click="goTest">
|
||||||
我也要测 <text class="mini-arrow">↗</text>
|
我也要测 <text class="mini-arrow">↗</text>
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
<!-- <view class="qr-box">
|
<!-- <view class="qr-box">
|
||||||
<view class="qr-placeholder"></view>
|
<view class="qr-placeholder"></view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="footer-text">2026 灵马贺岁 · 测出你的新年锦鲤关键词</view>
|
<view class="footer-text">2026 灵马贺岁 · 测出你的锦鲤关键词</view>
|
||||||
<view class="footer-sub">2026 HAPPY NEW YEAR</view>
|
<view class="footer-sub">2026 HAPPY NEW YEAR</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="fortune-page">
|
<view class="fortune-page">
|
||||||
<NavBar title="2026 新年运势" :transparent="true" color="#ffd700" />
|
<NavBar title="每日运势" :transparent="true" color="#ffd700" />
|
||||||
|
|
||||||
<!-- 初始状态:签筒 -->
|
<!-- 初始状态:签筒 -->
|
||||||
<view class="state-initial" v-if="status !== 'result'">
|
<view class="state-initial" v-if="status !== 'result'">
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
<text class="result-title">{{ currentFortune.title }}</text>
|
<text class="result-title">{{ currentFortune.title }}</text>
|
||||||
<view class="divider"></view>
|
<view class="divider"></view>
|
||||||
<text class="result-desc">{{ currentFortune.desc }}</text>
|
<text class="result-desc">{{ currentFortune.desc }}</text>
|
||||||
<text class="result-sub">旧岁千般皆如意,新年万事定称心。</text>
|
<text class="result-sub">过往千般皆如意,此后万事定称心。</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="card-footer">
|
<view class="card-footer">
|
||||||
<view class="footer-left">
|
<view class="footer-left">
|
||||||
@@ -125,19 +125,19 @@ import {
|
|||||||
onShareAppMessage,
|
onShareAppMessage,
|
||||||
onShareTimeline,
|
onShareTimeline,
|
||||||
} from "@dcloudio/uni-app";
|
} from "@dcloudio/uni-app";
|
||||||
import { abilityCheck } from "@/api/system.js";
|
|
||||||
import { drawFortune } from "@/api/fortune.js";
|
|
||||||
import { getShareReward } from "@/api/system.js";
|
|
||||||
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
|
||||||
import { useUserStore } from "@/stores/user";
|
|
||||||
import {
|
import {
|
||||||
getShareToken,
|
|
||||||
saveRemoteImageToLocal,
|
|
||||||
saveRecordRequest,
|
saveRecordRequest,
|
||||||
|
saveRemoteImageToLocal,
|
||||||
|
getShareToken,
|
||||||
saveViewRequest,
|
saveViewRequest,
|
||||||
trackRecord,
|
|
||||||
} from "@/utils/common.js";
|
} from "@/utils/common.js";
|
||||||
|
import { drawFortune } from "@/api/fortune.js";
|
||||||
|
import { abilityCheck } from "@/api/system.js";
|
||||||
|
import { checkAbilityAndHandle } from "@/utils/ability.js";
|
||||||
|
import { useUserStore } from "@/stores/user";
|
||||||
|
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
import { trackRecord } from "@/utils/common.js";
|
||||||
|
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const loginPopupRef = ref(null);
|
const loginPopupRef = ref(null);
|
||||||
@@ -185,7 +185,7 @@ onShareAppMessage(async () => {
|
|||||||
const shareToken = await getShareToken("fortune_draw", cardId.value);
|
const shareToken = await getShareToken("fortune_draw", cardId.value);
|
||||||
getRewardByShare();
|
getRewardByShare();
|
||||||
return {
|
return {
|
||||||
title: "马年运势我已经抽过了,你的会是什么?",
|
title: "今日运势我已经抽过了,你的会是什么?",
|
||||||
path: `${cardId.value ? `/pages/fortune/detail?shareToken=${shareToken}` : `/pages/fortune/index?shareToken=${shareToken}`}`,
|
path: `${cardId.value ? `/pages/fortune/detail?shareToken=${shareToken}` : `/pages/fortune/index?shareToken=${shareToken}`}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -195,7 +195,7 @@ onShareAppMessage(async () => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const shareToken = await getShareToken("fortune_timeline");
|
const shareToken = await getShareToken("fortune_timeline");
|
||||||
return {
|
return {
|
||||||
title: "新春到,抽灵签!快来测测你的新年运势 🏮",
|
title: "好运到,抽灵签!快来测测你的今年运势 🏮",
|
||||||
query: `shareToken=${shareToken}`,
|
query: `shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -238,10 +238,8 @@ const startShake = async () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (remainingCount.value <= 0) {
|
const canProceed = await checkAbilityAndHandle("fortune_draw");
|
||||||
uni.showToast({ title: "今日次数已用完", icon: "none" });
|
if (!canProceed) return;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
status.value = "shaking";
|
status.value = "shaking";
|
||||||
|
|
||||||
|
|||||||
792
pages/greeting/daily.vue
Normal file
792
pages/greeting/daily.vue
Normal file
@@ -0,0 +1,792 @@
|
|||||||
|
<template>
|
||||||
|
<view class="daily-page">
|
||||||
|
<NavBar title="每日精选" color="#333" />
|
||||||
|
|
||||||
|
<!-- Header -->
|
||||||
|
<view class="page-header">
|
||||||
|
<view class="header-left">
|
||||||
|
<uni-icons type="sun-filled" size="24" color="#ff9800" />
|
||||||
|
<text class="header-title">{{ greetingTitle }}</text>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="streak-badge">
|
||||||
|
<text>已连续问候</text>
|
||||||
|
<text class="streak-count">{{ streakDays }}</text>
|
||||||
|
<text>天</text>
|
||||||
|
<text class="fire-icon">🔥</text>
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Main Card -->
|
||||||
|
<view class="main-card-container">
|
||||||
|
<view
|
||||||
|
class="quote-card"
|
||||||
|
:style="
|
||||||
|
currentQuote.backgroundUrl
|
||||||
|
? {
|
||||||
|
backgroundImage: `url(${currentQuote.backgroundUrl})`,
|
||||||
|
backgroundSize: 'cover',
|
||||||
|
backgroundPosition: 'center',
|
||||||
|
}
|
||||||
|
: {}
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<view class="quote-icon">❝</view>
|
||||||
|
<view class="quote-content">
|
||||||
|
<text class="quote-text">{{ currentQuote.text }}</text>
|
||||||
|
<text class="quote-highlight" v-if="currentQuote.highlight">{{
|
||||||
|
currentQuote.highlight
|
||||||
|
}}</text>
|
||||||
|
</view>
|
||||||
|
<view class="quote-divider"></view>
|
||||||
|
<view class="quote-author" v-if="authorName">
|
||||||
|
<text>—— {{ authorName }} 的专属问候</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="card-actions">
|
||||||
|
<view class="refresh-btn" @tap="refreshQuote">
|
||||||
|
<uni-icons type="loop" size="16" color="#666" />
|
||||||
|
<text>换一句</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="author-edit-box">
|
||||||
|
<input
|
||||||
|
class="input"
|
||||||
|
type="text"
|
||||||
|
v-model="authorName"
|
||||||
|
placeholder="输入名字生成专属问候"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Categories -->
|
||||||
|
<view class="category-section">
|
||||||
|
<view class="category-grid">
|
||||||
|
<view
|
||||||
|
v-for="(cat, index) in scenes"
|
||||||
|
:key="index"
|
||||||
|
class="category-item"
|
||||||
|
@tap="selectCategory(cat.id)"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
class="cat-icon-box"
|
||||||
|
:class="{ active: currentCategory === cat.id }"
|
||||||
|
:style="{ background: cat.bg }"
|
||||||
|
>
|
||||||
|
<text class="cat-emoji">{{ cat.icon }}</text>
|
||||||
|
</view>
|
||||||
|
<text
|
||||||
|
class="cat-name"
|
||||||
|
:class="{ active: currentCategory === cat.id }"
|
||||||
|
>{{ cat.name }}</text
|
||||||
|
>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Hot List -->
|
||||||
|
<!-- <view class="hot-list-section">
|
||||||
|
<view class="section-title-row">
|
||||||
|
<view class="title-bar"></view>
|
||||||
|
<text class="section-title">今日最热榜单</text>
|
||||||
|
<text class="section-subtitle">REAL-TIME DATA</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="hot-list">
|
||||||
|
<view
|
||||||
|
v-for="(item, index) in hotList"
|
||||||
|
:key="index"
|
||||||
|
class="hot-item"
|
||||||
|
@tap="useHotItem(item)"
|
||||||
|
>
|
||||||
|
<view class="rank-icon">
|
||||||
|
<uni-icons
|
||||||
|
v-if="index === 0"
|
||||||
|
type="vip-filled"
|
||||||
|
size="24"
|
||||||
|
color="#ffbc00"
|
||||||
|
/>
|
||||||
|
<uni-icons
|
||||||
|
v-else-if="index === 1"
|
||||||
|
type="vip-filled"
|
||||||
|
size="24"
|
||||||
|
color="#b0bec5"
|
||||||
|
/>
|
||||||
|
<uni-icons v-else type="vip-filled" size="24" color="#cd7f32" />
|
||||||
|
</view>
|
||||||
|
<view class="hot-content">
|
||||||
|
<text class="hot-text">{{ item.text }}</text>
|
||||||
|
<view class="hot-meta">
|
||||||
|
<text class="fire">🔥</text>
|
||||||
|
<text class="hot-count">{{ item.count }}w 人正在使用</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<uni-icons type="right" size="16" color="#ccc" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view> -->
|
||||||
|
|
||||||
|
<!-- Bottom Actions -->
|
||||||
|
<view class="bottom-actions safe-area-bottom">
|
||||||
|
<view class="action-btn-group">
|
||||||
|
<button class="save-btn" @tap="saveCard">
|
||||||
|
<view class="icon-circle">
|
||||||
|
<uni-icons type="download" size="20" color="#333" />
|
||||||
|
</view>
|
||||||
|
<text class="btn-text">保存</text>
|
||||||
|
</button>
|
||||||
|
<button class="send-btn" open-type="share">
|
||||||
|
<uni-icons type="paperplane-filled" size="20" color="#fff" />
|
||||||
|
<text>立即发送今日问候</text>
|
||||||
|
</button>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 登录弹窗 -->
|
||||||
|
<LoginPopup />
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed, onMounted } from "vue";
|
||||||
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
import { onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
|
||||||
|
import { useUserStore } from "@/stores/user";
|
||||||
|
import {
|
||||||
|
getDailyInfo,
|
||||||
|
getDailyRandomGreeting,
|
||||||
|
saveDailyGreeting,
|
||||||
|
} from "@/api/daily";
|
||||||
|
import {
|
||||||
|
getShareToken,
|
||||||
|
saveViewRequest,
|
||||||
|
generateObjectId,
|
||||||
|
} from "@/utils/common.js";
|
||||||
|
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
||||||
|
|
||||||
|
const userStore = useUserStore();
|
||||||
|
const streakDays = ref(0);
|
||||||
|
|
||||||
|
const greetingTitle = computed(() => {
|
||||||
|
const hour = new Date().getHours();
|
||||||
|
if (hour < 9) return "早安,今天也要好运";
|
||||||
|
if (hour < 12) return "上午好,元气满满";
|
||||||
|
if (hour < 14) return "午安,记得休息";
|
||||||
|
if (hour < 18) return "下午好,继续加油";
|
||||||
|
return "晚安,好梦相伴";
|
||||||
|
});
|
||||||
|
|
||||||
|
const scenes = ref([]);
|
||||||
|
const currentCategory = ref("");
|
||||||
|
|
||||||
|
const currentQuote = ref({
|
||||||
|
text: "",
|
||||||
|
highlight: "",
|
||||||
|
author: "",
|
||||||
|
backgroundUrl: "",
|
||||||
|
id: "",
|
||||||
|
});
|
||||||
|
const authorName = ref("");
|
||||||
|
|
||||||
|
const loadDailyInfo = async () => {
|
||||||
|
try {
|
||||||
|
const res = await getDailyInfo();
|
||||||
|
if (res) {
|
||||||
|
streakDays.value = res.streakDays || 0;
|
||||||
|
if (res.lastSignature && !authorName.value) {
|
||||||
|
authorName.value = res.lastSignature;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (res.scenes && res.scenes.length > 0) {
|
||||||
|
scenes.value = res.scenes;
|
||||||
|
if (!currentCategory.value) {
|
||||||
|
currentCategory.value = res.scenes[0].id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (res.mainHero) {
|
||||||
|
const { greetingContent, backgroundUrl, greetingId, greetingScene } =
|
||||||
|
res.mainHero;
|
||||||
|
let text = "";
|
||||||
|
let highlight = "";
|
||||||
|
if (greetingContent) {
|
||||||
|
const parts = greetingContent.split(" ");
|
||||||
|
if (parts.length > 1) {
|
||||||
|
highlight = parts.pop();
|
||||||
|
text = parts.join("\n");
|
||||||
|
} else {
|
||||||
|
text = greetingContent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
currentQuote.value = {
|
||||||
|
text,
|
||||||
|
highlight,
|
||||||
|
author: authorName.value, // Will be reactive in template via authorName ref
|
||||||
|
backgroundUrl: backgroundUrl || "",
|
||||||
|
id: greetingId,
|
||||||
|
content: greetingContent,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (greetingScene) {
|
||||||
|
currentCategory.value = greetingScene;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to load daily info:", e);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
loadDailyInfo();
|
||||||
|
});
|
||||||
|
|
||||||
|
const hotList = ref([
|
||||||
|
{ text: "新的一年,愿灵马带走烦恼...", count: "2.4" },
|
||||||
|
{ text: "事事顺意,岁岁平安。", count: "1.8" },
|
||||||
|
]);
|
||||||
|
|
||||||
|
const selectCategory = (id) => {
|
||||||
|
currentCategory.value = id;
|
||||||
|
refreshQuote();
|
||||||
|
};
|
||||||
|
|
||||||
|
const refreshQuote = async () => {
|
||||||
|
try {
|
||||||
|
const res = await getDailyRandomGreeting(currentCategory.value);
|
||||||
|
if (res) {
|
||||||
|
const { greetingContent, backgroundUrl, greetingId } = res;
|
||||||
|
let text = "";
|
||||||
|
let highlight = "";
|
||||||
|
if (greetingContent) {
|
||||||
|
const parts = greetingContent.split(" ");
|
||||||
|
if (parts.length > 1) {
|
||||||
|
highlight = parts.pop();
|
||||||
|
text = parts.join("\n");
|
||||||
|
} else {
|
||||||
|
text = greetingContent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
currentQuote.value = {
|
||||||
|
...currentQuote.value,
|
||||||
|
text,
|
||||||
|
highlight,
|
||||||
|
backgroundUrl: backgroundUrl || "",
|
||||||
|
id: greetingId,
|
||||||
|
content: greetingContent,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to refresh quote:", e);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const useHotItem = (item) => {
|
||||||
|
currentQuote.value = {
|
||||||
|
...currentQuote.value,
|
||||||
|
text: item.text,
|
||||||
|
highlight: "",
|
||||||
|
author: "热榜推荐",
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const saveCard = () => {
|
||||||
|
uni.showToast({ title: "保存功能开发中", icon: "none" });
|
||||||
|
};
|
||||||
|
|
||||||
|
// const sendGreeting = () => {
|
||||||
|
// // Use uni.navigateTo for normal flow if not open-type="share"
|
||||||
|
// // But here we might want to trigger share directly or just navigate to make page as before
|
||||||
|
// // Based on user request "share after friend opens page", it implies we need to handle share
|
||||||
|
// // Let's keep the navigation to make page for "Sending" (which usually means making a card first)
|
||||||
|
// // BUT also add onShareAppMessage so the top right menu share works
|
||||||
|
// uni.navigateTo({
|
||||||
|
// url: `/pages/make/index?scene=daily&content=${encodeURIComponent(
|
||||||
|
// currentQuote.value.text,
|
||||||
|
// )}&author=${encodeURIComponent(authorName.value)}`,
|
||||||
|
// });
|
||||||
|
// };
|
||||||
|
|
||||||
|
onShareAppMessage(async (options) => {
|
||||||
|
const id = createGreeting();
|
||||||
|
const shareToken = await getShareToken("daily_greeting", id);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `${authorName.value}给你发来了一份今日问候`,
|
||||||
|
path: "/pages/greeting/share?shareToken=" + shareToken,
|
||||||
|
};
|
||||||
|
|
||||||
|
const fromUser = userStore.userInfo?.nickName || "神秘好友";
|
||||||
|
const fromAvatar = userStore.userInfo?.avatarUrl || "";
|
||||||
|
|
||||||
|
// Log the share attempt and path
|
||||||
|
console.log("Sharing daily greeting", {
|
||||||
|
res,
|
||||||
|
fromUser,
|
||||||
|
content: currentQuote.value.text,
|
||||||
|
});
|
||||||
|
|
||||||
|
const path = `/pages/greeting/share?content=${encodeURIComponent(
|
||||||
|
currentQuote.value.text,
|
||||||
|
)}&author=${encodeURIComponent(
|
||||||
|
authorName.value || currentQuote.value.author,
|
||||||
|
)}&fromUser=${encodeURIComponent(fromUser)}&fromAvatar=${encodeURIComponent(
|
||||||
|
fromAvatar,
|
||||||
|
)}`;
|
||||||
|
|
||||||
|
console.log("Share path:", path);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `${fromUser}给你发来了一份今日问候`,
|
||||||
|
path: path,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
const createGreeting = () => {
|
||||||
|
const id = generateObjectId();
|
||||||
|
saveDailyGreeting({
|
||||||
|
id,
|
||||||
|
greetingId: currentQuote.value.id,
|
||||||
|
content: currentQuote.value.content,
|
||||||
|
signature: authorName.value,
|
||||||
|
imageUrl: currentQuote.value.backgroundUrl,
|
||||||
|
sceneId: currentCategory.value,
|
||||||
|
});
|
||||||
|
return id;
|
||||||
|
};
|
||||||
|
|
||||||
|
onShareTimeline(() => {
|
||||||
|
const fromUser = userStore.userInfo?.nickName || "神秘好友";
|
||||||
|
return {
|
||||||
|
title: `${fromUser}给你发来了一份今日问候`,
|
||||||
|
query: `content=${encodeURIComponent(
|
||||||
|
currentQuote.value.text,
|
||||||
|
)}&author=${encodeURIComponent(
|
||||||
|
authorName.value || currentQuote.value.author,
|
||||||
|
)}`,
|
||||||
|
imageUrl: "", // Optional: add a custom image if needed
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.daily-page {
|
||||||
|
min-height: 100vh;
|
||||||
|
background: #fbfbf9;
|
||||||
|
padding-bottom: 200rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-header {
|
||||||
|
padding: 0 32rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
margin-top: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
font-size: 36rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.streak-badge {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
padding: 6rpx 20rpx;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
font-size: 22rpx;
|
||||||
|
color: #666;
|
||||||
|
border: 1rpx solid #eee;
|
||||||
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
|
.streak-count {
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ff3b30;
|
||||||
|
margin: 0 4rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fire-icon {
|
||||||
|
margin-left: 4rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-header {
|
||||||
|
padding: 0 32rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main Card */
|
||||||
|
.main-card-container {
|
||||||
|
padding: 0 40rpx;
|
||||||
|
margin-bottom: 80rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-card {
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 40rpx;
|
||||||
|
padding: 60rpx 40rpx 40rpx;
|
||||||
|
box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.08);
|
||||||
|
border: 4rpx solid #f5e6d3; /* Gold-ish border */
|
||||||
|
position: relative;
|
||||||
|
min-height: 600rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
/* Inner Border Effect */
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 12rpx;
|
||||||
|
border: 2rpx solid #f9f3e8;
|
||||||
|
border-radius: 32rpx;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-icon {
|
||||||
|
font-size: 80rpx;
|
||||||
|
color: #f5e6d3;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-content {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 60rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-text {
|
||||||
|
font-size: 40rpx;
|
||||||
|
color: #333;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1.6;
|
||||||
|
font-family: "Songti SC", serif;
|
||||||
|
display: block;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-highlight {
|
||||||
|
display: block;
|
||||||
|
font-size: 44rpx;
|
||||||
|
color: #d81e06;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-top: 20rpx;
|
||||||
|
font-family: "Songti SC", serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-divider {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 2rpx;
|
||||||
|
background: #eee;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-author {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999;
|
||||||
|
margin-bottom: 60rpx;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-actions {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.refresh-btn {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12rpx;
|
||||||
|
padding: 16rpx 32rpx;
|
||||||
|
background: #fff;
|
||||||
|
border: 1rpx solid #eee;
|
||||||
|
border-radius: 40rpx;
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #666;
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background: #f5f5f5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.author-edit-box {
|
||||||
|
flex: 1;
|
||||||
|
margin-left: 24rpx;
|
||||||
|
background: #f9f9f9;
|
||||||
|
border: 2rpx solid #eee;
|
||||||
|
border-radius: 40rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 24rpx;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
|
||||||
|
&:active,
|
||||||
|
&:focus-within {
|
||||||
|
background: #fff;
|
||||||
|
border-color: #ff9800;
|
||||||
|
box-shadow: 0 4rpx 16rpx rgba(255, 152, 0, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999;
|
||||||
|
margin-right: 12rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input {
|
||||||
|
flex: 1;
|
||||||
|
height: 100%;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Categories */
|
||||||
|
.category-section {
|
||||||
|
padding: 0 32rpx;
|
||||||
|
margin-bottom: 60rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-grid {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cat-icon-box {
|
||||||
|
width: 100rpx;
|
||||||
|
height: 100rpx;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
transition: all 0.2s;
|
||||||
|
border: 2rpx solid transparent;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
transform: translateY(-4rpx);
|
||||||
|
box-shadow: 0 8rpx 20rpx rgba(0, 0, 0, 0.08);
|
||||||
|
border-color: rgba(0, 0, 0, 0.05);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cat-emoji {
|
||||||
|
font-size: 48rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cat-name {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #666;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
color: #333;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hot List */
|
||||||
|
.hot-list-section {
|
||||||
|
padding: 0 32rpx;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-bar {
|
||||||
|
width: 8rpx;
|
||||||
|
height: 32rpx;
|
||||||
|
background: #d4a017;
|
||||||
|
border-radius: 4rpx;
|
||||||
|
margin-right: 16rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
margin-right: 16rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-subtitle {
|
||||||
|
font-size: 20rpx;
|
||||||
|
color: #ccc;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hot-list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hot-item {
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 24rpx;
|
||||||
|
padding: 24rpx 32rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.02);
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background: #f9f9f9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.rank-icon {
|
||||||
|
margin-right: 24rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hot-content {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hot-text {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 8rpx;
|
||||||
|
display: block;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 450rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hot-meta {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 22rpx;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fire {
|
||||||
|
color: #ff3b30;
|
||||||
|
margin-right: 4rpx;
|
||||||
|
font-size: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bottom Actions */
|
||||||
|
.bottom-actions {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background: #fff; /* Glass effect if supported */
|
||||||
|
background: rgba(255, 255, 255, 0.95);
|
||||||
|
backdrop-filter: blur(20rpx);
|
||||||
|
padding: 20rpx 32rpx;
|
||||||
|
box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.05);
|
||||||
|
z-index: 100;
|
||||||
|
padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-btn-group {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.save-btn {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1;
|
||||||
|
border: none;
|
||||||
|
width: 100rpx;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-circle {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #f5f5f5;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 8rpx;
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-text {
|
||||||
|
font-size: 20rpx;
|
||||||
|
color: #666;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active .icon-circle {
|
||||||
|
background: #eee;
|
||||||
|
transform: scale(0.95);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.send-btn {
|
||||||
|
flex: 1;
|
||||||
|
height: 96rpx;
|
||||||
|
border-radius: 48rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 16rpx;
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
border: none;
|
||||||
|
background: #8e0000; /* Deep Red/Brown */
|
||||||
|
color: #fff;
|
||||||
|
background: linear-gradient(135deg, #8e0000 0%, #600000 100%);
|
||||||
|
box-shadow: 0 8rpx 24rpx rgba(142, 0, 0, 0.3);
|
||||||
|
transition: all 0.2s;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
transform: scale(0.98);
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(142, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
285
pages/greeting/share.vue
Normal file
285
pages/greeting/share.vue
Normal file
@@ -0,0 +1,285 @@
|
|||||||
|
<template>
|
||||||
|
<view class="share-page">
|
||||||
|
<NavBar title="今日问候" :transparent="true" color="#333" />
|
||||||
|
|
||||||
|
<!-- Top User Info -->
|
||||||
|
<view class="user-header" :style="{ paddingTop: navBarHeight + 'px' }">
|
||||||
|
<image
|
||||||
|
class="user-avatar"
|
||||||
|
:src="fromAvatar || defaultAvatar"
|
||||||
|
mode="aspectFill"
|
||||||
|
/>
|
||||||
|
<view class="user-info">
|
||||||
|
<view class="user-name">
|
||||||
|
<text>你的好友</text>
|
||||||
|
<text class="highlight-name">{{
|
||||||
|
author || fromUser || "神秘好友"
|
||||||
|
}}</text>
|
||||||
|
</view>
|
||||||
|
<text class="user-desc">给你发来了一份今日问候</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Main Card -->
|
||||||
|
<view class="main-card-container">
|
||||||
|
<view
|
||||||
|
class="quote-card"
|
||||||
|
:style="
|
||||||
|
backgroundUrl
|
||||||
|
? {
|
||||||
|
backgroundImage: `url(${backgroundUrl})`,
|
||||||
|
backgroundSize: 'cover',
|
||||||
|
backgroundPosition: 'center',
|
||||||
|
}
|
||||||
|
: {}
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<view class="quote-icon">❝</view>
|
||||||
|
<view class="quote-content">
|
||||||
|
<text class="quote-text">{{ content }}</text>
|
||||||
|
<text class="quote-highlight" v-if="highlight">{{ highlight }}</text>
|
||||||
|
</view>
|
||||||
|
<view class="quote-divider"></view>
|
||||||
|
<view class="quote-author">
|
||||||
|
<text>—— {{ author ? ` ${author} 的专属问候` : "专属问候" }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Action Buttons -->
|
||||||
|
<view class="action-buttons">
|
||||||
|
<button class="btn primary-btn" @tap="navToMake">
|
||||||
|
<uni-icons type="paperplane-filled" size="20" color="#fff" />
|
||||||
|
<text>我也要送问候</text>
|
||||||
|
</button>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="footer-tip safe-area-bottom">
|
||||||
|
<text>愿每一天都充满阳光与希望</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref } from "vue";
|
||||||
|
import { onLoad, onShareAppMessage } from "@dcloudio/uni-app";
|
||||||
|
import { getBavBarHeight } from "@/utils/system";
|
||||||
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
import { getPageDetail } from "@/api/system";
|
||||||
|
|
||||||
|
const navBarHeight = getBavBarHeight();
|
||||||
|
const defaultAvatar =
|
||||||
|
"https://file.lihailezzc.com/resource/96023631c6ab9c3496b7620097af3d6f.png";
|
||||||
|
|
||||||
|
const fromUser = ref("");
|
||||||
|
const fromAvatar = ref("");
|
||||||
|
const content = ref("万事顺遂\n岁岁平安\n愿你的生活\n日日有小确幸");
|
||||||
|
const author = ref("陈小明");
|
||||||
|
const highlight = ref("");
|
||||||
|
const backgroundUrl = ref("");
|
||||||
|
|
||||||
|
onLoad(async (options) => {
|
||||||
|
if (options.shareToken) {
|
||||||
|
const detail = await getPageDetail(options.shareToken);
|
||||||
|
if (detail) {
|
||||||
|
if (detail.from) {
|
||||||
|
fromUser.value = detail.from.nickname;
|
||||||
|
fromAvatar.value = detail.from.avatar;
|
||||||
|
}
|
||||||
|
if (detail.content) {
|
||||||
|
const parts = detail.content.split(" ");
|
||||||
|
if (parts.length > 1) {
|
||||||
|
highlight.value = parts.pop();
|
||||||
|
content.value = parts.join("\n");
|
||||||
|
} else {
|
||||||
|
content.value = detail.content;
|
||||||
|
highlight.value = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
author.value = detail.signature || "专属问候";
|
||||||
|
backgroundUrl.value = detail.imageUrl || "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const navToMake = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/greeting/daily",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
onShareAppMessage(() => {
|
||||||
|
return {
|
||||||
|
title: `${fromUser.value || "好友"}给你发来了一份今日问候`,
|
||||||
|
path: `/pages/greeting/share?content=${encodeURIComponent(content.value)}&author=${encodeURIComponent(author.value)}&fromUser=${encodeURIComponent(fromUser.value)}&fromAvatar=${encodeURIComponent(fromAvatar.value)}`,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.share-page {
|
||||||
|
min-height: 100vh;
|
||||||
|
background: #fbfbf9;
|
||||||
|
padding-bottom: 200rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-header {
|
||||||
|
padding: 20rpx 40rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 20rpx;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-avatar {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 2rpx solid #fff;
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-name {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 4rpx;
|
||||||
|
|
||||||
|
.highlight-name {
|
||||||
|
color: #d81e06;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 8rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-desc {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Greeting Card - Adapted from daily.vue quote-card */
|
||||||
|
.main-card-container {
|
||||||
|
padding: 0 40rpx;
|
||||||
|
margin-bottom: 80rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-card {
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 40rpx;
|
||||||
|
padding: 60rpx 40rpx 40rpx;
|
||||||
|
box-shadow: 0 20rpx 60rpx rgba(0, 0, 0, 0.08);
|
||||||
|
border: 4rpx solid #f5e6d3; /* Gold-ish border */
|
||||||
|
position: relative;
|
||||||
|
min-height: 700rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
/* Inner Border Effect */
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 12rpx;
|
||||||
|
border: 2rpx solid #f9f3e8;
|
||||||
|
border-radius: 32rpx;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-icon {
|
||||||
|
font-size: 80rpx;
|
||||||
|
color: #f5e6d3;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-content {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 60rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-text {
|
||||||
|
font-size: 40rpx;
|
||||||
|
color: #333;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1.6;
|
||||||
|
font-family: "Songti SC", serif;
|
||||||
|
display: block;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-highlight {
|
||||||
|
display: block;
|
||||||
|
font-size: 44rpx;
|
||||||
|
color: #d81e06;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-top: 20rpx;
|
||||||
|
font-family: "Songti SC", serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-divider {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 2rpx;
|
||||||
|
background: #eee;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.quote-author {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #999;
|
||||||
|
font-style: italic;
|
||||||
|
font-family: "Songti SC", serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-buttons {
|
||||||
|
padding: 0 60rpx;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 12rpx;
|
||||||
|
height: 96rpx;
|
||||||
|
border-radius: 48rpx;
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
border: none;
|
||||||
|
transition: all 0.2s;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
transform: scale(0.98);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.primary-btn {
|
||||||
|
background: linear-gradient(135deg, #8e0000 0%, #600000 100%);
|
||||||
|
color: #fff;
|
||||||
|
box-shadow: 0 8rpx 24rpx rgba(142, 0, 0, 0.3);
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(142, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-tip {
|
||||||
|
text-align: center;
|
||||||
|
padding: 40rpx 0;
|
||||||
|
|
||||||
|
text {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ccc;
|
||||||
|
letter-spacing: 4rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -8,9 +8,9 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="hero-title">
|
<view class="hero-title">
|
||||||
<text class="year">2026</text>
|
<text class="year">2026</text>
|
||||||
<text class="main">新春祝福</text>
|
<text class="main">专属祝福</text>
|
||||||
</view>
|
</view>
|
||||||
<text class="hero-sub">新年快乐,万事如意!</text>
|
<text class="hero-sub">送你一份好运祝福,万事如意!</text>
|
||||||
<!-- <image class="hero-decor" src="https://file.lihailezzc.com/resource/58c8d19e5f2d9c958a7b8b9f44b8c3e3.png" mode="aspectFill" /> -->
|
<!-- <image class="hero-decor" src="https://file.lihailezzc.com/resource/58c8d19e5f2d9c958a7b8b9f44b8c3e3.png" mode="aspectFill" /> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -137,7 +137,12 @@ import {
|
|||||||
onShow,
|
onShow,
|
||||||
} from "@dcloudio/uni-app";
|
} from "@dcloudio/uni-app";
|
||||||
import { getBavBarHeight } from "@/utils/system";
|
import { getBavBarHeight } from "@/utils/system";
|
||||||
import { getRecommendList, getRandomGreeting, getTipsList } from "@/api/system";
|
import {
|
||||||
|
getRecommendList,
|
||||||
|
getRandomGreeting,
|
||||||
|
getTipsList,
|
||||||
|
getShareReward,
|
||||||
|
} from "@/api/system";
|
||||||
import { getShareToken, saveViewRequest, trackRecord } from "@/utils/common.js";
|
import { getShareToken, saveViewRequest, trackRecord } from "@/utils/common.js";
|
||||||
|
|
||||||
const countdownText = ref("");
|
const countdownText = ref("");
|
||||||
@@ -210,8 +215,9 @@ onLoad((options) => {
|
|||||||
|
|
||||||
onShareAppMessage(async () => {
|
onShareAppMessage(async () => {
|
||||||
const shareToken = await getShareToken("index");
|
const shareToken = await getShareToken("index");
|
||||||
|
getShareReward({ scene: "index" });
|
||||||
return {
|
return {
|
||||||
title: "新年好运已送达 🎊|祝福卡·头像·壁纸",
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
path: `/pages/index/index?shareToken=${shareToken}`,
|
path: `/pages/index/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -221,7 +227,7 @@ onShareAppMessage(async () => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const shareToken = await getShareToken("index_timeline");
|
const shareToken = await getShareToken("index_timeline");
|
||||||
return {
|
return {
|
||||||
title: "新年好运已送达 🎊|祝福卡·头像·壁纸",
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
query: `shareToken=${shareToken}`,
|
query: `shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -270,20 +276,20 @@ const onNoticeTap = (tip) => {
|
|||||||
|
|
||||||
const features = ref([
|
const features = ref([
|
||||||
{
|
{
|
||||||
title: "新春祝福卡片",
|
title: "专属祝福卡片",
|
||||||
subtitle: "定制专属贺卡吧",
|
subtitle: "定制专属贺卡吧",
|
||||||
icon: "/static/icon/celebrate.png",
|
icon: "/static/icon/celebrate.png",
|
||||||
type: "card",
|
type: "card",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "新年运势",
|
title: "专属运势",
|
||||||
subtitle: "抽取新年关键词",
|
subtitle: "抽取专属关键词",
|
||||||
icon: "/static/icon/yunshi.png",
|
icon: "/static/icon/yunshi.png",
|
||||||
type: "fortune",
|
type: "fortune",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "新春头像",
|
title: "爆款头像",
|
||||||
subtitle: "焕上节日新饰",
|
subtitle: "焕上精美头像",
|
||||||
icon: "/static/icon/guashi.png",
|
icon: "/static/icon/guashi.png",
|
||||||
type: "avatar_decor",
|
type: "avatar_decor",
|
||||||
},
|
},
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
1135
pages/index/index_old.vue
Normal file
1135
pages/index/index_old.vue
Normal file
File diff suppressed because it is too large
Load Diff
@@ -44,7 +44,7 @@
|
|||||||
mode="aspectFill"
|
mode="aspectFill"
|
||||||
/>
|
/>
|
||||||
<view class="card-overlay">
|
<view class="card-overlay">
|
||||||
<view class="watermark">年禧集.马年春节祝福</view>
|
<view class="watermark">精美头像壁纸祝福</view>
|
||||||
<!-- 选中的标题图片 -->
|
<!-- 选中的标题图片 -->
|
||||||
<image
|
<image
|
||||||
v-if="currentTitle"
|
v-if="currentTitle"
|
||||||
@@ -169,6 +169,21 @@
|
|||||||
<view v-if="title?.id === currentTitle?.id" class="tpl-check"
|
<view v-if="title?.id === currentTitle?.id" class="tpl-check"
|
||||||
>✔</view
|
>✔</view
|
||||||
>
|
>
|
||||||
|
<!-- Lock Overlay -->
|
||||||
|
<view
|
||||||
|
v-if="!title.isUnlock && title.unlockType"
|
||||||
|
class="lock-overlay"
|
||||||
|
>
|
||||||
|
<!-- Badge -->
|
||||||
|
<view class="unlock-badge" :class="title.unlockType">
|
||||||
|
{{ getUnlockLabel(title.unlockType) }}
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Center Lock -->
|
||||||
|
<view class="center-lock">
|
||||||
|
<uni-icons type="locked-filled" size="18" color="#fff" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="loadingTitles" class="loading-more">加载中...</view>
|
<view v-if="loadingTitles" class="loading-more">加载中...</view>
|
||||||
@@ -203,6 +218,21 @@
|
|||||||
<view v-if="tpl?.id === currentTemplate?.id" class="tpl-check"
|
<view v-if="tpl?.id === currentTemplate?.id" class="tpl-check"
|
||||||
>✔</view
|
>✔</view
|
||||||
>
|
>
|
||||||
|
<!-- Lock Overlay -->
|
||||||
|
<view
|
||||||
|
v-if="!tpl.isUnlock && tpl.unlockType"
|
||||||
|
class="lock-overlay"
|
||||||
|
>
|
||||||
|
<!-- Badge -->
|
||||||
|
<view class="unlock-badge" :class="tpl.unlockType">
|
||||||
|
{{ getUnlockLabel(tpl.unlockType) }}
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Center Lock -->
|
||||||
|
<view class="center-lock">
|
||||||
|
<uni-icons type="locked-filled" size="18" color="#fff" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="loadingTemplates" class="loading-more"
|
<view v-if="loadingTemplates" class="loading-more"
|
||||||
@@ -485,6 +515,52 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</uni-popup>
|
</uni-popup>
|
||||||
|
|
||||||
|
<!-- Scene Selection Popup -->
|
||||||
|
<uni-popup ref="scenePopup" type="center" :is-mask-click="false">
|
||||||
|
<view class="scene-popup">
|
||||||
|
<view class="scene-header">
|
||||||
|
<text class="scene-title">选择祝福场景</text>
|
||||||
|
<text class="scene-subtitle">挑选一个场景,开启专属祝福</text>
|
||||||
|
<view class="scene-divider">
|
||||||
|
<view class="line"></view>
|
||||||
|
<uni-icons
|
||||||
|
type="cloud-upload-filled"
|
||||||
|
size="16"
|
||||||
|
color="#E6B800"
|
||||||
|
></uni-icons>
|
||||||
|
<view class="line"></view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="scene-grid">
|
||||||
|
<view
|
||||||
|
class="scene-item"
|
||||||
|
v-for="(scene, index) in scenes"
|
||||||
|
:key="index"
|
||||||
|
@tap="selectScene(scene)"
|
||||||
|
>
|
||||||
|
<view class="scene-icon-box" :style="{ background: scene.bgColor }">
|
||||||
|
<image
|
||||||
|
v-if="scene.icon && scene.icon.includes('/')"
|
||||||
|
:src="scene.icon"
|
||||||
|
mode="aspectFit"
|
||||||
|
style="width: 52rpx; height: 52rpx"
|
||||||
|
/>
|
||||||
|
<uni-icons
|
||||||
|
v-else
|
||||||
|
:type="scene.icon || 'star-filled'"
|
||||||
|
size="26"
|
||||||
|
:color="scene.color"
|
||||||
|
></uni-icons>
|
||||||
|
</view>
|
||||||
|
<text class="scene-name">{{ scene.name }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="skip-btn" @tap="skipScene">跳过,直接制作</view>
|
||||||
|
</view>
|
||||||
|
</uni-popup>
|
||||||
|
<LoginPopup ref="loginPopupRef" @logind="handleLogind" />
|
||||||
|
<RewardAd ref="rewardAdRef" @onReward="handleAdReward" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -499,7 +575,9 @@ import {
|
|||||||
getCardTemplateTitleList,
|
getCardTemplateTitleList,
|
||||||
getCardMusicList,
|
getCardMusicList,
|
||||||
} from "@/api/make";
|
} from "@/api/make";
|
||||||
import { abilityCheck, getShareReward, msgCheckApi } from "@/api/system";
|
import { getGreetingSceneList } from "@/api/card";
|
||||||
|
import { getShareReward, msgCheckApi, watchAdReward } from "@/api/system";
|
||||||
|
import { checkAbilityAndHandle, getUnlockLabel } from "@/utils/ability.js";
|
||||||
import {
|
import {
|
||||||
onShareAppMessage,
|
onShareAppMessage,
|
||||||
onShareTimeline,
|
onShareTimeline,
|
||||||
@@ -515,8 +593,11 @@ import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
|||||||
import { saveRecordRequest, uploadImage, trackRecord } from "@/utils/common.js";
|
import { saveRecordRequest, uploadImage, trackRecord } from "@/utils/common.js";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
|
||||||
|
import RewardAd from "@/components/RewardAd/RewardAd.vue";
|
||||||
|
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const loginPopupRef = ref(null);
|
const loginPopupRef = ref(null);
|
||||||
|
const rewardAdRef = ref(null);
|
||||||
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
||||||
|
|
||||||
const DEFAULT_AVATAR =
|
const DEFAULT_AVATAR =
|
||||||
@@ -878,10 +959,6 @@ const userOffsetY = ref(0);
|
|||||||
const shareToken = ref("");
|
const shareToken = ref("");
|
||||||
|
|
||||||
onLoad((options) => {
|
onLoad((options) => {
|
||||||
getTemplateList();
|
|
||||||
getTemplateContentList();
|
|
||||||
getTemplateTitleList();
|
|
||||||
getMusicList();
|
|
||||||
if (options.shareToken) {
|
if (options.shareToken) {
|
||||||
shareToken.value = options.shareToken;
|
shareToken.value = options.shareToken;
|
||||||
}
|
}
|
||||||
@@ -889,8 +966,77 @@ onLoad((options) => {
|
|||||||
eventName: "make_page_visit",
|
eventName: "make_page_visit",
|
||||||
eventType: `visit`,
|
eventType: `visit`,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (options.scene) {
|
||||||
|
currentScene.value = options.scene;
|
||||||
|
loadData();
|
||||||
|
} else {
|
||||||
|
setTimeout(() => {
|
||||||
|
scenePopup.value.open();
|
||||||
|
}, 200);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.content) {
|
||||||
|
blessingText.value = { content: decodeURIComponent(options.content) };
|
||||||
|
}
|
||||||
|
if (options.author) {
|
||||||
|
signatureName.value = decodeURIComponent(options.author);
|
||||||
|
}
|
||||||
|
fetchSceneList();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const loadData = () => {
|
||||||
|
getTemplateList();
|
||||||
|
getTemplateContentList();
|
||||||
|
getTemplateTitleList();
|
||||||
|
getMusicList();
|
||||||
|
};
|
||||||
|
|
||||||
|
const currentScene = ref("");
|
||||||
|
const scenePopup = ref(null);
|
||||||
|
const scenes = ref([]);
|
||||||
|
|
||||||
|
const SCENE_PALETTE = [
|
||||||
|
{ color: "#FF3B30", bgColor: "#FFF5F5" },
|
||||||
|
{ color: "#FF9500", bgColor: "#FFF8E5" },
|
||||||
|
{ color: "#FFCC00", bgColor: "#FFFBE6" },
|
||||||
|
{ color: "#FF2D55", bgColor: "#FFF0F5" },
|
||||||
|
{ color: "#FF5E3A", bgColor: "#FFF2F0" },
|
||||||
|
{ color: "#8B572A", bgColor: "#F9F0E6" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const fetchSceneList = async () => {
|
||||||
|
try {
|
||||||
|
const res = await getGreetingSceneList("daily");
|
||||||
|
if (res && Array.isArray(res)) {
|
||||||
|
scenes.value = res.map((item, index) => {
|
||||||
|
const style = SCENE_PALETTE[index % SCENE_PALETTE.length];
|
||||||
|
return {
|
||||||
|
name: item.sceneName,
|
||||||
|
value: item.scene,
|
||||||
|
icon: item.imageUrl,
|
||||||
|
color: style.color,
|
||||||
|
bgColor: style.bgColor,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("fetchSceneList error", e);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectScene = (scene) => {
|
||||||
|
currentScene.value = scene.value;
|
||||||
|
scenePopup.value.close();
|
||||||
|
loadData();
|
||||||
|
};
|
||||||
|
|
||||||
|
const skipScene = () => {
|
||||||
|
currentScene.value = "";
|
||||||
|
scenePopup.value.close();
|
||||||
|
loadData();
|
||||||
|
};
|
||||||
|
|
||||||
const syncUserInfo = (force = false) => {
|
const syncUserInfo = (force = false) => {
|
||||||
if (isLoggedIn.value) {
|
if (isLoggedIn.value) {
|
||||||
if (signatureName.value === "xxx" || !signatureName.value) {
|
if (signatureName.value === "xxx" || !signatureName.value) {
|
||||||
@@ -988,7 +1134,10 @@ const getTemplateList = async (isLoadMore = false) => {
|
|||||||
|
|
||||||
loadingTemplates.value = true;
|
loadingTemplates.value = true;
|
||||||
try {
|
try {
|
||||||
const res = await getCardTemplateList(templatePage.value);
|
const res = await getCardTemplateList(
|
||||||
|
templatePage.value,
|
||||||
|
currentScene.value,
|
||||||
|
);
|
||||||
|
|
||||||
// 兼容数组或对象列表格式
|
// 兼容数组或对象列表格式
|
||||||
const list = Array.isArray(res) ? res : res.list || [];
|
const list = Array.isArray(res) ? res : res.list || [];
|
||||||
@@ -1052,7 +1201,10 @@ const getTemplateTitleList = async (isLoadMore = false) => {
|
|||||||
|
|
||||||
loadingTitles.value = true;
|
loadingTitles.value = true;
|
||||||
try {
|
try {
|
||||||
const res = await getCardTemplateTitleList(titlePage.value);
|
const res = await getCardTemplateTitleList(
|
||||||
|
titlePage.value,
|
||||||
|
currentScene.value,
|
||||||
|
);
|
||||||
const list = Array.isArray(res) ? res : res.list || [];
|
const list = Array.isArray(res) ? res : res.list || [];
|
||||||
|
|
||||||
if (list.length > 0) {
|
if (list.length > 0) {
|
||||||
@@ -1105,7 +1257,10 @@ const getTemplateContentList = async (isLoadMore = false) => {
|
|||||||
|
|
||||||
loadingBlessings.value = true;
|
loadingBlessings.value = true;
|
||||||
try {
|
try {
|
||||||
const res = await getCardTemplateContentList(blessingPage.value);
|
const res = await getCardTemplateContentList(
|
||||||
|
blessingPage.value,
|
||||||
|
currentScene.value,
|
||||||
|
);
|
||||||
const list = Array.isArray(res) ? res : res.list || [];
|
const list = Array.isArray(res) ? res : res.list || [];
|
||||||
|
|
||||||
if (list.length > 0) {
|
if (list.length > 0) {
|
||||||
@@ -1177,7 +1332,7 @@ onShareAppMessage(async (options) => {
|
|||||||
} else {
|
} else {
|
||||||
const shareToken = await getShareToken("card_generate_index", "");
|
const shareToken = await getShareToken("card_generate_index", "");
|
||||||
return {
|
return {
|
||||||
title: "快来制作新春祝福卡片🎉",
|
title: "快来制作祝福卡片🎉",
|
||||||
path: `/pages/make/index?shareToken=${shareToken}`,
|
path: `/pages/make/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -1188,7 +1343,7 @@ onShareAppMessage(async (options) => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const shareToken = await getShareToken("card_timeline");
|
const shareToken = await getShareToken("card_timeline");
|
||||||
return {
|
return {
|
||||||
title: "送你一张精美的新春祝福卡片 🎊",
|
title: "送你一张精美的祝福卡片 🎊",
|
||||||
query: `shareToken=${shareToken}`,
|
query: `shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -1225,8 +1380,13 @@ const closePanel = () => {
|
|||||||
const templates = ref([]);
|
const templates = ref([]);
|
||||||
|
|
||||||
const currentTemplate = ref(templates.value[0]);
|
const currentTemplate = ref(templates.value[0]);
|
||||||
|
const currentUnlockTpl = ref(null);
|
||||||
|
|
||||||
const applyTemplate = (tpl) => {
|
const applyTemplate = (tpl) => {
|
||||||
|
if (tpl.unlockType && !tpl.isUnlock) {
|
||||||
|
handleUnlock(tpl);
|
||||||
|
return;
|
||||||
|
}
|
||||||
trackRecord({
|
trackRecord({
|
||||||
eventName: "card_tpl_choose",
|
eventName: "card_tpl_choose",
|
||||||
eventType: "click",
|
eventType: "click",
|
||||||
@@ -1236,7 +1396,94 @@ const applyTemplate = (tpl) => {
|
|||||||
closePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleUnlock = (tpl) => {
|
||||||
|
switch (tpl.unlockType) {
|
||||||
|
case "vip":
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/mine/vip",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "ad":
|
||||||
|
currentUnlockTpl.value = tpl;
|
||||||
|
rewardAdRef.value.show();
|
||||||
|
break;
|
||||||
|
case "sing3":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到1天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "sing5":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到5天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "sing7":
|
||||||
|
uni.showToast({
|
||||||
|
title: "需要连续签到7天解锁",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
uni.showToast({
|
||||||
|
title: "未满足解锁条件",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAdReward = async (token) => {
|
||||||
|
try {
|
||||||
|
const res = await watchAdReward(
|
||||||
|
token,
|
||||||
|
"unlock",
|
||||||
|
activeTool.value === "template" ? "card_template" : "card_title_template",
|
||||||
|
currentUnlockTpl.value.id,
|
||||||
|
);
|
||||||
|
if (res) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "解锁成功",
|
||||||
|
icon: "success",
|
||||||
|
});
|
||||||
|
// 解锁成功后,更新本地状态,允许使用
|
||||||
|
if (currentUnlockTpl.value) {
|
||||||
|
currentUnlockTpl.value.isUnlock = true;
|
||||||
|
|
||||||
|
if (activeTool.value === "template") {
|
||||||
|
// 同时更新列表中的状态
|
||||||
|
const index = templates.value.findIndex(
|
||||||
|
(t) => t.id === currentUnlockTpl.value.id,
|
||||||
|
);
|
||||||
|
if (index !== -1) {
|
||||||
|
templates.value[index].isUnlock = true;
|
||||||
|
}
|
||||||
|
applyTemplate(currentUnlockTpl.value);
|
||||||
|
} else if (activeTool.value === "title") {
|
||||||
|
// 同时更新列表中的状态
|
||||||
|
const index = titles.value.findIndex(
|
||||||
|
(t) => t.id === currentUnlockTpl.value.id,
|
||||||
|
);
|
||||||
|
if (index !== -1) {
|
||||||
|
titles.value[index].isUnlock = true;
|
||||||
|
}
|
||||||
|
selectTitle(currentUnlockTpl.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
currentUnlockTpl.value = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Reward claim failed", e);
|
||||||
|
uni.showToast({ title: "奖励发放失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const selectTitle = (title) => {
|
const selectTitle = (title) => {
|
||||||
|
if (title.unlockType && !title.isUnlock) {
|
||||||
|
handleUnlock(title);
|
||||||
|
return;
|
||||||
|
}
|
||||||
trackRecord({
|
trackRecord({
|
||||||
eventName: "card_title_choose",
|
eventName: "card_title_choose",
|
||||||
eventType: "click",
|
eventType: "click",
|
||||||
@@ -1281,24 +1528,9 @@ const preview = async () => {
|
|||||||
loginPopupRef.value.open();
|
loginPopupRef.value.open();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const abilityRes = await abilityCheck("card_generate");
|
const canProceed = await checkAbilityAndHandle("card_generate");
|
||||||
if (!abilityRes.canUse) {
|
if (!canProceed) return;
|
||||||
if (
|
|
||||||
abilityRes?.blockType === "need_share" &&
|
|
||||||
abilityRes?.message === "分享可继续"
|
|
||||||
) {
|
|
||||||
uni.showToast({
|
|
||||||
title: "分享给好友可继续使用",
|
|
||||||
icon: "none",
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
uni.showToast({
|
|
||||||
title: "您今日祝福卡下载次数已用完,直接分享给好友或者明日再试",
|
|
||||||
icon: "none",
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const tempPath = await saveByCanvas(true);
|
const tempPath = await saveByCanvas(true);
|
||||||
const id = createCard();
|
const id = createCard();
|
||||||
shareOrSave(id);
|
shareOrSave(id);
|
||||||
@@ -1815,6 +2047,58 @@ function drawRoundRect(ctx, x, y, w, h, r, color) {
|
|||||||
.user-desc {
|
.user-desc {
|
||||||
font-size: 20rpx;
|
font-size: 20rpx;
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
|
/* Lock Overlay - Modern Style */
|
||||||
|
.lock-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 12rpx;
|
||||||
|
z-index: 5;
|
||||||
|
background: rgba(0, 0, 0, 0.05); /* very subtle dim */
|
||||||
|
}
|
||||||
|
|
||||||
|
.unlock-badge {
|
||||||
|
position: absolute;
|
||||||
|
top: 12rpx;
|
||||||
|
right: 12rpx;
|
||||||
|
padding: 4rpx 12rpx;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
font-size: 18rpx;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: bold;
|
||||||
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
|
||||||
|
|
||||||
|
&.vip {
|
||||||
|
background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
|
||||||
|
}
|
||||||
|
&.ad {
|
||||||
|
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||||
|
}
|
||||||
|
&.sing1,
|
||||||
|
&.sing3,
|
||||||
|
&.sing5,
|
||||||
|
&.sing7 {
|
||||||
|
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.center-lock {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
width: 56rpx;
|
||||||
|
height: 56rpx;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 顶部步骤条 */
|
/* 顶部步骤条 */
|
||||||
@@ -2015,7 +2299,60 @@ function drawRoundRect(ctx, x, y, w, h, r, color) {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.tpl-card .lock-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 12rpx;
|
||||||
|
z-index: 5;
|
||||||
|
background: rgba(0, 0, 0, 0.05); /* very subtle dim */
|
||||||
|
}
|
||||||
|
|
||||||
|
.tpl-card .unlock-badge {
|
||||||
|
position: absolute;
|
||||||
|
top: 12rpx;
|
||||||
|
right: 12rpx;
|
||||||
|
padding: 4rpx 12rpx;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
font-size: 18rpx;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: bold;
|
||||||
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
|
||||||
|
|
||||||
|
&.vip {
|
||||||
|
background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
|
||||||
|
}
|
||||||
|
&.ad {
|
||||||
|
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||||
|
}
|
||||||
|
&.sing1,
|
||||||
|
&.sing3,
|
||||||
|
&.sing5,
|
||||||
|
&.sing7 {
|
||||||
|
background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tpl-card .center-lock {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
width: 56rpx;
|
||||||
|
height: 56rpx;
|
||||||
|
background: rgba(0, 0, 0, 0.4);
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
.tpl-check {
|
.tpl-check {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 6rpx;
|
right: 6rpx;
|
||||||
@@ -2415,4 +2752,104 @@ function drawRoundRect(ctx, x, y, w, h, r, color) {
|
|||||||
color: #666;
|
color: #666;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 场景选择弹窗 */
|
||||||
|
.scene-popup {
|
||||||
|
width: 520rpx;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 40rpx;
|
||||||
|
padding: 40rpx 30rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
border: 4rpx solid #f8e71c; /* 金色边框 */
|
||||||
|
box-shadow: 0 0 40rpx rgba(248, 231, 28, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-header {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-title {
|
||||||
|
font-size: 38rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #d0021b; /* 深红色 */
|
||||||
|
margin-bottom: 10rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-subtitle {
|
||||||
|
font-size: 22rpx;
|
||||||
|
color: #999;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-divider {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 16rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-divider .line {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 2rpx;
|
||||||
|
background: linear-gradient(
|
||||||
|
90deg,
|
||||||
|
rgba(230, 184, 0, 0),
|
||||||
|
rgba(230, 184, 0, 0.5),
|
||||||
|
rgba(230, 184, 0, 0)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
gap: 20rpx;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12rpx;
|
||||||
|
background: #fff;
|
||||||
|
padding: 24rpx 0;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
box-shadow: 0 6rpx 16rpx rgba(0, 0, 0, 0.05);
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-item:active {
|
||||||
|
transform: scale(0.98);
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.04);
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-icon-box {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
border-radius: 50%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 4rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scene-name {
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #333;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skip-btn {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #bbb;
|
||||||
|
padding: 10rpx;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -218,7 +218,7 @@ const formatDate = (dateStr) => {
|
|||||||
|
|
||||||
const getDefaultName = (item) => {
|
const getDefaultName = (item) => {
|
||||||
// Simple deterministic name generation based on ID char code sum
|
// Simple deterministic name generation based on ID char code sum
|
||||||
if (!item.id) return "新春头像";
|
if (!item.id) return "精美头像";
|
||||||
let sum = 0;
|
let sum = 0;
|
||||||
for (let i = 0; i < item.id.length; i++) {
|
for (let i = 0; i < item.id.length; i++) {
|
||||||
sum += item.id.charCodeAt(i);
|
sum += item.id.charCodeAt(i);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="greeting-page">
|
<view class="greeting-page">
|
||||||
<NavBar title="我的新春祝福" background="transparent" />
|
<NavBar title="我的真挚祝福" background="transparent" />
|
||||||
|
|
||||||
<!-- Header Stats -->
|
<!-- Header Stats -->
|
||||||
<view class="header-stats">
|
<view class="header-stats">
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="divider"></view>
|
<view class="divider"></view>
|
||||||
<view class="stats-right">
|
<view class="stats-right">
|
||||||
<text class="label">马年运势</text>
|
<text class="label">今日运势</text>
|
||||||
<text class="value red-text">一马当先</text>
|
<text class="value red-text">一马当先</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="footer-note" v-if="!loading && list.length > 0">
|
<view class="footer-note" v-if="!loading && list.length > 0">
|
||||||
<text>2026 丙午马年 · 祝福管理助手</text>
|
<text>2026 精美头像壁纸祝福</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
<view class="fab-btn" @tap="onMake">
|
<view class="fab-btn" @tap="onMake">
|
||||||
<view class="fab-content">
|
<view class="fab-content">
|
||||||
<text class="fab-emoji">✍️</text>
|
<text class="fab-emoji">✍️</text>
|
||||||
<text>新春制作</text>
|
<text>快速制作</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -103,6 +103,7 @@ import {
|
|||||||
import { getMyCard } from "@/api/mine.js";
|
import { getMyCard } from "@/api/mine.js";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
import { getShareToken, trackRecord } from "@/utils/common.js";
|
import { getShareToken, trackRecord } from "@/utils/common.js";
|
||||||
|
import { getShareReward } from "@/api/system";
|
||||||
|
|
||||||
const list = ref([]);
|
const list = ref([]);
|
||||||
const page = ref(1);
|
const page = ref(1);
|
||||||
@@ -134,6 +135,7 @@ onShareAppMessage(async (options) => {
|
|||||||
"card_generate",
|
"card_generate",
|
||||||
options?.target?.dataset?.item?.id,
|
options?.target?.dataset?.item?.id,
|
||||||
);
|
);
|
||||||
|
getShareReward({ scene: "card_generate" });
|
||||||
return {
|
return {
|
||||||
title: "我刚做了一张祝福卡片,送给你",
|
title: "我刚做了一张祝福卡片,送给你",
|
||||||
path: "/pages/detail/index?shareToken=" + shareToken,
|
path: "/pages/detail/index?shareToken=" + shareToken,
|
||||||
@@ -142,8 +144,9 @@ onShareAppMessage(async (options) => {
|
|||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
const shareToken = await getShareToken("greeting_page", "");
|
const shareToken = await getShareToken("greeting_page", "");
|
||||||
|
getShareReward({ scene: "greeting_page" });
|
||||||
return {
|
return {
|
||||||
title: "新年好运已送达 🎊|祝福卡·头像·壁纸",
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
path: `/pages/index/index?shareToken=${shareToken}`,
|
path: `/pages/index/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -194,12 +197,12 @@ const formatDate = (dateStr) => {
|
|||||||
|
|
||||||
const getTagText = (item) => {
|
const getTagText = (item) => {
|
||||||
// if (item.status === "draft") return "草稿";
|
// if (item.status === "draft") return "草稿";
|
||||||
return item?.title?.name || item.festival || "新春快乐";
|
return item?.title?.name || item.festival || "真挚祝福";
|
||||||
};
|
};
|
||||||
|
|
||||||
const getTitle = (item) => {
|
const getTitle = (item) => {
|
||||||
const title =
|
const title =
|
||||||
(item?.blessingTo || "祝您") + (item?.content?.content || "新春快乐");
|
(item?.blessingTo || "祝您") + (item?.content?.content || "万事如意");
|
||||||
return title.length > 10 ? title.substring(0, 10) + "..." : title;
|
return title.length > 10 ? title.substring(0, 10) + "..." : title;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -122,16 +122,16 @@
|
|||||||
<view class="footer">
|
<view class="footer">
|
||||||
<view class="footer-blessing">
|
<view class="footer-blessing">
|
||||||
<uni-icons type="vip-filled" size="14" color="#ff3b30" />
|
<uni-icons type="vip-filled" size="14" color="#ff3b30" />
|
||||||
<text>祝您2026新春大吉,万事如意</text>
|
<text>祝您 万事大吉,万事如意</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="footer-copy">2026 丙午马年 · 官方出品</view>
|
<view class="footer-copy">官方出品</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from "vue";
|
import { ref, onMounted } from "vue";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
import { trackRecord } from "@/utils/common.js";
|
import { trackRecord } from "@/utils/common.js";
|
||||||
|
|
||||||
@@ -193,6 +193,11 @@ const faqList = ref([
|
|||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
const copyright = [
|
||||||
|
"如有疑问,请通过“我的-使用说明”联系客服处理。",
|
||||||
|
"最终解释权归 2026 助手团队所有。",
|
||||||
|
];
|
||||||
|
|
||||||
const toggleCategory = (index) => {
|
const toggleCategory = (index) => {
|
||||||
faqList.value[index].expanded = !faqList.value[index].expanded;
|
faqList.value[index].expanded = !faqList.value[index].expanded;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -65,22 +65,22 @@
|
|||||||
<view class="menu-group">
|
<view class="menu-group">
|
||||||
<view class="menu-item" @tap="navTo('greetings')">
|
<view class="menu-item" @tap="navTo('greetings')">
|
||||||
<view class="icon-box red-bg"><text>🧧</text></view>
|
<view class="icon-box red-bg"><text>🧧</text></view>
|
||||||
<text class="menu-text">我的新春祝福</text>
|
<text class="menu-text">我的美好祝福</text>
|
||||||
<text class="arrow">›</text>
|
<text class="arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="menu-item" @tap="navTo('fortune-record')">
|
<view class="menu-item" @tap="navTo('fortune-record')">
|
||||||
<view class="icon-box orange-bg"><text>📹</text></view>
|
<view class="icon-box orange-bg"><text>📹</text></view>
|
||||||
<text class="menu-text">我的新年运势</text>
|
<text class="menu-text">我的每日运势</text>
|
||||||
<text class="arrow">›</text>
|
<text class="arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="menu-item" @tap="navTo('avatar')">
|
<view class="menu-item" @tap="navTo('avatar')">
|
||||||
<view class="icon-box pink-bg"><text>☺</text></view>
|
<view class="icon-box pink-bg"><text>☺</text></view>
|
||||||
<text class="menu-text">我的新春头像</text>
|
<text class="menu-text">我的专属头像</text>
|
||||||
<text class="arrow">›</text>
|
<text class="arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="menu-item" @tap="navTo('wallpaper')">
|
<view class="menu-item" @tap="navTo('wallpaper')">
|
||||||
<view class="icon-box yellow-bg"><text>🖼</text></view>
|
<view class="icon-box yellow-bg"><text>🖼</text></view>
|
||||||
<text class="menu-text">我的新春壁纸</text>
|
<text class="menu-text">我的精美壁纸</text>
|
||||||
<view class="new-badge">NEW</view>
|
<view class="new-badge">NEW</view>
|
||||||
<text class="arrow">›</text>
|
<text class="arrow">›</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<view class="version-info">2026 丙午马年 · 新春助手 v1.0.2</view>
|
<!-- <view class="version-info">2026 丙午马年 · 精美助手 v1.0.2</view> -->
|
||||||
|
|
||||||
<!-- Bottom Spacer for TabBar -->
|
<!-- Bottom Spacer for TabBar -->
|
||||||
<view style="height: 120rpx"></view>
|
<view style="height: 120rpx"></view>
|
||||||
@@ -138,6 +138,7 @@ import { ref, computed, onMounted } from "vue";
|
|||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { onShareAppMessage } from "@dcloudio/uni-app";
|
import { onShareAppMessage } from "@dcloudio/uni-app";
|
||||||
import { getShareToken, trackRecord } from "@/utils/common";
|
import { getShareToken, trackRecord } from "@/utils/common";
|
||||||
|
import { getShareReward } from "@/api/system";
|
||||||
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
||||||
|
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
@@ -174,8 +175,9 @@ onMounted(() => {
|
|||||||
|
|
||||||
onShareAppMessage(async () => {
|
onShareAppMessage(async () => {
|
||||||
const shareToken = await getShareToken("mine");
|
const shareToken = await getShareToken("mine");
|
||||||
|
getShareReward({ scene: "mine" });
|
||||||
return {
|
return {
|
||||||
title: "新年好运已送达 🎊|祝福卡·头像·壁纸",
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
path: "/pages/index/index?shareToken=" + shareToken,
|
path: "/pages/index/index?shareToken=" + shareToken,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="profile-page" >
|
<view class="profile-page">
|
||||||
<NavBar title="个人信息" />
|
<NavBar title="个人信息" />
|
||||||
|
|
||||||
<!-- Content -->
|
<!-- Content -->
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<!-- <view class="info-item" @click="handleEditManifesto">
|
<!-- <view class="info-item" @click="handleEditManifesto">
|
||||||
<text class="label">新春宣言</text>
|
<text class="label">个性宣言</text>
|
||||||
<view class="value-box">
|
<view class="value-box">
|
||||||
<text class="value red-text">{{ form.bio || "点击选择" }}</text>
|
<text class="value red-text">{{ form.bio || "点击选择" }}</text>
|
||||||
<uni-icons type="compose" size="16" color="#ccc" />
|
<uni-icons type="compose" size="16" color="#ccc" />
|
||||||
@@ -186,12 +186,12 @@ const handleSave = async () => {
|
|||||||
const originalForm = {
|
const originalForm = {
|
||||||
nickName: userInfo.value.nickName || "",
|
nickName: userInfo.value.nickName || "",
|
||||||
gender: userInfo.value.gender || 1,
|
gender: userInfo.value.gender || 1,
|
||||||
bio: userInfo.value.bio || "万事如意,岁岁平安"
|
bio: userInfo.value.bio || "万事如意,岁岁平安",
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await updateUserInfo({
|
const res = await updateUserInfo({
|
||||||
nickname: form.value.nickName,
|
nickname: form.value.nickName,
|
||||||
gender: form.value.gender,
|
gender: form.value.gender,
|
||||||
bio: form.value.bio,
|
bio: form.value.bio,
|
||||||
});
|
});
|
||||||
@@ -204,7 +204,7 @@ const handleSave = async () => {
|
|||||||
} else {
|
} else {
|
||||||
// 恢复之前的内容
|
// 恢复之前的内容
|
||||||
form.value = { ...originalForm };
|
form.value = { ...originalForm };
|
||||||
uni.showToast({ title: res.message || '修改失败', icon: "none" });
|
uni.showToast({ title: res.message || "修改失败", icon: "none" });
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|||||||
@@ -148,7 +148,7 @@ const notes = [
|
|||||||
"会员服务为虚拟产品,支付后立即生效,不支持退款。",
|
"会员服务为虚拟产品,支付后立即生效,不支持退款。",
|
||||||
"会员权益在有效期内全平台通用。",
|
"会员权益在有效期内全平台通用。",
|
||||||
"如有疑问,请通过“我的-使用说明”联系客服处理。",
|
"如有疑问,请通过“我的-使用说明”联系客服处理。",
|
||||||
"最终解释权归 2026 新春助手团队所有。",
|
"最终解释权归 本平台所有。",
|
||||||
];
|
];
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
|||||||
@@ -30,7 +30,11 @@
|
|||||||
class="grid-item"
|
class="grid-item"
|
||||||
@tap="onPreview(item)"
|
@tap="onPreview(item)"
|
||||||
>
|
>
|
||||||
<image :src="item.imageUrl" mode="aspectFill" class="wallpaper-img" />
|
<image
|
||||||
|
:src="getThumbUrl(item.imageUrl)"
|
||||||
|
mode="aspectFill"
|
||||||
|
class="wallpaper-img"
|
||||||
|
/>
|
||||||
<view class="date-badge">
|
<view class="date-badge">
|
||||||
<text>{{ formatDate(item.createdAt) }}</text>
|
<text>{{ formatDate(item.createdAt) }}</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -81,6 +85,10 @@ onReachBottom(() => {
|
|||||||
loadMore();
|
loadMore();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const getThumbUrl = (url) => {
|
||||||
|
return `${url}?imageView2/1/w/340/h/600/q/80`;
|
||||||
|
};
|
||||||
|
|
||||||
const fetchList = async (reset = false) => {
|
const fetchList = async (reset = false) => {
|
||||||
if (loading.value) return;
|
if (loading.value) return;
|
||||||
if (reset) {
|
if (reset) {
|
||||||
|
|||||||
@@ -119,6 +119,7 @@ import {
|
|||||||
onShareTimeline,
|
onShareTimeline,
|
||||||
} from "@dcloudio/uni-app";
|
} from "@dcloudio/uni-app";
|
||||||
import { getBavBarHeight } from "@/utils/system";
|
import { getBavBarHeight } from "@/utils/system";
|
||||||
|
import { getShareReward } from "@/api/system";
|
||||||
import { getShareToken } from "@/utils/common";
|
import { getShareToken } from "@/utils/common";
|
||||||
|
|
||||||
const features = ref([
|
const features = ref([
|
||||||
@@ -141,7 +142,7 @@ const features = ref([
|
|||||||
type: "avatar_decor",
|
type: "avatar_decor",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "马年主题头像框",
|
title: "主题头像框",
|
||||||
subtitle: "2026限定",
|
subtitle: "2026限定",
|
||||||
icon: "https://file.lihailezzc.com/resource/9f80ab295b7e0a7a5f62c3b0f2d7a11c.png",
|
icon: "https://file.lihailezzc.com/resource/9f80ab295b7e0a7a5f62c3b0f2d7a11c.png",
|
||||||
type: "avatar_frame",
|
type: "avatar_frame",
|
||||||
@@ -230,10 +231,12 @@ const share = () => {
|
|||||||
uni.showShareMenu && uni.showShareMenu();
|
uni.showShareMenu && uni.showShareMenu();
|
||||||
};
|
};
|
||||||
|
|
||||||
onShareAppMessage(() => {
|
onShareAppMessage(async () => {
|
||||||
|
const shareToken = await getShareToken("spring_index");
|
||||||
|
getShareReward({ scene: "spring_index" });
|
||||||
return {
|
return {
|
||||||
title: "2026 丙午马年,送你一份新春祝福 🎊",
|
title: "送你一份美好祝福 🎊",
|
||||||
path: "/pages/spring/index",
|
path: `/pages/spring/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
};
|
};
|
||||||
@@ -242,7 +245,7 @@ onShareAppMessage(() => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const shareToken = await getShareToken("spring_timeline");
|
const shareToken = await getShareToken("spring_timeline");
|
||||||
return {
|
return {
|
||||||
title: "2026 丙午马年,送你一份新春祝福 🎊",
|
title: "送你一份美好祝福 🎊",
|
||||||
query: `shareToken=${shareToken}`,
|
query: `shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
|||||||
@@ -25,8 +25,8 @@
|
|||||||
<view class="nickname">{{
|
<view class="nickname">{{
|
||||||
detailData.from.nickname || "神秘好友"
|
detailData.from.nickname || "神秘好友"
|
||||||
}}</view>
|
}}</view>
|
||||||
<view class="action-text">给你分享了一张2026新春精美壁纸</view>
|
<view class="action-text">给你分享了一张精美壁纸</view>
|
||||||
<view class="sub-text">★ 2026 且马贺岁</view>
|
<view class="sub-text">★ 幸运每一天</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
<view class="preview-card">
|
<view class="preview-card">
|
||||||
<view class="preview-badge">PREVIEW</view>
|
<view class="preview-badge">PREVIEW</view>
|
||||||
<image
|
<image
|
||||||
:src="detailData.imageUrl"
|
:src="getThumbUrl(detailData.imageUrl)"
|
||||||
mode="widthFix"
|
mode="widthFix"
|
||||||
class="main-image"
|
class="main-image"
|
||||||
@tap="previewImage"
|
@tap="previewImage"
|
||||||
@@ -43,16 +43,25 @@
|
|||||||
|
|
||||||
<!-- Action Buttons -->
|
<!-- Action Buttons -->
|
||||||
<view class="action-buttons">
|
<view class="action-buttons">
|
||||||
<button class="btn primary-btn" @tap="goToIndex">
|
<view class="points-display" v-if="isLoggedIn">
|
||||||
<text class="btn-icon">✨</text>
|
<text class="label">当前积分:</text>
|
||||||
<text>我也要领同款壁纸</text>
|
<text class="value">{{ userPoints }}</text>
|
||||||
|
</view>
|
||||||
|
<button class="btn primary-btn" @tap="downloadWallpaper">
|
||||||
|
<view class="btn-content">
|
||||||
|
<view class="btn-main">
|
||||||
|
<text class="btn-icon">✨</text>
|
||||||
|
<text>下载高清壁纸</text>
|
||||||
|
</view>
|
||||||
|
<text class="btn-sub">消耗 20 积分</text>
|
||||||
|
</view>
|
||||||
</button>
|
</button>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- More Wallpapers -->
|
<!-- More Wallpapers -->
|
||||||
<view class="more-section">
|
<view class="more-section">
|
||||||
<view class="section-header">
|
<view class="section-header">
|
||||||
<text class="section-title">我也要领新春壁纸</text>
|
<text class="section-title">更多同款壁纸</text>
|
||||||
<view class="more-link" @tap="goToIndex">
|
<view class="more-link" @tap="goToIndex">
|
||||||
<text>查看更多</text>
|
<text>查看更多</text>
|
||||||
<text class="arrow">›</text>
|
<text class="arrow">›</text>
|
||||||
@@ -71,45 +80,12 @@
|
|||||||
mode="aspectFill"
|
mode="aspectFill"
|
||||||
class="scroll-img"
|
class="scroll-img"
|
||||||
/>
|
/>
|
||||||
<text class="item-title">{{ item.title || "新春壁纸" }}</text>
|
<text class="item-title">{{ item.title || "精美壁纸" }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- Fortune Banner -->
|
|
||||||
<!-- Wallpaper Banner -->
|
|
||||||
<view class="wallpaper-banner" @tap="goToFortune">
|
|
||||||
<view class="banner-icon">
|
|
||||||
<text>🏮</text>
|
|
||||||
</view>
|
|
||||||
<view class="banner-content">
|
|
||||||
<text class="banner-title">去抽取新年运势</text>
|
|
||||||
<text class="banner-desc">每日一签,开启你的新年好运</text>
|
|
||||||
</view>
|
|
||||||
<text class="banner-arrow">›</text>
|
|
||||||
</view>
|
|
||||||
<view class="wallpaper-banner" @tap="goToGreeting">
|
|
||||||
<view class="banner-icon">
|
|
||||||
<text>🧧</text>
|
|
||||||
</view>
|
|
||||||
<view class="banner-content">
|
|
||||||
<text class="banner-title">去制作新年贺卡</text>
|
|
||||||
<text class="banner-desc">定制专属祝福,传递浓浓年味</text>
|
|
||||||
</view>
|
|
||||||
<text class="banner-arrow">›</text>
|
|
||||||
</view>
|
|
||||||
<view class="wallpaper-banner" @tap="goToAvatar">
|
|
||||||
<view class="banner-icon">
|
|
||||||
<text>🖼</text>
|
|
||||||
</view>
|
|
||||||
<view class="banner-content">
|
|
||||||
<text class="banner-title">去挑选新年头像</text>
|
|
||||||
<text class="banner-desc">精选新年头像,让手机也过年</text>
|
|
||||||
</view>
|
|
||||||
<text class="banner-arrow">›</text>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<view class="footer">
|
<view class="footer">
|
||||||
<view class="footer-divider">
|
<view class="footer-divider">
|
||||||
@@ -117,19 +93,38 @@
|
|||||||
<text class="footer-text">2026 HAPPY NEW YEAR</text>
|
<text class="footer-text">2026 HAPPY NEW YEAR</text>
|
||||||
<view class="line"></view>
|
<view class="line"></view>
|
||||||
</view>
|
</view>
|
||||||
<view class="footer-sub">新春祝福 · 传递温情</view>
|
<view class="footer-sub">精美壁纸 · 传递温情</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<LoginPopup ref="loginPopupRef" @logind="handleLogind" />
|
||||||
|
<RewardAd ref="rewardAdRef" @onReward="handleAdReward" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from "vue";
|
import { ref, computed } from "vue";
|
||||||
import { onLoad, onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
|
import { onLoad, onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
|
||||||
import { getBavBarHeight } from "@/utils/system";
|
import { getBavBarHeight } from "@/utils/system";
|
||||||
import { getPageDetail } from "@/api/system";
|
import { getPageDetail, getShareReward } from "@/api/system";
|
||||||
import { getWallpaperRecommendList } from "@/api/wallpaper";
|
import { getWallpaperSameList } from "@/api/wallpaper";
|
||||||
import { getShareToken, saveViewRequest } from "@/utils/common.js";
|
import {
|
||||||
|
getShareToken,
|
||||||
|
saveViewRequest,
|
||||||
|
saveRemoteImageToLocal,
|
||||||
|
saveRecordRequest,
|
||||||
|
trackRecord,
|
||||||
|
} from "@/utils/common.js";
|
||||||
|
import { useUserStore } from "@/stores/user";
|
||||||
|
import { watchAdReward } from "@/api/system.js";
|
||||||
|
import { checkAbilityAndHandle } from "@/utils/ability.js";
|
||||||
|
import LoginPopup from "@/components/LoginPopup/LoginPopup.vue";
|
||||||
|
import RewardAd from "@/components/RewardAd/RewardAd.vue";
|
||||||
|
|
||||||
|
const userStore = useUserStore();
|
||||||
|
const loginPopupRef = ref(null);
|
||||||
|
const rewardAdRef = ref(null);
|
||||||
|
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
||||||
|
const userPoints = computed(() => userStore.userInfo.points || 0);
|
||||||
|
|
||||||
const navHeight = getBavBarHeight();
|
const navHeight = getBavBarHeight();
|
||||||
const statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
|
const statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
|
||||||
@@ -139,19 +134,31 @@ const detailData = ref({
|
|||||||
});
|
});
|
||||||
const recommendList = ref([]);
|
const recommendList = ref([]);
|
||||||
const shareToken = ref("");
|
const shareToken = ref("");
|
||||||
|
const categoryId = ref("");
|
||||||
|
|
||||||
onLoad(async (options) => {
|
onLoad(async (options) => {
|
||||||
if (options.shareToken) {
|
if (options.shareToken) {
|
||||||
shareToken.value = options.shareToken;
|
shareToken.value = options.shareToken;
|
||||||
await fetchDetail();
|
await fetchDetail();
|
||||||
}
|
}
|
||||||
fetchRecommend();
|
if (options.id) {
|
||||||
|
detailData.value.id = options.id;
|
||||||
|
}
|
||||||
|
if (options.imageUrl) {
|
||||||
|
detailData.value.imageUrl = decodeURIComponent(options.imageUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.categoryId) {
|
||||||
|
categoryId.value = options.categoryId;
|
||||||
|
}
|
||||||
|
fetchRecommend(options.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
onShareAppMessage(async () => {
|
onShareAppMessage(async () => {
|
||||||
const token = await getShareToken("wallpaper_download", detailData.value?.id);
|
const token = await getShareToken("wallpaper_download", detailData.value?.id);
|
||||||
|
getShareReward({ scene: "wallpaper_download" });
|
||||||
return {
|
return {
|
||||||
title: "快来看看我刚领到的新年精美壁纸 🖼",
|
title: "快来看看我刚领到的精美壁纸 🖼",
|
||||||
path: `/pages/wallpaper/detail?shareToken=${token || ""}`,
|
path: `/pages/wallpaper/detail?shareToken=${token || ""}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
detailData.value?.imageUrl ||
|
detailData.value?.imageUrl ||
|
||||||
@@ -162,7 +169,7 @@ onShareAppMessage(async () => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const token = await getShareToken("wallpaper_download", detailData.value?.id);
|
const token = await getShareToken("wallpaper_download", detailData.value?.id);
|
||||||
return {
|
return {
|
||||||
title: "快来看看我刚领到的新年精美壁纸 🖼",
|
title: "快来看看我刚领到的精美壁纸 🖼",
|
||||||
query: `shareToken=${token}`,
|
query: `shareToken=${token}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
detailData.value?.imageUrl ||
|
detailData.value?.imageUrl ||
|
||||||
@@ -180,6 +187,7 @@ const fetchDetail = async () => {
|
|||||||
saveViewRequest(shareToken.value, "wallpaper_detail", res.id);
|
saveViewRequest(shareToken.value, "wallpaper_detail", res.id);
|
||||||
if (res) {
|
if (res) {
|
||||||
detailData.value = res;
|
detailData.value = res;
|
||||||
|
fetchRecommend(res.id);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("Failed to fetch detail", e);
|
console.error("Failed to fetch detail", e);
|
||||||
@@ -190,10 +198,12 @@ const fetchDetail = async () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const fetchRecommend = async () => {
|
const fetchRecommend = async (id) => {
|
||||||
|
if (!id && !detailData.value.id) return;
|
||||||
try {
|
try {
|
||||||
const res = await getWallpaperRecommendList();
|
const res = await getWallpaperSameList(id || detailData.value.id);
|
||||||
recommendList.value = res;
|
recommendList.value = res;
|
||||||
|
// categoryId.value = res[0]?.categoryId || "";
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("Failed to fetch recommendations", e);
|
console.error("Failed to fetch recommendations", e);
|
||||||
}
|
}
|
||||||
@@ -212,7 +222,7 @@ const goBack = () => {
|
|||||||
|
|
||||||
const goToIndex = () => {
|
const goToIndex = () => {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pages/wallpaper/index",
|
url: `/pages/wallpaper/index?categoryId=${categoryId.value}`,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -223,26 +233,89 @@ const goToFortune = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const previewImage = () => {
|
const previewImage = () => {
|
||||||
// if (detailData.value.imageUrl) {
|
if (detailData.value.imageUrl) {
|
||||||
// uni.previewImage({
|
uni.previewImage({
|
||||||
// urls: [detailData.value.imageUrl],
|
urls: [detailData.value.imageUrl],
|
||||||
// });
|
});
|
||||||
// }
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onRecommendClick = () => {
|
const onRecommendClick = (item) => {
|
||||||
goToIndex();
|
// Update detailData with new item info
|
||||||
};
|
detailData.value = {
|
||||||
|
...detailData.value,
|
||||||
const goToGreeting = () => {
|
id: item.id,
|
||||||
uni.switchTab({ url: "/pages/make/index" });
|
imageUrl: item.imageUrl,
|
||||||
};
|
title: item.title,
|
||||||
|
};
|
||||||
const goToAvatar = () => {
|
// Refresh recommendations for the new item
|
||||||
uni.navigateTo({
|
fetchRecommend(item.id);
|
||||||
url: "/pages/avatar/index",
|
// Scroll to top or just update view
|
||||||
|
uni.pageScrollTo({
|
||||||
|
scrollTop: 0,
|
||||||
|
duration: 300,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleLogind = async () => {
|
||||||
|
// Logic after successful login if needed
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleAdReward = async (token) => {
|
||||||
|
try {
|
||||||
|
const res = await watchAdReward(token);
|
||||||
|
if (res) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "获得50积分",
|
||||||
|
icon: "success",
|
||||||
|
});
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Reward claim failed", e);
|
||||||
|
uni.showToast({ title: "奖励发放失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const downloadWallpaper = async () => {
|
||||||
|
trackRecord({
|
||||||
|
eventName: "wallpaper_download_click",
|
||||||
|
eventType: `click`,
|
||||||
|
elementId: detailData.value?.id || "",
|
||||||
|
});
|
||||||
|
if (!isLoggedIn.value) {
|
||||||
|
loginPopupRef.value.open();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const canProceed = await checkAbilityAndHandle("wallpaper_download");
|
||||||
|
if (!canProceed) return;
|
||||||
|
|
||||||
|
uni.showLoading({ title: "下载中..." });
|
||||||
|
try {
|
||||||
|
// Parallelize save record and download
|
||||||
|
// Wait for saveRecordRequest to ensure backend deducts points
|
||||||
|
await Promise.all([
|
||||||
|
saveRecordRequest(
|
||||||
|
"",
|
||||||
|
detailData.value?.id,
|
||||||
|
"wallpaper_download",
|
||||||
|
detailData.value?.imageUrl,
|
||||||
|
),
|
||||||
|
saveRemoteImageToLocal(detailData.value?.imageUrl),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Refresh user assets to show updated points
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
|
||||||
|
uni.hideLoading();
|
||||||
|
uni.showToast({ title: "保存成功 消耗 20 积分", icon: "success" });
|
||||||
|
} catch (e) {
|
||||||
|
uni.hideLoading();
|
||||||
|
console.error("Download failed", e);
|
||||||
|
uni.showToast({ title: "下载失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@@ -359,10 +432,12 @@ const goToAvatar = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.main-image {
|
.main-image {
|
||||||
width: 100%;
|
width: 460rpx;
|
||||||
|
margin: 0 auto;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
display: block;
|
display: block;
|
||||||
background-color: #fafafa; // Placeholder color
|
background-color: #fafafa; // Placeholder color
|
||||||
|
box-shadow: 0 12rpx 32rpx rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -394,6 +469,7 @@ const goToAvatar = () => {
|
|||||||
background: linear-gradient(90deg, #ff3b30 0%, #ff6b6b 100%);
|
background: linear-gradient(90deg, #ff3b30 0%, #ff6b6b 100%);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
box-shadow: 0 8px 20px rgba(255, 59, 48, 0.15);
|
box-shadow: 0 8px 20px rgba(255, 59, 48, 0.15);
|
||||||
|
height: 64px; /* Increased height for two lines */
|
||||||
}
|
}
|
||||||
|
|
||||||
&.secondary-btn {
|
&.secondary-btn {
|
||||||
@@ -407,6 +483,43 @@ const goToAvatar = () => {
|
|||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.points-display {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #666;
|
||||||
|
|
||||||
|
.value {
|
||||||
|
color: #ff5722;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 16px;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 1.2;
|
||||||
|
|
||||||
|
.btn-main {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-sub {
|
||||||
|
font-size: 12px;
|
||||||
|
opacity: 0.9;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.more-section {
|
.more-section {
|
||||||
|
|||||||
@@ -19,6 +19,18 @@
|
|||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<!-- Points Info -->
|
||||||
|
<view class="points-bar">
|
||||||
|
<view class="points-left">
|
||||||
|
<uni-icons type="download" size="14" color="#ff9800" />
|
||||||
|
<text>每次下载消耗 {{ downloadCost }} 积分</text>
|
||||||
|
</view>
|
||||||
|
<view class="points-right">
|
||||||
|
<text>当前积分:</text>
|
||||||
|
<text class="score-val">{{ userScore }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
<!-- Wallpaper Grid -->
|
<!-- Wallpaper Grid -->
|
||||||
<scroll-view
|
<scroll-view
|
||||||
scroll-y
|
scroll-y
|
||||||
@@ -79,6 +91,7 @@
|
|||||||
@logind="handleLogind"
|
@logind="handleLogind"
|
||||||
:share-token="shareToken"
|
:share-token="shareToken"
|
||||||
/>
|
/>
|
||||||
|
<RewardAd ref="rewardAdRef" @onReward="handleAdReward" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -91,15 +104,21 @@ import {
|
|||||||
getShareToken,
|
getShareToken,
|
||||||
} from "@/utils/common.js";
|
} from "@/utils/common.js";
|
||||||
import { onShareAppMessage, onShareTimeline, onLoad } from "@dcloudio/uni-app";
|
import { onShareAppMessage, onShareTimeline, onLoad } from "@dcloudio/uni-app";
|
||||||
import { getShareReward, abilityCheck } from "@/api/system.js";
|
import { getShareReward, watchAdReward } from "@/api/system.js";
|
||||||
|
import { checkAbilityAndHandle } from "@/utils/ability.js";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { saveViewRequest, trackRecord } from "@/utils/common.js";
|
import { saveViewRequest, trackRecord } from "@/utils/common.js";
|
||||||
import NavBar from "@/components/NavBar/NavBar.vue";
|
import NavBar from "@/components/NavBar/NavBar.vue";
|
||||||
|
import RewardAd from "@/components/RewardAd/RewardAd.vue";
|
||||||
|
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const loginPopupRef = ref(null);
|
const loginPopupRef = ref(null);
|
||||||
|
const rewardAdRef = ref(null);
|
||||||
|
|
||||||
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
|
||||||
|
const userScore = computed(() => userStore.userInfo.points || 0);
|
||||||
|
const downloadCost = ref(20);
|
||||||
|
|
||||||
const categories = ref([]);
|
const categories = ref([]);
|
||||||
const currentCategoryId = ref(null);
|
const currentCategoryId = ref(null);
|
||||||
const wallpapers = ref([]);
|
const wallpapers = ref([]);
|
||||||
@@ -113,7 +132,7 @@ onShareAppMessage(async (options) => {
|
|||||||
if (!isLoggedIn.value) {
|
if (!isLoggedIn.value) {
|
||||||
const shareToken = await getShareToken("wallpaper_download_index", "");
|
const shareToken = await getShareToken("wallpaper_download_index", "");
|
||||||
return {
|
return {
|
||||||
title: "新年好运已送达 🎊|祝福卡·头像·壁纸",
|
title: "好运已送达 🎊|祝福卡·头像·壁纸",
|
||||||
path: `/pages/index/index?shareToken=${shareToken}`,
|
path: `/pages/index/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -126,13 +145,13 @@ onShareAppMessage(async (options) => {
|
|||||||
options?.target?.dataset?.item?.id,
|
options?.target?.dataset?.item?.id,
|
||||||
);
|
);
|
||||||
return {
|
return {
|
||||||
title: "快来挑选喜欢的新春壁纸吧",
|
title: "快来挑选喜欢的壁纸吧",
|
||||||
path: `/pages/wallpaper/detail?shareToken=${shareToken}`,
|
path: `/pages/wallpaper/detail?shareToken=${shareToken}`,
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
const shareToken = await getShareToken("wallpaper_download_index", "");
|
const shareToken = await getShareToken("wallpaper_download_index", "");
|
||||||
return {
|
return {
|
||||||
title: "新年好运已送达 🎊|祝福卡·头像·壁纸",
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
path: `/pages/index/index?shareToken=${shareToken}`,
|
path: `/pages/index/index?shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -143,7 +162,7 @@ onShareAppMessage(async (options) => {
|
|||||||
onShareTimeline(async () => {
|
onShareTimeline(async () => {
|
||||||
const shareToken = await getShareToken("wallpaper_timeline");
|
const shareToken = await getShareToken("wallpaper_timeline");
|
||||||
return {
|
return {
|
||||||
title: "精选新年壁纸,让手机也过年 🖼",
|
title: "送你一份好运祝福 🎁|头像·壁纸·祝福卡",
|
||||||
query: `shareToken=${shareToken}`,
|
query: `shareToken=${shareToken}`,
|
||||||
imageUrl:
|
imageUrl:
|
||||||
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
@@ -156,6 +175,10 @@ onLoad((options) => {
|
|||||||
shareToken.value = options.shareToken;
|
shareToken.value = options.shareToken;
|
||||||
saveViewRequest(options.shareToken, "wallpaper_download");
|
saveViewRequest(options.shareToken, "wallpaper_download");
|
||||||
}
|
}
|
||||||
|
if (options.categoryId) {
|
||||||
|
currentCategoryId.value = options.categoryId;
|
||||||
|
}
|
||||||
|
fetchCategories();
|
||||||
trackRecord({
|
trackRecord({
|
||||||
eventName: "wallpaper_page_visit",
|
eventName: "wallpaper_page_visit",
|
||||||
eventType: `visit`,
|
eventType: `visit`,
|
||||||
@@ -172,7 +195,9 @@ const fetchCategories = async () => {
|
|||||||
const list = Array.isArray(res) ? res : res?.list || [];
|
const list = Array.isArray(res) ? res : res?.list || [];
|
||||||
if (list.length > 0) {
|
if (list.length > 0) {
|
||||||
categories.value = list;
|
categories.value = list;
|
||||||
currentCategoryId.value = list[0].id;
|
if (!currentCategoryId.value) {
|
||||||
|
currentCategoryId.value = list[0].id;
|
||||||
|
}
|
||||||
loadWallpapers(true);
|
loadWallpapers(true);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
@@ -252,6 +277,22 @@ const previewImage = (index) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleAdReward = async (token) => {
|
||||||
|
try {
|
||||||
|
const res = await watchAdReward(token);
|
||||||
|
if (res) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "获得50积分",
|
||||||
|
icon: "success",
|
||||||
|
});
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Reward claim failed", e);
|
||||||
|
uni.showToast({ title: "奖励发放失败", icon: "none" });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const downloadWallpaper = async (item) => {
|
const downloadWallpaper = async (item) => {
|
||||||
trackRecord({
|
trackRecord({
|
||||||
eventName: "wallpaper_download_click",
|
eventName: "wallpaper_download_click",
|
||||||
@@ -263,28 +304,28 @@ const downloadWallpaper = async (item) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const abilityRes = await abilityCheck("wallpaper_download");
|
const canProceed = await checkAbilityAndHandle("wallpaper_download");
|
||||||
if (!abilityRes.canUse) {
|
if (!canProceed) return;
|
||||||
if (
|
|
||||||
abilityRes?.blockType === "need_share" &&
|
|
||||||
abilityRes?.message === "分享可继续"
|
|
||||||
) {
|
|
||||||
uni.showToast({
|
|
||||||
title: "分享给好友即可下载",
|
|
||||||
icon: "none",
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
uni.showToast({
|
|
||||||
title: "您今日壁纸下载次数已用完,明日再试",
|
|
||||||
icon: "none",
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
uni.showLoading({ title: "下载中..." });
|
uni.showLoading({ title: "下载中..." });
|
||||||
await saveRemoteImageToLocal(item.imageUrl);
|
try {
|
||||||
saveRecordRequest("", item.id, "wallpaper_download", item.imageUrl);
|
// Parallelize save record and download
|
||||||
|
// Wait for saveRecordRequest to ensure backend deducts points
|
||||||
|
await Promise.all([
|
||||||
|
saveRecordRequest("", item.id, "wallpaper_download", item.imageUrl),
|
||||||
|
saveRemoteImageToLocal(item.imageUrl),
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Refresh user assets to show updated points
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
|
||||||
|
uni.hideLoading();
|
||||||
|
uni.showToast({ title: "保存成功 消耗 20 积分", icon: "success" });
|
||||||
|
} catch (e) {
|
||||||
|
uni.hideLoading();
|
||||||
|
console.error("Download failed", e);
|
||||||
|
uni.showToast({ title: "下载失败", icon: "none" });
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const shareWallpaper = (item) => {};
|
const shareWallpaper = (item) => {};
|
||||||
@@ -308,6 +349,35 @@ const shareWallpaper = (item) => {};
|
|||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.points-bar {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 16rpx 30rpx;
|
||||||
|
background-color: #fffbf0;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.points-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8rpx;
|
||||||
|
color: #ff9800;
|
||||||
|
}
|
||||||
|
|
||||||
|
.points-right {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.score-val {
|
||||||
|
color: #d81e06;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin-left: 4rpx;
|
||||||
|
}
|
||||||
|
|
||||||
.tabs-scroll {
|
.tabs-scroll {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
559
pages/wallpaper/share.vue
Normal file
559
pages/wallpaper/share.vue
Normal file
@@ -0,0 +1,559 @@
|
|||||||
|
<template>
|
||||||
|
<view class="share-page" :style="{ paddingTop: navHeight + 'px' }">
|
||||||
|
<!-- Navbar -->
|
||||||
|
<view
|
||||||
|
class="nav-bar"
|
||||||
|
:style="{ height: navHeight + 'px', paddingTop: statusBarHeight + 'px' }"
|
||||||
|
>
|
||||||
|
<view class="nav-content">
|
||||||
|
<view class="back" @tap="goBack">
|
||||||
|
<text class="back-icon">‹</text>
|
||||||
|
</view>
|
||||||
|
<text class="title">壁纸详情</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="content-container">
|
||||||
|
<!-- Sharer Info -->
|
||||||
|
<view class="sharer-info" v-if="detailData.from">
|
||||||
|
<image
|
||||||
|
:src="detailData.from.avatar || '/static/default-avatar.png'"
|
||||||
|
class="avatar"
|
||||||
|
mode="aspectFill"
|
||||||
|
/>
|
||||||
|
<view class="info-text">
|
||||||
|
<view class="nickname">{{
|
||||||
|
detailData.from.nickname || "神秘好友"
|
||||||
|
}}</view>
|
||||||
|
<view class="action-text">给你分享了一张精美壁纸</view>
|
||||||
|
<view class="sub-text">★ 幸运每一天</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Wallpaper Preview -->
|
||||||
|
<view class="preview-card">
|
||||||
|
<view class="preview-badge">PREVIEW</view>
|
||||||
|
<image
|
||||||
|
:src="detailData.imageUrl"
|
||||||
|
mode="widthFix"
|
||||||
|
class="main-image"
|
||||||
|
@tap="previewImage"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Action Buttons -->
|
||||||
|
<view class="action-buttons">
|
||||||
|
<button class="btn primary-btn" @tap="goToIndex">
|
||||||
|
<text class="btn-icon">✨</text>
|
||||||
|
<text>我也要领同款壁纸</text>
|
||||||
|
</button>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- More Wallpapers -->
|
||||||
|
<view class="more-section">
|
||||||
|
<view class="section-header">
|
||||||
|
<text class="section-title">我也要领精美壁纸</text>
|
||||||
|
<view class="more-link" @tap="goToIndex">
|
||||||
|
<text>查看更多</text>
|
||||||
|
<text class="arrow">›</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<scroll-view scroll-x class="more-scroll" :show-scrollbar="false">
|
||||||
|
<view class="scroll-inner">
|
||||||
|
<view
|
||||||
|
v-for="(item, index) in recommendList"
|
||||||
|
:key="index"
|
||||||
|
class="scroll-item"
|
||||||
|
@tap="onRecommendClick(item)"
|
||||||
|
>
|
||||||
|
<image
|
||||||
|
:src="getThumbUrl(item.imageUrl)"
|
||||||
|
mode="aspectFill"
|
||||||
|
class="scroll-img"
|
||||||
|
/>
|
||||||
|
<text class="item-title">{{ item.title || "精美壁纸" }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Fortune Banner -->
|
||||||
|
<!-- Wallpaper Banner -->
|
||||||
|
<view class="wallpaper-banner" @tap="goToFortune">
|
||||||
|
<view class="banner-icon">
|
||||||
|
<text>🏮</text>
|
||||||
|
</view>
|
||||||
|
<view class="banner-content">
|
||||||
|
<text class="banner-title">去抽取每日运势</text>
|
||||||
|
<text class="banner-desc">每日一签,开启你的满满好运</text>
|
||||||
|
</view>
|
||||||
|
<text class="banner-arrow">›</text>
|
||||||
|
</view>
|
||||||
|
<view class="wallpaper-banner" @tap="goToGreeting">
|
||||||
|
<view class="banner-icon">
|
||||||
|
<text>🧧</text>
|
||||||
|
</view>
|
||||||
|
<view class="banner-content">
|
||||||
|
<text class="banner-title">制作一张祝福贺卡</text>
|
||||||
|
<text class="banner-desc">写下心意,把祝福送给重要的人</text>
|
||||||
|
</view>
|
||||||
|
<text class="banner-arrow">›</text>
|
||||||
|
</view>
|
||||||
|
<view class="wallpaper-banner" @tap="goToAvatar">
|
||||||
|
<view class="banner-icon">
|
||||||
|
<text>🖼</text>
|
||||||
|
</view>
|
||||||
|
<view class="banner-content">
|
||||||
|
<text class="banner-title">换个好看头像吧</text>
|
||||||
|
<text class="banner-desc">精选头像合集,找到你的专属风格</text>
|
||||||
|
</view>
|
||||||
|
<text class="banner-arrow">›</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- Footer -->
|
||||||
|
<view class="footer">
|
||||||
|
<view class="footer-divider">
|
||||||
|
<view class="line"></view>
|
||||||
|
<text class="footer-text">2026 HAPPY NEW YEAR</text>
|
||||||
|
<view class="line"></view>
|
||||||
|
</view>
|
||||||
|
<view class="footer-sub">精美壁纸 · 传递温情</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref } from "vue";
|
||||||
|
import { onLoad, onShareAppMessage, onShareTimeline } from "@dcloudio/uni-app";
|
||||||
|
import { getBavBarHeight } from "@/utils/system";
|
||||||
|
import { getPageDetail, getShareReward } from "@/api/system";
|
||||||
|
import { getWallpaperRecommendList } from "@/api/wallpaper";
|
||||||
|
import { getShareToken, saveViewRequest } from "@/utils/common.js";
|
||||||
|
|
||||||
|
const navHeight = getBavBarHeight();
|
||||||
|
const statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
|
||||||
|
const detailData = ref({
|
||||||
|
imageUrl: "",
|
||||||
|
from: null,
|
||||||
|
});
|
||||||
|
const recommendList = ref([]);
|
||||||
|
const shareToken = ref("");
|
||||||
|
|
||||||
|
onLoad(async (options) => {
|
||||||
|
if (options.shareToken) {
|
||||||
|
shareToken.value = options.shareToken;
|
||||||
|
await fetchDetail();
|
||||||
|
}
|
||||||
|
fetchRecommend();
|
||||||
|
});
|
||||||
|
|
||||||
|
onShareAppMessage(async () => {
|
||||||
|
const token = await getShareToken("wallpaper_download", detailData.value?.id);
|
||||||
|
getShareReward({ scene: "wallpaper_download" });
|
||||||
|
return {
|
||||||
|
title: "快来看看我刚领到的精美壁纸 🖼",
|
||||||
|
path: `/pages/wallpaper/detail?shareToken=${token || ""}`,
|
||||||
|
imageUrl:
|
||||||
|
detailData.value?.imageUrl ||
|
||||||
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
onShareTimeline(async () => {
|
||||||
|
const token = await getShareToken("wallpaper_download", detailData.value?.id);
|
||||||
|
return {
|
||||||
|
title: "快来看看我刚领到的精美壁纸 🖼",
|
||||||
|
query: `shareToken=${token}`,
|
||||||
|
imageUrl:
|
||||||
|
detailData.value?.imageUrl ||
|
||||||
|
"https://file.lihailezzc.com/resource/8dd026d76ef7a63d123b7fd698fb989b.png",
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
const getThumbUrl = (url) => {
|
||||||
|
return `${url}?imageView2/1/w/340/h/600/q/80`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const fetchDetail = async () => {
|
||||||
|
try {
|
||||||
|
const res = await getPageDetail(shareToken.value);
|
||||||
|
saveViewRequest(shareToken.value, "wallpaper_detail", res.id);
|
||||||
|
if (res) {
|
||||||
|
detailData.value = res;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch detail", e);
|
||||||
|
uni.showToast({
|
||||||
|
title: "获取详情失败",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const fetchRecommend = async () => {
|
||||||
|
try {
|
||||||
|
const res = await getWallpaperRecommendList();
|
||||||
|
recommendList.value = res;
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch recommendations", e);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const goBack = () => {
|
||||||
|
const pages = getCurrentPages();
|
||||||
|
if (pages.length > 1) {
|
||||||
|
uni.navigateBack();
|
||||||
|
} else {
|
||||||
|
uni.reLaunch({
|
||||||
|
url: "/pages/index/index",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const goToIndex = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/wallpaper/index",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const goToFortune = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/fortune/index",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const previewImage = () => {
|
||||||
|
// if (detailData.value.imageUrl) {
|
||||||
|
// uni.previewImage({
|
||||||
|
// urls: [detailData.value.imageUrl],
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
};
|
||||||
|
|
||||||
|
const onRecommendClick = () => {
|
||||||
|
goToIndex();
|
||||||
|
};
|
||||||
|
|
||||||
|
const goToGreeting = () => {
|
||||||
|
uni.switchTab({ url: "/pages/make/index" });
|
||||||
|
};
|
||||||
|
|
||||||
|
const goToAvatar = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/avatar/index",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.share-page {
|
||||||
|
min-height: 100vh;
|
||||||
|
background: #ffffff;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-bar {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 100;
|
||||||
|
background-color: #ffffff;
|
||||||
|
|
||||||
|
.nav-content {
|
||||||
|
height: 44px; // Standard nav height
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 24rpx;
|
||||||
|
|
||||||
|
.back {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 24rpx;
|
||||||
|
/* 增大点击区域 */
|
||||||
|
padding: 20rpx;
|
||||||
|
margin-left: -20rpx;
|
||||||
|
|
||||||
|
.back-icon {
|
||||||
|
font-size: 50rpx;
|
||||||
|
color: #333;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 34rpx;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #333;
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
margin-right: 50rpx; /* Balance back button */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-container {
|
||||||
|
padding: 20px;
|
||||||
|
padding-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sharer-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
|
||||||
|
.avatar {
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 12px;
|
||||||
|
border: 2px solid #fff;
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-text {
|
||||||
|
.nickname {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-text {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #666;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-text {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #ff3b30;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.preview-card {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 16px;
|
||||||
|
padding: 12px;
|
||||||
|
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
|
||||||
|
border: 1px solid #f5f5f5;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
|
||||||
|
.preview-badge {
|
||||||
|
position: absolute;
|
||||||
|
top: 24px;
|
||||||
|
right: 24px;
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
|
color: #fff;
|
||||||
|
font-size: 10px;
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 12px;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-image {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 12px;
|
||||||
|
display: block;
|
||||||
|
background-color: #fafafa; // Placeholder color
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-buttons {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 12px;
|
||||||
|
margin-bottom: 32px;
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
width: 100%;
|
||||||
|
height: 52px;
|
||||||
|
border-radius: 26px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
border: none;
|
||||||
|
margin: 0;
|
||||||
|
transition: all 0.2s;
|
||||||
|
|
||||||
|
.btn-icon {
|
||||||
|
margin-right: 8px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.primary-btn {
|
||||||
|
background: linear-gradient(90deg, #ff3b30 0%, #ff6b6b 100%);
|
||||||
|
color: #fff;
|
||||||
|
box-shadow: 0 8px 20px rgba(255, 59, 48, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.secondary-btn {
|
||||||
|
background: #f9f9f9;
|
||||||
|
color: #333;
|
||||||
|
border: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
transform: scale(0.98);
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.more-section {
|
||||||
|
margin-bottom: 32px;
|
||||||
|
|
||||||
|
.section-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.more-link {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #ff3b30;
|
||||||
|
|
||||||
|
.arrow {
|
||||||
|
margin-left: 2px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.more-scroll {
|
||||||
|
width: 100%;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-inner {
|
||||||
|
display: flex;
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-item {
|
||||||
|
display: inline-flex;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 200rpx;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
flex-shrink: 0;
|
||||||
|
|
||||||
|
.scroll-img {
|
||||||
|
width: 100%;
|
||||||
|
height: 355rpx;
|
||||||
|
border-radius: 12rpx;
|
||||||
|
margin-bottom: 12rpx;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-title {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #333;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fortune-banner-wrap {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wallpaper-banner {
|
||||||
|
background: #fafafa;
|
||||||
|
border-radius: 24rpx;
|
||||||
|
padding: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 60rpx;
|
||||||
|
border: 1px solid #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-icon {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-right: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-icon text {
|
||||||
|
font-size: 40rpx;
|
||||||
|
color: #ff3b30;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-content {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-title {
|
||||||
|
font-size: 30rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 8rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-desc {
|
||||||
|
font-size: 22rpx;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-arrow {
|
||||||
|
font-size: 36rpx;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
text-align: center;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
|
||||||
|
.footer-divider {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
|
||||||
|
.line {
|
||||||
|
width: 40px;
|
||||||
|
height: 1px;
|
||||||
|
background: #e0e0e0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-text {
|
||||||
|
margin: 0 12px;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #999;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-sub {
|
||||||
|
font-size: 10px;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
BIN
static/images/qrcode.jpg
Normal file
BIN
static/images/qrcode.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 51 KiB |
@@ -1,7 +1,7 @@
|
|||||||
import { defineStore } from "pinia";
|
import { defineStore } from "pinia";
|
||||||
import { wxLogin, wxGetUserProfile } from "@/utils/login.js";
|
import { wxLogin, wxGetUserProfile } from "@/utils/login.js";
|
||||||
import { getPlatformProvider } from "@/utils/system";
|
import { getPlatformProvider } from "@/utils/system";
|
||||||
import { getUserInfo } from "@/api/auth.js";
|
import { getUserInfo, getUserAsset } from "@/api/auth.js";
|
||||||
|
|
||||||
export const useUserStore = defineStore("user", {
|
export const useUserStore = defineStore("user", {
|
||||||
state: () => ({
|
state: () => ({
|
||||||
@@ -55,6 +55,30 @@ export const useUserStore = defineStore("user", {
|
|||||||
console.error("fetchUserInfo error", e);
|
console.error("fetchUserInfo error", e);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
async fetchUserAssets() {
|
||||||
|
try {
|
||||||
|
console.log("fetchUserAssets userInfo", this.userInfo);
|
||||||
|
if (!this?.userInfo?.id) return;
|
||||||
|
const res = await getUserAsset();
|
||||||
|
if (res) {
|
||||||
|
const newInfo = { ...this.userInfo, ...res };
|
||||||
|
if (res.points !== undefined) {
|
||||||
|
newInfo.points = res.points;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (res.exp !== undefined) {
|
||||||
|
newInfo.exp = res.exp;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (res.level !== undefined) {
|
||||||
|
newInfo.level = res.level;
|
||||||
|
}
|
||||||
|
this.setUserInfo(newInfo);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("fetchUserAssets error", e);
|
||||||
|
}
|
||||||
|
},
|
||||||
logout() {
|
logout() {
|
||||||
this.userInfo = {};
|
this.userInfo = {};
|
||||||
this.token = "";
|
this.token = "";
|
||||||
|
|||||||
93
utils/ability.js
Normal file
93
utils/ability.js
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
import { abilityCheck } from "@/api/system";
|
||||||
|
import adManager from "@/utils/adManager";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if a user has the ability to perform an action (e.g., download).
|
||||||
|
* Handles common blocking scenarios like "need_share" or "need_ad".
|
||||||
|
*
|
||||||
|
* @param {string} scene - The scene identifier for the ability check (e.g., "wallpaper_download").
|
||||||
|
* @returns {Promise<boolean>} - Returns true if the action can proceed, false otherwise.
|
||||||
|
*/
|
||||||
|
export const checkAbilityAndHandle = async (scene) => {
|
||||||
|
try {
|
||||||
|
const abilityRes = await abilityCheck(scene);
|
||||||
|
if (abilityRes.canUse) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
abilityRes?.blockType === "need_share" &&
|
||||||
|
abilityRes?.message === "分享可继续"
|
||||||
|
) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "分享给好友即可下载",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
abilityRes?.blockType === "need_ad" &&
|
||||||
|
abilityRes?.message === "观看广告可继续"
|
||||||
|
) {
|
||||||
|
uni.showModal({
|
||||||
|
title: "积分不足",
|
||||||
|
content: "观看广告可获得50积分,继续下载",
|
||||||
|
success: (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
adManager.showVideoAd();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (abilityRes?.blockType === "need_vip") {
|
||||||
|
uni.showModal({
|
||||||
|
title: "会员激活",
|
||||||
|
content: "会员激活即可继续使用该功能,是否前往开通?",
|
||||||
|
success: (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: "/pages/mine/vip",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
uni.showToast({
|
||||||
|
title: "您今日下载次数已用完,明日再试",
|
||||||
|
icon: "none",
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Ability check failed", e);
|
||||||
|
uni.showToast({ title: "系统繁忙,请稍后重试", icon: "none" });
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the display label for an unlock type.
|
||||||
|
* @param {string} unlockType - The unlock type identifier.
|
||||||
|
* @returns {string} - The display label.
|
||||||
|
*/
|
||||||
|
export const getUnlockLabel = (unlockType) => {
|
||||||
|
if (!unlockType) return "解锁";
|
||||||
|
switch (unlockType) {
|
||||||
|
case "sing3":
|
||||||
|
return "连续签到3天";
|
||||||
|
case "sing5":
|
||||||
|
return "连续签到5天";
|
||||||
|
case "sing7":
|
||||||
|
return "连续签到7天";
|
||||||
|
case "ad":
|
||||||
|
return "广告";
|
||||||
|
case "vip":
|
||||||
|
return "VIP";
|
||||||
|
default:
|
||||||
|
return "解锁";
|
||||||
|
}
|
||||||
|
};
|
||||||
107
utils/adManager.js
Normal file
107
utils/adManager.js
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
import { watchAdStart, watchAdReward } from "@/api/system.js";
|
||||||
|
import { useUserStore } from "@/stores/user";
|
||||||
|
|
||||||
|
class AdManager {
|
||||||
|
constructor() {
|
||||||
|
this.videoAd = null;
|
||||||
|
this.rewardToken = "";
|
||||||
|
this.isLoaded = false;
|
||||||
|
this.adUnitId = "adunit-d7a28e0357d98947"; // Default ID from RewardAd.vue
|
||||||
|
this._init();
|
||||||
|
}
|
||||||
|
|
||||||
|
_init() {
|
||||||
|
if (uni.createRewardedVideoAd) {
|
||||||
|
this.videoAd = uni.createRewardedVideoAd({
|
||||||
|
adUnitId: this.adUnitId,
|
||||||
|
});
|
||||||
|
|
||||||
|
this.videoAd.onLoad(() => {
|
||||||
|
console.log("Ad Manager: Ad Loaded");
|
||||||
|
this.isLoaded = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
this.videoAd.onError((err) => {
|
||||||
|
console.error("Ad Manager: Ad Load Error", err);
|
||||||
|
this.isLoaded = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the rewarded video ad.
|
||||||
|
* Handles the full flow: start session -> show ad -> verify completion -> claim reward -> refresh assets.
|
||||||
|
* @returns {Promise<boolean>} Resolves with true if reward was claimed, false otherwise.
|
||||||
|
*/
|
||||||
|
async showVideoAd() {
|
||||||
|
if (!this.videoAd) {
|
||||||
|
uni.showToast({ title: "当前环境不支持广告", icon: "none" });
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Step 1: Start Ad Session
|
||||||
|
const startRes = await watchAdStart();
|
||||||
|
if (!startRes || !startRes.rewardToken) {
|
||||||
|
uni.showToast({ title: "广告启动失败,请稍后再试", icon: "none" });
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
this.rewardToken = startRes.rewardToken;
|
||||||
|
|
||||||
|
// Step 2: Show Ad
|
||||||
|
try {
|
||||||
|
await this.videoAd.show();
|
||||||
|
} catch (e) {
|
||||||
|
// Retry load and show
|
||||||
|
await this.videoAd.load();
|
||||||
|
await this.videoAd.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Step 3: Wait for Close
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
const onCloseHandler = async (res) => {
|
||||||
|
this.videoAd.offClose(onCloseHandler); // Clean up listener
|
||||||
|
|
||||||
|
if (res && res.isEnded) {
|
||||||
|
// Step 4: Claim Reward
|
||||||
|
await this._claimReward(this.rewardToken);
|
||||||
|
resolve(true);
|
||||||
|
} else {
|
||||||
|
uni.showToast({ title: "观看完整广告才能获取奖励哦", icon: "none" });
|
||||||
|
resolve(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.videoAd.onClose(onCloseHandler);
|
||||||
|
});
|
||||||
|
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Ad Manager: Show failed", e);
|
||||||
|
uni.showToast({ title: "广告加载失败,请稍后再试", icon: "none" });
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async _claimReward(token) {
|
||||||
|
try {
|
||||||
|
uni.showLoading({ title: "发放奖励中..." });
|
||||||
|
const res = await watchAdReward(token);
|
||||||
|
if (res) {
|
||||||
|
uni.showToast({
|
||||||
|
title: "获得50积分",
|
||||||
|
icon: "success",
|
||||||
|
});
|
||||||
|
// Refresh user assets
|
||||||
|
const userStore = useUserStore();
|
||||||
|
await userStore.fetchUserAssets();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Ad Manager: Reward claim failed", e);
|
||||||
|
uni.showToast({ title: "奖励发放失败", icon: "none" });
|
||||||
|
} finally {
|
||||||
|
uni.hideLoading();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default new AdManager();
|
||||||
@@ -70,30 +70,30 @@ export const saveViewRequest = async (shareToken, scene, targetId = "") => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const saveRemoteImageToLocal = (imageUrl) => {
|
export const saveRemoteImageToLocal = (imageUrl) => {
|
||||||
uni.downloadFile({
|
return new Promise((resolve, reject) => {
|
||||||
url: imageUrl,
|
uni.downloadFile({
|
||||||
success: (res) => {
|
url: imageUrl,
|
||||||
if (res.statusCode === 200) {
|
success: (res) => {
|
||||||
uni.saveImageToPhotosAlbum({
|
if (res.statusCode === 200) {
|
||||||
filePath: res.tempFilePath,
|
uni.saveImageToPhotosAlbum({
|
||||||
success: () => {
|
filePath: res.tempFilePath,
|
||||||
uni.hideLoading();
|
success: () => {
|
||||||
uni.showToast({ title: "已保存到相册" });
|
resolve(true);
|
||||||
},
|
},
|
||||||
fail: () => {
|
fail: (err) => {
|
||||||
uni.hideLoading();
|
reject(err);
|
||||||
uni.showToast({ title: "保存失败", icon: "none" });
|
},
|
||||||
},
|
});
|
||||||
});
|
} else {
|
||||||
} else {
|
reject(
|
||||||
uni.hideLoading();
|
new Error("Download failed with status code: " + res.statusCode),
|
||||||
uni.showToast({ title: "下载失败", icon: "none" });
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fail: () => {
|
fail: (err) => {
|
||||||
uni.hideLoading();
|
reject(err);
|
||||||
uni.showToast({ title: "下载失败", icon: "none" });
|
},
|
||||||
},
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
178
utils/lunar.js
Normal file
178
utils/lunar.js
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
/**
|
||||||
|
* 农历转换工具
|
||||||
|
* 仅包含简单的公历转农历功能
|
||||||
|
*/
|
||||||
|
|
||||||
|
const calendar = {
|
||||||
|
/**
|
||||||
|
* 农历 1900-2049 的润大小信息表
|
||||||
|
* @Array Of Property
|
||||||
|
* @return Hex
|
||||||
|
*/
|
||||||
|
lunarInfo: [
|
||||||
|
0x04bd8, 0x04ae0, 0x0a570, 0x054d5, 0x0d260, 0x0d950, 0x16554, 0x056a0,
|
||||||
|
0x09ad0, 0x055d2, 0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540,
|
||||||
|
0x0d6a0, 0x0ada2, 0x095b0, 0x14977, 0x04970, 0x0a4b0, 0x0b4b5, 0x06a50,
|
||||||
|
0x06d40, 0x1ab54, 0x02b60, 0x09570, 0x052f2, 0x04970, 0x06566, 0x0d4a0,
|
||||||
|
0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3, 0x092e0, 0x1c8d7, 0x0c950,
|
||||||
|
0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4, 0x025d0, 0x092d0, 0x0d2b2,
|
||||||
|
0x0a950, 0x0b557, 0x06ca0, 0x0b550, 0x15355, 0x04da0, 0x0a5d0, 0x14573,
|
||||||
|
0x052d0, 0x0a9a8, 0x0e950, 0x06aa0, 0x0aea6, 0x0ab50, 0x04b60, 0x0aae4,
|
||||||
|
0x0a570, 0x05260, 0x0f263, 0x0d950, 0x05b57, 0x056a0, 0x096d0, 0x04dd5,
|
||||||
|
0x04ad0, 0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558, 0x0b540, 0x0b5a0, 0x195a6,
|
||||||
|
0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40, 0x0af46,
|
||||||
|
0x0ab60, 0x09570, 0x04af5, 0x04970, 0x064b0, 0x074a3, 0x0ea50, 0x06b58,
|
||||||
|
0x055c0, 0x0ab60, 0x096d5, 0x092e0, 0x0c960, 0x0d954, 0x0d4a0, 0x0da50,
|
||||||
|
0x07552, 0x056a0, 0x0abb7, 0x025d0, 0x092d0, 0x0cab5, 0x0a950, 0x0b4a0,
|
||||||
|
0x0baa4, 0x0ad50, 0x055d9, 0x04ba0, 0x0a5b0, 0x15176, 0x052b0, 0x0a930,
|
||||||
|
0x07954, 0x06aa0, 0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0, 0x0d260,
|
||||||
|
0x0ea65, 0x0d530, 0x05aa0, 0x076a3, 0x096d0, 0x04bd7, 0x04ad0, 0x0a4d0,
|
||||||
|
0x1d0b6, 0x0d250, 0x0d520, 0x0dd45, 0x0b5a0, 0x056d0, 0x055b2, 0x049b0,
|
||||||
|
0x0a577, 0x0a4b0, 0x0aa50, 0x1b255, 0x06d20, 0x0ada0,
|
||||||
|
],
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 传回农历 y年的总天数
|
||||||
|
* @param y
|
||||||
|
* @return Number
|
||||||
|
*/
|
||||||
|
lYearDays: function (y) {
|
||||||
|
var i,
|
||||||
|
sum = 348;
|
||||||
|
for (i = 0x8000; i > 0x8; i >>= 1)
|
||||||
|
sum += this.lunarInfo[y - 1900] & i ? 1 : 0;
|
||||||
|
return sum + this.leapDays(y);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 传回农历 y年闰月的天数
|
||||||
|
* @param y
|
||||||
|
* @return Number
|
||||||
|
*/
|
||||||
|
leapDays: function (y) {
|
||||||
|
if (this.leapMonth(y)) {
|
||||||
|
return this.lunarInfo[y - 1900] & 0x10000 ? 30 : 29;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 传回农历 y年闰哪个月 1-12 , 没闰传回 0
|
||||||
|
* @param y
|
||||||
|
* @return Number
|
||||||
|
*/
|
||||||
|
leapMonth: function (y) {
|
||||||
|
return this.lunarInfo[y - 1900] & 0xf;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 传回农历 y年m月的总天数
|
||||||
|
* @param y
|
||||||
|
* @param m
|
||||||
|
* @return Number
|
||||||
|
*/
|
||||||
|
monthDays: function (y, m) {
|
||||||
|
return this.lunarInfo[y - 1900] & (0x10000 >> m) ? 30 : 29;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 算出农历, 传入日期控件, 传回农历日期对象
|
||||||
|
* @param objDate
|
||||||
|
* @return Object
|
||||||
|
*/
|
||||||
|
solar2lunar: function (objDate) {
|
||||||
|
var i,
|
||||||
|
temp = 0;
|
||||||
|
var baseDate = new Date(1900, 0, 31);
|
||||||
|
var offset = Math.floor(
|
||||||
|
(objDate.getTime() - baseDate.getTime()) / 86400000,
|
||||||
|
);
|
||||||
|
|
||||||
|
var year = 1900;
|
||||||
|
for (i = 1900; i < 2050 && offset > 0; i++) {
|
||||||
|
temp = this.lYearDays(i);
|
||||||
|
if (offset < temp) break;
|
||||||
|
offset -= temp;
|
||||||
|
year = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果循环结束时 offset 仍大于0 (超出范围),则年份最后一次增加未被撤销?
|
||||||
|
// 不,break时 year=i。 如果没break,year会一直增加。
|
||||||
|
// 修正:循环里 year = i 是对的。
|
||||||
|
// 但是 calendar.js 原版通常是 year++ 在 check 之后?
|
||||||
|
// 这里的逻辑:
|
||||||
|
// offset 是总天数。
|
||||||
|
// 减去1900年的天数,如果 offset > 0,说明在1900之后。
|
||||||
|
// year 变成 1901。
|
||||||
|
// 正确。
|
||||||
|
|
||||||
|
var leapMonth = this.leapMonth(year);
|
||||||
|
var isLeap = false;
|
||||||
|
var month = 1;
|
||||||
|
|
||||||
|
for (i = 1; i < 13; i++) {
|
||||||
|
// 闰月
|
||||||
|
temp = this.monthDays(year, i);
|
||||||
|
if (offset < temp) {
|
||||||
|
month = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
offset -= temp;
|
||||||
|
|
||||||
|
if (leapMonth > 0 && i == leapMonth) {
|
||||||
|
temp = this.leapDays(year);
|
||||||
|
if (offset < temp) {
|
||||||
|
isLeap = true;
|
||||||
|
month = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
offset -= temp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var day = offset + 1;
|
||||||
|
|
||||||
|
// 格式化输出
|
||||||
|
const monthCn = this.toChinaMonth(month);
|
||||||
|
const dayCn = this.toChinaDay(day);
|
||||||
|
|
||||||
|
return {
|
||||||
|
lYear: year,
|
||||||
|
lMonth: month,
|
||||||
|
lDay: day,
|
||||||
|
isLeap: isLeap,
|
||||||
|
monthCn: monthCn,
|
||||||
|
dayCn: dayCn,
|
||||||
|
lunarDateStr: (isLeap ? "闰" : "") + monthCn + dayCn,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
toChinaMonth: function (m) {
|
||||||
|
var s = "正二三四五六七八九十冬腊";
|
||||||
|
var str = s.substring(m - 1, m);
|
||||||
|
return str + "月";
|
||||||
|
},
|
||||||
|
|
||||||
|
toChinaDay: function (d) {
|
||||||
|
var s = "初十廿三";
|
||||||
|
var arr = ["一", "二", "三", "四", "五", "六", "七", "八", "九", "十"];
|
||||||
|
var str = "";
|
||||||
|
switch (Math.floor(d / 10)) {
|
||||||
|
case 0:
|
||||||
|
str = "初" + arr[d - 1];
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
str = d == 10 ? "初十" : "十" + arr[d - 11];
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
str = d == 20 ? "二十" : "廿" + arr[d - 21];
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
str = d == 30 ? "三十" : "三" + arr[d - 31];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default calendar;
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
const BASE_URL = "https://api.ai-meng.com";
|
// const BASE_URL = "https://api.ai-meng.com";
|
||||||
// const BASE_URL = 'http://127.0.0.1:3999'
|
// const BASE_URL = 'http://127.0.0.1:3999'
|
||||||
// const BASE_URL = "http://192.168.1.3:3999";
|
const BASE_URL = "http://192.168.1.2:3999";
|
||||||
// const BASE_URL = "http://192.168.31.253:3999";
|
// const BASE_URL = "http://192.168.31.253:3999";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { getPlatform } from "./system.js";
|
import { getPlatform } from "./system.js";
|
||||||
|
|||||||
Reference in New Issue
Block a user