Просмотр исходного кода

style: use standard frontmatter

Shuai Chen 6 лет назад
Родитель
Сommit
5ec235625d

+ 1 - 3
src/components/Authorized/index.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: Authorized
-  zh-CN: Authorized
+title: Authorized
 subtitle: 权限
 cols: 1
 order: 15

+ 1 - 3
src/components/Charts/index.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: Charts
-  zh-CN: Charts
+title: Charts
 subtitle: 图表
 order: 2
 cols: 2

+ 1 - 3
src/components/GlobalFooter/index.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: GlobalFooter
-  zh-CN: GlobalFooter
+title: GlobalFooter
 subtitle: 全局页脚
 cols: 1
 order: 7

+ 2 - 4
src/components/HeaderSearch/index.en-US.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: HeaderSearch
-  zh-CN: HeaderSearch
+title: HeaderSearch
 subtitle: Top search box
 cols: 1
 order: 8
@@ -21,4 +19,4 @@ onSelect | Called when a option is selected. param is option's value and option
 onPressEnter | Callback when pressing Enter | function(value) | -
 onVisibleChange | Show or hide the callback of the text box | function(value) |-
 defaultOpen | The input box is displayed for the first time. | boolean | false
-open | The input box is displayed | booelan |false
+open | The input box is displayed | boolean |false

+ 2 - 4
src/components/HeaderSearch/index.zh-CN.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: HeaderSearch
-  zh-CN: HeaderSearch
+title: HeaderSearch
 subtitle: 顶部搜索框
 cols: 1
 order: 8
@@ -21,4 +19,4 @@ onSelect | 被选中时调用,参数为选中项的 value 值 | function(value
 onPressEnter | 按下回车时的回调 | function(value) | -
 onVisibleChange | 显示或隐藏文本框的回调 | function(value) |-
 defaultOpen | 输入框首次显示是否显示  | boolean | false
-open | 控制输入框是否显示 | booelan |false
+open | 控制输入框是否显示 | boolean |false

+ 1 - 3
src/components/PageHeader/index.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: PageHeader
-  zh-CN: PageHeader
+title: PageHeader
 subtitle: 页头
 cols: 1
 order: 11

+ 1 - 3
src/components/Result/index.md

@@ -1,7 +1,5 @@
 ---
-title:
-  en-US: Result
-  zh-CN: Result
+title: Result
 subtitle: 处理结果
 cols: 1
 order: 12

+ 1 - 3
src/components/TagSelect/index.md

@@ -1,7 +1,5 @@
 ---
-title: 
-  en-US: TagSelect
-  zh-CN: TagSelect
+title: TagSelect
 subtitle: 标签选择器
 cols: 1
 order: 13

+ 1 - 3
src/components/Trend/index.md

@@ -1,7 +1,5 @@
 ---
-title: 
-  en-US: Trend
-  zh-CN: Trend
+title: Trend
 subtitle: 趋势标记
 cols: 1
 order: 14

+ 1 - 0
src/utils/getPageTitle.js

@@ -8,6 +8,7 @@ export const matchParamsPath = (pathname, breadcrumbNameMap) => {
   const pathKey = Object.keys(breadcrumbNameMap).find(key => pathToRegexp(key).test(pathname));
   return breadcrumbNameMap[pathKey];
 };
+
 const getPageTitle = (pathname, breadcrumbNameMap) => {
   const currRouterData = matchParamsPath(pathname, breadcrumbNameMap);
   if (!currRouterData) {