import NewNumberBar from './NewNumberBar'; function ThresholdDetail(props) { const { data = {}, edit, onChange, onClick, current } = props; const { Type, JsonNumThreshold, ThresholdEnum } = data; if (Type == 2) { return (
{/* */}
); } else if (Type == 0) { return
文本
; } else { return
枚举({ThresholdEnum})
; } } export default ThresholdDetail;