fix: plugin name error

This commit is contained in:
bac-joker 2021-03-07 18:12:27 +08:00
parent 0b700847f2
commit 3067a9dc5b
5 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@
- 主题,提供 `light``dark` 两种主题。
- 默认实现对路由的 404、403 处理。
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。
- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。
- 支持自定义头部区域。
- 可配置页面是否需要 layout。

View File

@ -7,7 +7,7 @@
- 主题,提供 `light``dark` 两种主题。
- 默认实现对路由的 404、403 处理。
- 搭配 [@fesjs/plugin-access](./access.html) 插件使用,可以完成对路由的权限控制。
- 搭配 [@fesjs/plugin-loacle](./locale.html) 插件使用,提供切换语言的能力。
- 搭配 [@fesjs/plugin-locale](./locale.html) 插件使用,提供切换语言的能力。
- 支持自定义头部区域。
- 可配置页面是否需要 layout。

View File

@ -12,8 +12,8 @@ import {
import { PluginType } from '../enums';
const RE = {
[PluginType.plugin]: /^(@fesjs\/)?plugin-/,
[PluginType.preset]: /^(@fesjs\/)?preset-/
[PluginType.plugin]: /^(@fesjs\/|@webank\/fes-|fes-)?plugin-/,
[PluginType.preset]: /^(@fesjs\/|@webank\/fes-|fes-)?preset-/
};
export function isPluginOrPreset(type, name) {

View File

@ -48,9 +48,9 @@ export default (api) => {
...api.config.locale
};
const loacleConfigFileBasePath = getLocaleFileBasePath();
const localeConfigFileBasePath = getLocaleFileBasePath();
const locales = getLocalesJSON(loacleConfigFileBasePath);
const locales = getLocalesJSON(localeConfigFileBasePath);
api.writeTmpFile({
path: absoluteFilePath,

View File

@ -5,7 +5,7 @@ export default async ({
errorHandler = {},
response
}, 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);
} else if (error) {
if (error.type) {