mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 模板优化
This commit is contained in:
parent
e433327dfd
commit
072597fcad
@ -1 +1,3 @@
|
|||||||
public-hoist-pattern[]=@babel/*
|
public-hoist-pattern[]=@babel/*
|
||||||
|
# 使用pnpm必须加上
|
||||||
|
shamefully-hoist=true
|
@ -17,7 +17,7 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body ontouchstart="">
|
<body ontouchstart="">
|
||||||
<div id="app"></div>
|
<div id="<%= mountElementId %>"></div>
|
||||||
<!-- built files will be auto injected -->
|
<!-- built files will be auto injected -->
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
@ -2,6 +2,6 @@ export const request = {
|
|||||||
errorConfig: {
|
errorConfig: {
|
||||||
404() {
|
404() {
|
||||||
console.log('to 404 page');
|
console.log('to 404 page');
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
@ -2,13 +2,10 @@ module.exports = {
|
|||||||
extends: ['@webank/eslint-config-webank/vue.js'],
|
extends: ['@webank/eslint-config-webank/vue.js'],
|
||||||
overrides: [
|
overrides: [
|
||||||
{
|
{
|
||||||
files: [
|
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
|
||||||
'**/__tests__/*.{j,t}s?(x)',
|
},
|
||||||
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
env: {
|
env: {
|
||||||
jest: true
|
jest: true,
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
@ -1 +1,3 @@
|
|||||||
public-hoist-pattern[]=@babel/*
|
public-hoist-pattern[]=@babel/*
|
||||||
|
# 使用pnpm必须加上
|
||||||
|
shamefully-hoist=true
|
@ -1,12 +1,17 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>fes.js</title>
|
<title>
|
||||||
|
<%= title %>
|
||||||
|
</title>
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="./logo.png">
|
<link rel="shortcut icon" type="image/x-icon" href="./logo.png">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="<%= mountElementId %>"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
@ -1,8 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
import { access } from '@fesjs/fes';
|
import { access } from '@fesjs/fes';
|
||||||
import PageLoading from '@/components/PageLoading';
|
import PageLoading from '@/components/PageLoading.vue';
|
||||||
import UserCenter from '@/components/UserCenter';
|
import UserCenter from '@/components/UserCenter.vue';
|
||||||
|
|
||||||
export const beforeRender = {
|
export const beforeRender = {
|
||||||
loading: <PageLoading />,
|
loading: <PageLoading />,
|
||||||
@ -13,13 +11,13 @@ export const beforeRender = {
|
|||||||
setRole('admin');
|
setRole('admin');
|
||||||
// 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件
|
// 初始化应用的全局状态,可以通过 useModel('@@initialState') 获取,具体用法看@/components/UserCenter 文件
|
||||||
resolve({
|
resolve({
|
||||||
userName: '李雷'
|
userName: '李雷',
|
||||||
});
|
});
|
||||||
}, 1000);
|
}, 1000);
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export const layout = {
|
export const layout = {
|
||||||
customHeader: <UserCenter />
|
customHeader: <UserCenter />,
|
||||||
};
|
};
|
Loading…
x
Reference in New Issue
Block a user