mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: plugin name error
This commit is contained in:
parent
0b700847f2
commit
3067a9dc5b
@ -7,7 +7,7 @@
|
|||||||
- 主题,提供 `light`、`dark` 两种主题。
|
- 主题,提供 `light`、`dark` 两种主题。
|
||||||
- 默认实现对路由的 404、403 处理。
|
- 默认实现对路由的 404、403 处理。
|
||||||
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
||||||
- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。
|
- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。
|
||||||
- 支持自定义头部区域。
|
- 支持自定义头部区域。
|
||||||
|
|
||||||
- 可配置页面是否需要 layout。
|
- 可配置页面是否需要 layout。
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
- 主题,提供 `light`、`dark` 两种主题。
|
- 主题,提供 `light`、`dark` 两种主题。
|
||||||
- 默认实现对路由的 404、403 处理。
|
- 默认实现对路由的 404、403 处理。
|
||||||
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
|
||||||
- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。
|
- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。
|
||||||
- 支持自定义头部区域。
|
- 支持自定义头部区域。
|
||||||
|
|
||||||
- 可配置页面是否需要 layout。
|
- 可配置页面是否需要 layout。
|
||||||
|
@ -12,8 +12,8 @@ import {
|
|||||||
import { PluginType } from '../enums';
|
import { PluginType } from '../enums';
|
||||||
|
|
||||||
const RE = {
|
const RE = {
|
||||||
[PluginType.plugin]: /^(@fesjs\/)?plugin-/,
|
[PluginType.plugin]: /^(@fesjs\/|@webank\/fes-|fes-)?plugin-/,
|
||||||
[PluginType.preset]: /^(@fesjs\/)?preset-/
|
[PluginType.preset]: /^(@fesjs\/|@webank\/fes-|fes-)?preset-/
|
||||||
};
|
};
|
||||||
|
|
||||||
export function isPluginOrPreset(type, name) {
|
export function isPluginOrPreset(type, name) {
|
||||||
|
@ -48,9 +48,9 @@ export default (api) => {
|
|||||||
...api.config.locale
|
...api.config.locale
|
||||||
};
|
};
|
||||||
|
|
||||||
const loacleConfigFileBasePath = getLocaleFileBasePath();
|
const localeConfigFileBasePath = getLocaleFileBasePath();
|
||||||
|
|
||||||
const locales = getLocalesJSON(loacleConfigFileBasePath);
|
const locales = getLocalesJSON(localeConfigFileBasePath);
|
||||||
|
|
||||||
api.writeTmpFile({
|
api.writeTmpFile({
|
||||||
path: absoluteFilePath,
|
path: absoluteFilePath,
|
||||||
|
@ -5,7 +5,7 @@ export default async ({
|
|||||||
errorHandler = {},
|
errorHandler = {},
|
||||||
response
|
response
|
||||||
}, next) => {
|
}, next) => {
|
||||||
if (response && isObject(response.data) && response.data.code !== '0') {
|
if (response && isObject(response.data) && response.data.code && response.data.code !== '0') {
|
||||||
errorHandler[response.data.code] && errorHandler[response.data.code](response);
|
errorHandler[response.data.code] && errorHandler[response.data.code](response);
|
||||||
} else if (error) {
|
} else if (error) {
|
||||||
if (error.type) {
|
if (error.type) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user