You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
<template>
|
|
<!-- Banner -->
|
|
<Banner :data="form" />
|
|
|
|
<!-- 容器 -->
|
|
<div class="container md:w-screen-xl m-auto">
|
|
<div class="flex flex-col">
|
|
<Breadcrumb :data="form" />
|
|
<div :class="form.design?.style" class="page-main w-full bg-white rounded-lg">
|
|
<div class="p-4 leading-7" v-html="form.design?.content">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mt-[60px]" v-if="!form.design">
|
|
<el-empty description="404 页面不存在2"></el-empty>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import type {ApiResult} from "~/api";
|
|
import {useServerRequest} from "~/composables/useServerRequest";
|
|
import {useConfigInfo, useForm, useToken, useWebsite} from "~/composables/configState";
|
|
import Breadcrumb from "~/components/Breadcrumb.vue";
|
|
import type {BreadcrumbItem} from "~/types/global";
|
|
import type {Navigation} from "~/api/cms/navigation/model";
|
|
import {getIdBySpm} from "~/utils/common";
|
|
|
|
// 引入状态管理
|
|
const route = useRoute();
|
|
const website = useWebsite();
|
|
const config = useConfigInfo();
|
|
const token = useToken();
|
|
const form = useForm();
|
|
const breadcrumb = ref<BreadcrumbItem>();
|
|
|
|
// 请求数据
|
|
const reload = async () => {
|
|
|
|
// 存在spm(优先级高)
|
|
const { data: nav } = await useServerRequest<ApiResult<Navigation>>('/cms/navigation/' + getIdBySpm(5))
|
|
if (nav.value?.data) {
|
|
form.value = nav.value.data
|
|
}else{
|
|
const { data: nav } = await useServerRequest<ApiResult<Navigation>>('/cms/navigation/getNavigationByPath',{query: {path: route.path}})
|
|
if(nav.value?.data){
|
|
form.value = nav.value?.data;
|
|
}
|
|
}
|
|
|
|
// seo
|
|
useHead({
|
|
title: `${form.value.title} - ${website.value.websiteName}`,
|
|
meta: [{ name: form.value.design?.keywords, content: form.value.design?.description }],
|
|
bodyAttrs: {
|
|
class: "page-container",
|
|
},
|
|
script: [
|
|
{
|
|
children: `console.log(${JSON.stringify(form.value)})`,
|
|
},
|
|
],
|
|
});
|
|
// 面包屑
|
|
breadcrumb.value = form.value
|
|
}
|
|
|
|
watch(
|
|
() => route.path,
|
|
(path) => {
|
|
console.log(path,'=>Path')
|
|
|
|
reload();
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|