...
|
...
|
@@ -173,13 +173,13 @@ const matchHeader = (path, qs, titleMap) => { |
|
|
return header;
|
|
|
}
|
|
|
|
|
|
if (/\/me\/help$/.test(path)) {
|
|
|
if (/\/help$/.test(path)) {
|
|
|
header = titleMap[1];
|
|
|
header.title.des = '帮助中心';
|
|
|
return header;
|
|
|
}
|
|
|
|
|
|
if (/\/me\/help-detail$/.test(path)) {
|
|
|
if (/\/help-detail$/.test(path)) {
|
|
|
header = titleMap[1];
|
|
|
header.title.des = qs.title; // 帮助中心详细
|
|
|
return header;
|
...
|
...
|
|