import React from "react" import style from './index.less' import { CheckCircleFilled } from "@ant-design/icons" /** * 营销目的 * @param param0 * @returns */ const MarketingGoal: React.FC = ({ data, value, onChange, id }) => { return
{data.map(item =>
onChange?.(item.value)} className={`${style.marketingGoal_col} ${value === item.value ? style.marketingGoal_active : ''}`}> {value === item.value ? <>
: } {item.label}
)}
} export default React.memo(MarketingGoal)