fix: 修正邮箱设置跳转路由

pull/213/head
YangYiFan 2024-10-17 22:32:02 +08:00
parent da2936bab6
commit 17d88900a1
No known key found for this signature in database
GPG Key ID: 456559C96EDBCB71
3 changed files with 4 additions and 4 deletions

View File

@ -61,8 +61,8 @@ export const certdResources = [
// {
// title: "邮箱设置",
// name: "EmailSetting",
// path: "/certd/settings/email",
// component: "/certd/settings/email-setting.vue",
// path: "/sys/settings/email",
// component: "/sys/settings/email-setting.vue",
// meta: {
// icon: "ion:mail-outline",
// auth: true

View File

@ -122,7 +122,7 @@ export default function (certPluginGroup: PluginGroup, formWrapperRef: any): Cre
}
return (
<div>
<router-link to={{ path: "/certd/settings/email" }}></router-link>()
<router-link to={{ path: "/sys/settings/email" }}></router-link>()
</div>
);
}

View File

@ -17,7 +17,7 @@
/>
<a-alert v-if="!settingStore.isPlus" class="m-1" type="info">
<template #message> 还没有配置邮件服务器<router-link :to="{ path: '/certd/settings/email' }">现在就去</router-link> </template>
<template #message> 还没有配置邮件服务器<router-link :to="{ path: '/sys/settings/email' }">现在就去</router-link> </template>
</a-alert>
</div>
</template>