mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
import { access as accessApi, createWatermark } from '@fesjs/fes';
|
|
import { ref, watch } from 'vue';
|
|
import PageLoading from '@/components/pageLoading.vue';
|
|
import UserCenter from '@/components/userCenter.vue';
|
|
|
|
export const beforeRender = {
|
|
loading: <PageLoading />,
|
|
action() {
|
|
const { setRole, getRole } = accessApi;
|
|
return new Promise((resolve) => {
|
|
setTimeout(() => {
|
|
setRole('menuTest');
|
|
resolve({
|
|
userName: '李雷',
|
|
});
|
|
console.log('currentRole', getRole());
|
|
createWatermark({ content: '万纯(harrywan)' });
|
|
}, 1000);
|
|
});
|
|
},
|
|
};
|
|
|
|
export function layout(layoutConfig, { initialState }) {
|
|
return {
|
|
...layoutConfig,
|
|
403: {
|
|
title: 'hello word',
|
|
},
|
|
renderCustom: (props) => {
|
|
console.log(props);
|
|
return <UserCenter />;
|
|
},
|
|
menus: () => {
|
|
const menusRef = ref(layoutConfig.menus);
|
|
watch(
|
|
() => initialState.userName,
|
|
() => {
|
|
menusRef.value = [
|
|
{
|
|
name: 'store',
|
|
},
|
|
];
|
|
},
|
|
);
|
|
return menusRef;
|
|
},
|
|
};
|
|
}
|