提醒
{/*{props.readonly ?*/}
{/* (props.remindTypeList.length == 0 ?
-
: props.remindTypeList.map(remindType => {*/}
{/*
remindType.split(",")
*/}
{/* })) :*/}
{/* (props.remindTypeList.length == 0 ?
*/}
{/* :props.remindTypeList.map(remindType => {*/}
{/*
remindType.split(",")
*/}
{/* }))}*/}
{props.readonly ? (
props.remindTypeList.length === 0 ? (
-
) : (
props.remindTypeList.map((remindType, index) => (
{remindType.split(",").join(", ")}
))
)
) : props.remindTypeList.length === 0 ? (
) : (
props.remindTypeList.map((remindType, index) => (
{remindType.split(",").join(", ")}
))
)}
)
}
export default TaskRemindComponent