我不知道,地图不会渲染,但是console.log正在运行。
............................................... .................................................. .................................................. .................................................. ....................................
`return (
<div>
{this.state.officeHours.map((value, index) => {
console.log("value", value.description);
return
(
<FormGroup row key={index}>
<Col sm={12}>
<Row>
<Col sm={4}>
<Row>
<Col sm={6}>
<IntlMessages id={value.description} />
</Col>
<Col sm={6}>
</Col>
</Row>
</Col>
<Col sm={2}>
<Row>
<Col sm={6}>
<InputSelect
options={[]}
/>
</Col>
<Col sm={6}>
<InputSelect
/>
</Col>
</Row>
</Col>
<Col sm={2}>
<IntlMessages id="label.secondRound" />
</Col>
<Col sm={2}>
<IntlMessages id="label.thirdRound" />
</Col>
<Col sm={2}>
<IntlMessages id="label.fourthRound" />
</Col>
</Row>
</Col>
</FormGroup>
)
})}
</div>
);`