feat: 403 404 页面文案可配置

This commit is contained in:
winixt 2024-10-12 09:54:32 +08:00
parent 3f14936d12
commit 01b9b63a6b
5 changed files with 57 additions and 30 deletions

View File

@ -130,7 +130,14 @@ export default {
}, { }, {
name: 'simpleList' name: 'simpleList'
}], }],
// 403 页面配置
403: {
title: '没有访问权限,请联系管理人员',
},
// 404 页面配置
404: {
title: '哎呀!这个页面找不到了',
}
}, },
}; };
``` ```

View File

@ -1,8 +1,10 @@
<template> <template>
<Wrapper :iconSrc="img403" title="没有访问权限,请联系管理人员" subTitle="" /> <Wrapper :icon-src="img403" :title="title" sub-title="" />
</template> </template>
<script> <script>
import { defineComponent } from 'vue'; import { computed, defineComponent } from 'vue';
import getConfig from '../helpers/getConfig';
import img403 from '../assets/403.png'; import img403 from '../assets/403.png';
import Wrapper from './components/Wrapper.vue'; import Wrapper from './components/Wrapper.vue';
@ -11,8 +13,13 @@ export default defineComponent({
Wrapper, Wrapper,
}, },
setup() { setup() {
const config = getConfig();
const title = computed(() => {
return config['403']?.title || '没有访问权限,请联系管理人员';
});
return { return {
img403, img403,
title,
}; };
}, },
}); });

View File

@ -1,9 +1,11 @@
<template> <template>
<Wrapper :iconSrc="img404" title="哎呀!这个页面找不到了" subTitle="" /> <Wrapper :icon-src="img404" :title="title" sub-title="" />
</template> </template>
<script> <script>
import { defineComponent } from 'vue'; import { defineComponent } from 'vue';
import img404 from '../assets/404.png'; import img404 from '../assets/404.png';
import getConfig from '../helpers/getConfig';
import Wrapper from './components/Wrapper.vue'; import Wrapper from './components/Wrapper.vue';
export default defineComponent({ export default defineComponent({
@ -11,8 +13,14 @@ export default defineComponent({
Wrapper, Wrapper,
}, },
setup() { setup() {
const config = getConfig();
const title = computed(() => {
return config['404']?.title || '哎呀!这个页面找不到了';
});
return { return {
img404, img404,
title,
}; };
}, },
}); });

View File

@ -1,4 +1,4 @@
export { Plugin } from './es/index' export { Plugin } from './es/index';
export { export {
useRoute, useRoute,
@ -15,7 +15,7 @@ export {
} from 'vue-router'; } from 'vue-router';
export interface ApplyPluginsType { export interface ApplyPluginsType {
compose: 'compose', compose: 'compose';
event: 'event', event: 'event';
modify: 'modify' modify: 'modify';
}; };

View File

@ -9,7 +9,7 @@ export const beforeRender = {
const { setRole, getRole } = accessApi; const { setRole, getRole } = accessApi;
return new Promise((resolve) => { return new Promise((resolve) => {
setTimeout(() => { setTimeout(() => {
setRole('admin'); setRole('menuTest');
resolve({ resolve({
userName: '李雷', userName: '李雷',
}); });
@ -20,8 +20,12 @@ export const beforeRender = {
}, },
}; };
export const layout = (layoutConfig, { initialState }) => ({ export function layout(layoutConfig, { initialState }) {
return {
...layoutConfig, ...layoutConfig,
403: {
title: 'hello word',
},
renderCustom: (props) => { renderCustom: (props) => {
console.log(props); console.log(props);
return <UserCenter />; return <UserCenter />;
@ -40,4 +44,5 @@ export const layout = (layoutConfig, { initialState }) => ({
); );
return menusRef; return menusRef;
}, },
}); };
}