fix: cs index path (#14846)

This commit is contained in:
Tony
2024-03-19 13:42:09 +08:00
committed by GitHub
parent acb25bf3a6
commit 0e81bf9651
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const decodeBufferByCharset = (buffer) => {
};
export const route: Route = {
path: '/:category?',
path: '/:category{.+}?',
name: '栏目',
parameters: { category: '分类,见下表,默认为首页' },
maintainers: ['nczitzk'],
+1
View File
@@ -3,4 +3,5 @@ import type { Namespace } from '@/types';
export const namespace: Namespace = {
name: '中证网',
url: 'cs.com.cn',
categories: ['finance'],
};