www:新增问题反馈功能;dashboard:适配问题反馈功能,可以在后台系统和用户沟通
This commit is contained in:
@@ -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" />
|
||||
|
||||
@@ -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 />
|
||||
|
||||
<!-- S4:CTA -->
|
||||
<section v-if="s4Cta" class="text-center py-32px">
|
||||
<NuxtLink
|
||||
|
||||
Reference in New Issue
Block a user