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.
86 lines
2.2 KiB
86 lines
2.2 KiB
<template>
|
|
|
|
<Flash />
|
|
|
|
<ProductList/>
|
|
|
|
<PlugList/>
|
|
|
|
<ArticleList/>
|
|
|
|
</template>
|
|
<script setup lang="ts">
|
|
import type {ApiResult} from "~/api";
|
|
import {useServerRequest} from "~/composables/useServerRequest";
|
|
import {useConfigInfo, useForm, useToken, useWebsite} from "~/composables/configState";
|
|
import type {BreadcrumbItem} from "~/types/global";
|
|
import type {Navigation} from "~/api/cms/navigation/model";
|
|
import {getIdBySpm} from "~/utils/common";
|
|
import {navigateTo} from "#imports";
|
|
import Flash from './components/Flash.vue';
|
|
import ProductList from "./components/ProductList.vue";
|
|
import PlugList from './components/PlugList.vue';
|
|
import ArticleList from './components/ArticleList.vue';
|
|
|
|
// 引入状态管理
|
|
const route = useRoute();
|
|
const website = useWebsite();
|
|
const layout = ref<any>();
|
|
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/cms-navigation/' + getIdBySpm(5))
|
|
if (nav.value?.data) {
|
|
form.value = nav.value.data
|
|
} else {
|
|
const {data: nav} = await useServerRequest<ApiResult<Navigation>>('/cms/cms-navigation/getNavigationByPath', {query: {path: route.path}})
|
|
if (nav.value?.data) {
|
|
form.value = nav.value?.data;
|
|
}
|
|
}
|
|
// 页面布局
|
|
if (form.value?.layout) {
|
|
layout.value = JSON.parse(form.value?.layout)
|
|
}
|
|
|
|
// 未登录状态(是否强制登录)
|
|
if (!token.value || token.value == '') {
|
|
if (config.value.MustLogin) {
|
|
navigateTo('/passport/login');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// seo
|
|
useHead({
|
|
title: `现代Web应用开发(Vue)框架 · WEBSOFT`,
|
|
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>
|