mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 07:40:26 +08:00
* feat(route): add DT财经数据洞察 * fix typo * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
26 lines
868 B
JavaScript
26 lines
868 B
JavaScript
module.exports = {
|
|
'dtcj.com': {
|
|
_name: 'DT 财经',
|
|
'.': [
|
|
{
|
|
title: '数据侠专栏',
|
|
docs: 'https://docs.rsshub.app/finance.html#dt-cai-jing',
|
|
source: ['/datahero/topic'],
|
|
target: (_params, url) => `/dtcj/datahero/${new URL(url).searchParams.get('topic_id')}`,
|
|
},
|
|
{
|
|
title: '数据洞察',
|
|
docs: 'https://docs.rsshub.app/finance.html#dt-cai-jing',
|
|
source: ['/dtcj/datainsight'],
|
|
target: '/dtcj/datainsight',
|
|
},
|
|
{
|
|
title: '数据洞察',
|
|
docs: 'https://docs.rsshub.app/finance.html#dt-cai-jing',
|
|
source: ['/insighttopic/:id'],
|
|
target: '/dtcj/datainsight/:id',
|
|
},
|
|
],
|
|
},
|
|
};
|