个人中心页面图标的添加

This commit is contained in:
WindowBird 2025-08-15 14:04:00 +08:00
parent 460ed0643e
commit cc609f6504
2 changed files with 9 additions and 3 deletions

View File

@ -19,5 +19,11 @@ export const CommonEnum = {
LotusMeditation: "https://api.ccttiot.com/image-1754377169541.png", //莲坐禅心
CENTER_TILES: "https://api.ccttiot.com/image-1754897751419.png", //腰部瓦片组
SUCCESS_APPOINTMENT: "https://api.ccttiot.com/image-1755156093304.png", //预约成功
//个人中心页面5图标
MY_APPOINTMENT: "https://api.ccttiot.com/image-1755237410755.png",
MY_COLLECTION: "https://api.ccttiot.com/image-1755237535712.png",
MY_DONOR: "https://api.ccttiot.com/image-1755237660766.png",
MY_PRAY: "https://api.ccttiot.com/image-1755237674033.png",
MY_ACTIVITY: "https://api.ccttiot.com/image-1755237686603.png",
};
export default CommonEnum;

View File

@ -275,11 +275,11 @@ export default {
date: this.getSelectedDateLabel(),
time: this.getSelectedTimeLabel(),
number: this.getSelectedNumberLabel(),
activityName: this.activityName || '活动'
activityName: this.activityName || "活动",
};
const queryString = Object.keys(params)
.map(key => `${key}=${encodeURIComponent(params[key])}`)
.join('&');
.map((key) => `${key}=${encodeURIComponent(params[key])}`)
.join("&");
uni.navigateTo({
url: `/pages/activity/appointmentSuccess?${queryString}`,
});