mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
feat: 403 404 页面文案可配置
This commit is contained in:
parent
3f14936d12
commit
01b9b63a6b
@ -130,7 +130,14 @@ export default {
|
|||||||
}, {
|
}, {
|
||||||
name: 'simpleList'
|
name: 'simpleList'
|
||||||
}],
|
}],
|
||||||
|
// 403 页面配置
|
||||||
|
403: {
|
||||||
|
title: '没有访问权限,请联系管理人员',
|
||||||
|
},
|
||||||
|
// 404 页面配置
|
||||||
|
404: {
|
||||||
|
title: '哎呀!这个页面找不到了',
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
@ -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,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -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,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
8
packages/fes-runtime/types.d.ts
vendored
8
packages/fes-runtime/types.d.ts
vendored
@ -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';
|
||||||
};
|
};
|
||||||
|
@ -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,24 +20,29 @@ export const beforeRender = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export const layout = (layoutConfig, { initialState }) => ({
|
export function layout(layoutConfig, { initialState }) {
|
||||||
...layoutConfig,
|
return {
|
||||||
renderCustom: (props) => {
|
...layoutConfig,
|
||||||
console.log(props);
|
403: {
|
||||||
return <UserCenter />;
|
title: 'hello word',
|
||||||
},
|
},
|
||||||
menus: () => {
|
renderCustom: (props) => {
|
||||||
const menusRef = ref(layoutConfig.menus);
|
console.log(props);
|
||||||
watch(
|
return <UserCenter />;
|
||||||
() => initialState.userName,
|
},
|
||||||
() => {
|
menus: () => {
|
||||||
menusRef.value = [
|
const menusRef = ref(layoutConfig.menus);
|
||||||
{
|
watch(
|
||||||
name: 'store',
|
() => initialState.userName,
|
||||||
},
|
() => {
|
||||||
];
|
menusRef.value = [
|
||||||
},
|
{
|
||||||
);
|
name: 'store',
|
||||||
return menusRef;
|
},
|
||||||
},
|
];
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
return menusRef;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user