www:新增问题反馈功能;dashboard:适配问题反馈功能,可以在后台系统和用户沟通

This commit is contained in:
eafonyang
2026-08-20 16:42:01 +08:00
parent 5ae979f7e1
commit 3702ad4163
31 changed files with 1956 additions and 11 deletions
+3 -2
View File
@@ -51,7 +51,8 @@ const hasS3 = computed(() => Boolean(s3Title.value || s3Cta.value));
</script>
<template>
<div>
<!-- 内容容器加宽--sec-cw 可继承页内所有 section-container 生效全局默认 1200px 偏窄 -->
<div style="--sec-cw: 1400px">
<PageHero
:title="heroTitle"
:subtitle="heroSubtitle || undefined"
@@ -66,7 +67,7 @@ const hasS3 = computed(() => Boolean(s3Title.value || s3Cta.value));
<!-- S1图文介绍上文下图 -->
<section v-if="hasS1" class="section-container py-64px md:py-96px">
<div class="flex flex-col gap-40px md:gap-48px">
<div class="mx-auto max-w-800px flex flex-col gap-20px">
<div class="mx-auto flex flex-col gap-20px">
<h2 v-if="s1Title" class="text-2xl md:text-3xl font-bold text-gray-900 dark:text-white">{{ s1Title }}</h2>
<!-- 富文本dashboard 端为 HTML 内容 -->
<div v-if="s1Content" class="text-base md:text-lg text-gray-600 dark:text-gray-300 leading-relaxed" v-html="s1Content" />
+5 -1
View File
@@ -73,7 +73,8 @@ const hasContacts = computed(() => contacts.value.length > 0);
</script>
<template>
<div>
<!-- 内容容器加宽--sec-cw 可继承页内所有 section-container 生效全局默认 1200px 偏窄 -->
<div style="--sec-cw: 1400px">
<PageHero
:title="heroTitle"
:subtitle="heroSubtitle || undefined"
@@ -153,6 +154,9 @@ const hasContacts = computed(() => contacts.value.length > 0);
</div>
</section>
<!-- S-FB问题反馈提交 + 查询 -->
<SupportFeedback />
<!-- S4CTA -->
<section v-if="s4Cta" class="text-center py-32px">
<NuxtLink