import React from 'react'; import { Ellipsis, TableCard } from '@/components'; import '@/style/common.less'; import '../index.less'; import { imgMap, typeList } from './noticeTemplate'; import { CheckOutlined } from '@ant-design/icons'; export interface NoticeCardProps extends ConfigItem { detail?: React.ReactNode; actions?: React.ReactNode[]; avatarSize?: number; className?: string; onUnBind?: (e: any) => void; showBindBtn?: boolean; cardType?: 'bind' | 'unbind'; showTool?: boolean; onClick?: () => void; } export const ExtraNoticeConfigCard = (props: NoticeCardProps) => { return (
{props.type}
); }; export default (props: NoticeCardProps) => { return (
{props.type}
{/**/} {/* */} {/* {props.name}*/} {/* */} {/**/}
{/*
{typeList[props.type][props.provider] || '暂无'}
*/}
{/*
*/} {/* */} {/* {props.description}*/} {/* */} {/*
*/}
); };