feat: maidian

This commit is contained in:
zzc
2026-02-12 17:22:47 +08:00
parent 54e8581b81
commit 313435d13f
13 changed files with 142 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="help-page" >
<view class="help-page">
<NavBar title="帮助中心" />
<!-- Search Bar -->
@@ -133,6 +133,14 @@
<script setup>
import { ref } from "vue";
import NavBar from "@/components/NavBar/NavBar.vue";
import { trackRecord } from "@/utils/common.js";
onMounted(() => {
trackRecord({
eventName: "help_page_visit",
eventType: `visit`,
});
});
const faqList = ref([
{
@@ -157,7 +165,7 @@ const faqList = ref([
items: [
{
q: "如何更换新的头像",
a: "在头像定制页面,首先选择地图是微信头像或系统头像,左边选择您喜欢的边框样式,右边选择头像挂饰,可移动位置,缩放大小,点击保存即可。",
a: "在头像定制页面,首先选择上传头像或系统头像,左边选择您喜欢的边框样式,右边选择头像挂饰,可移动位置,缩放大小,点击保存即可。",
},
],
},