修改主页,添加访问次数显示;

隐藏实例
This commit is contained in:
Guarp 2025-03-16 16:22:14 +08:00
parent 9e882a9151
commit cb8fafb81f
6 changed files with 32 additions and 17 deletions

View File

@ -63,7 +63,7 @@ const navItems = [
'divider', 'divider',
{name: '博客', link: '/blog'}, {name: '博客', link: '/blog'},
// {name: '', link: '/projects'}, // {name: '', link: '/projects'},
{name: '实例', link: '/demos'}, // {name: '', link: '/demos'},
{name: '小工具', link: '/tools'}, {name: '小工具', link: '/tools'},
{name: '留言板', link: '/demos/board'}, {name: '留言板', link: '/demos/board'},
'divider', 'divider',

View File

@ -26,17 +26,17 @@ onMounted(async () => {
<template> <template>
<div class="container"> <div class="container">
<el-container> <el-container>
<div style="font-size: 50px; font-weight: inherit; padding: 20px">欢迎来到 MVA-CYBER !</div>
<!-- <el-main>-->
<!-- </el-main>--> <el-main>
<!-- <el-footer>--> <div style="font-size: 50px; font-weight: inherit; padding: 20px">欢迎来到 MVA-CYBER !</div>
</el-main>
<el-footer>
<!-- <div class="text-bg"></div>--> <!-- <div class="text-bg"></div>-->
<el-col v-if="viewCountDisplay"> <el-col v-if="viewCountDisplay">
<el-statistic title="网站累计访问次数" :value="outputValue"/> <el-statistic title="网站累计访问次数" :value="outputValue"/>
</el-col> </el-col>
<!-- </el-footer>--> </el-footer>
</el-container> </el-container>
</div> </div>
@ -57,7 +57,8 @@ img {
} }
.el-main { .el-main {
overflow: hidden; display: flex;
justify-content: center;
padding: 0; padding: 0;
width: 100%; width: 100%;
} }
@ -65,12 +66,13 @@ img {
position: relative; position: relative;
} }
.el-col { .el-col {
position: absolute;
width: 100%; //position: absolute;
height: 100%; //width: 100%;
display: flex; //height: 100%;
align-items: center; //display: flex;
justify-content: center; //align-items: center;
//justify-content: center;
} }
.el-statistic { .el-statistic {
display: flex; display: flex;

View File

@ -39,14 +39,17 @@ async function goPage(page) {
} }
onMounted(async () => { onMounted(async () => {
if (store.getters.isCertified) {
refreshDraft(1, 15); refreshDraft(1, 15);
}
}) })
</script> </script>
<template> <template>
<div class="container"> <div class="container">
<!-- 顶部按钮居中 --> <!-- 顶部按钮居中 -->
<div class="top-bar"> <div v-if="! store.getters.isCertified" style="padding: 20px 0;">请联系管理员进行认证, 认证后可编写博客</div>
<div v-else class="top-bar">
<button class="create-btn" @click="createNewDraft">新建博客</button> <button class="create-btn" @click="createNewDraft">新建博客</button>
<div v-if="drafts === null">正在加载...</div> <div v-if="drafts === null">正在加载...</div>
</div> </div>

View File

@ -37,14 +37,18 @@ async function goPage(page) {
} }
onMounted(async () => { onMounted(async () => {
if (store.getters.isCertified) {
refreshwork(1, 15); refreshwork(1, 15);
}
}) })
</script> </script>
<template> <template>
<div class="container"> <div class="container">
<div v-if="! store.getters.isCertified" style="padding: 20px 0;">请联系管理员进行认证, 认证后可编写博客</div>
<!-- 顶部按钮居中 --> <!-- 顶部按钮居中 -->
<div class="top-bar"> <div v-else class="top-bar">
<button class="create-btn" @click="createNewwork">新建博客</button> <button class="create-btn" @click="createNewwork">新建博客</button>
<div v-if="works === null">正在加载...</div> <div v-if="works === null">正在加载...</div>
</div> </div>

View File

@ -155,6 +155,11 @@ router.beforeEach(async (to, from, next) => {
store.state.isViewCounted = true; store.state.isViewCounted = true;
} }
if (/^\/demos\/?$/.test(to.path)) {
next('/404');
}
if (!store.state.userInfo.uid && store.state.token) { if (!store.state.userInfo.uid && store.state.token) {
AuthService.setSelfInfo(); AuthService.setSelfInfo();
} }

View File

@ -116,6 +116,7 @@ const store = createStore({
return '未知'; return '未知';
} }
}, },
isCertified: state => state.userInfo.role_id >=1,
isAdmin: state => state.userInfo.role_id >= 2, isAdmin: state => state.userInfo.role_id >= 2,
isSuperAdmin: state => state.userInfo.role_id >= 3, isSuperAdmin: state => state.userInfo.role_id >= 3,
}, },