2024-01-19 16:52:55 +08:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import BehaviorMap from '../../../.dumi/theme/common/BehaviorMap';
|
|
|
|
|
|
|
|
const BehaviorPattern: React.FC = () => (
|
|
|
|
<BehaviorMap
|
|
|
|
data={{
|
|
|
|
id: '200000004',
|
|
|
|
label: '了解当前所处页面的位置并向上导航',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
id: '500000061',
|
|
|
|
label: '确定位置',
|
|
|
|
targetType: 'mvp',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
id: '707000085',
|
|
|
|
label: '了解当前页面的位置',
|
2024-07-23 22:22:24 +08:00
|
|
|
link: 'breadcrumb-index-tab-design-demo-basic',
|
2024-01-19 16:52:55 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '707000086',
|
|
|
|
label: '了解系统层级结构',
|
2024-07-23 22:22:24 +08:00
|
|
|
link: 'breadcrumb-index-tab-design-demo-basic',
|
2024-01-19 16:52:55 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '200000005',
|
|
|
|
label: '向上导航',
|
|
|
|
targetType: 'mvp',
|
2024-07-23 22:22:24 +08:00
|
|
|
link: 'breadcrumb-index-tab-design-demo-basic',
|
2024-01-19 16:52:55 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '200000006',
|
|
|
|
label: '快捷导航',
|
|
|
|
targetType: 'extension',
|
2024-07-23 22:22:24 +08:00
|
|
|
link: 'breadcrumb-index-tab-design-demo-overlay',
|
2024-01-19 16:52:55 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default BehaviorPattern;
|