2024-01-19 14:47:04 +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: 'alert-index-tab-design-demo-content',
|
2024-01-19 14:47:04 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '707000086',
|
|
|
|
label: '了解提示类型',
|
2024-07-23 22:22:24 +08:00
|
|
|
link: 'alert-index-tab-design-demo-type',
|
2024-01-19 14:47:04 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '200000005',
|
|
|
|
label: '针对提示进行操作',
|
|
|
|
targetType: 'extension',
|
2024-07-23 22:22:24 +08:00
|
|
|
link: 'alert-index-tab-design-demo-action',
|
2024-01-19 14:47:04 +08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default BehaviorPattern;
|