update README:

1. 添加体验链接

add Changelog
This commit is contained in:
harrywan 2020-09-14 15:21:38 +08:00
parent eafc92b873
commit 0128b983bc
4 changed files with 61 additions and 34 deletions

25
CHANGELOG.md Normal file
View File

@ -0,0 +1,25 @@
# Changelog
## 0.1.0
### 功能改进
#### fes-cli v0.1.4
- 去掉编译打包时时配置BannerPlugin关闭[issues/7](https://github.com/WeBankFinTech/fes.js/issues/7)
- `fes init`改为从npm下载项目模板避免频繁更新项目模板而需要更新`fes`
- 下载模板后不默认执行`git init`避免未安装git带来的问题。
#### fes-core v0.1.2
- Fes-Core替换Icon组件为ionicons图标。
- 首次运行时跳转路由改为直接跳转到defaultPage而不是通过设置根路由"/"的redirect优化体验。
#### fes-template v0.1.3
- 项目中`@webank/fes-core``@webank/fes-ui`的依赖直接在项目模板package.json中指定优化体验。
- 整理项目模板,方便体验权限管理功能。
#### fes-ui v0.1.1
- 修复`Layout`组件`offset`属性不生效
#### 文档
- 修复在线文档未正常渲染的问题。
- 更新文档中描述不准备的地方。

View File

@ -0,0 +1,25 @@
#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
# 生成静态文件
npm run build
# 进入生成的文件夹
cd dist
# 如果是发布到自定义域名
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m 'deploy'
# 如果发布到 https://<USERNAME>.github.io
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git master
# 如果发布到 https://<USERNAME>.github.io/<REPO>
git push -f https://gitee.com/WeBank/fes-pro.git master:gh-pages
cd -

View File

@ -74,20 +74,20 @@ export default {
methods: {
login() {
if (this.validate()) {
this.FesApi.fetch('login').then(() => {
// this.FesApi.fetch('login').then(() => {
//
this.FesApp.set('FesUserName', 'harrywan');
this.FesApp.set('FesRoleName', '管理员');
this.FesStorage.set('userLogin', true);
this.getRole();
});
this.FesApp.set('FesUserName', 'harrywan');
this.FesApp.set('FesRoleName', '管理员');
this.FesStorage.set('userLogin', true);
this.getRole();
// });
}
},
getRole() {
this.FesApi.fetch('getRoleName').then((res) => {
// this.FesApi.fetch('getRoleName').then((res) => {
// rolesConfig
this.FesApp.setRole(res);
});
this.FesApp.setRole("admin");
// });
},
input() {
this.error = '';

View File

@ -1,27 +1,4 @@
const CspHtmlWebpackPlugin = require('csp-html-webpack-plugin');
module.exports = function (mode, configs, webpack) {
if (mode === 'build') {
return {
plugins: [new CspHtmlWebpackPlugin({
'base-uri': "'self'",
'object-src': "'none'",
'script-src': [
"'self'"
],
'style-src': [
"'self'"
],
'connect-src': [
"'self'",
'http://example.com'
],
'img-src': [
'data:',
"'self'"
]
})]
};
}
module.exports = function getConfig() {
return {};
};
};