mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
34 lines
836 B
JavaScript
34 lines
836 B
JavaScript
|
|
|
|
import { access as accessApi, store, GETTER_TYPES } from '@fesjs/fes';
|
|
import PageLoading from '@/components/PageLoading';
|
|
import UserCenter from '@/components/UserCenter';
|
|
|
|
console.log(store.getters[GETTER_TYPES.user.address]);
|
|
console.log(process.env.FES_APP_PUBLISH_ERROR_PAGE);
|
|
|
|
export const beforeRender = {
|
|
loading: <PageLoading />,
|
|
action() {
|
|
const { setRole } = accessApi;
|
|
return new Promise((resolve) => {
|
|
setTimeout(() => {
|
|
setRole('menuTest');
|
|
resolve({
|
|
userName: 'harrywan'
|
|
});
|
|
}, 1000);
|
|
});
|
|
}
|
|
};
|
|
|
|
export const layout = {
|
|
customHeader: <UserCenter />
|
|
// unAccessHandler({ next }) {
|
|
// next(false);
|
|
// },
|
|
// noFoundHandler({ next }) {
|
|
// next(false);
|
|
// }
|
|
};
|