怎么让每行显示两条数据?急

img


``` <Row>
            <Col span={12}>
              <SpecFormItem
                  {...formItemLayout}
                  colon={false}
                  label='症状随访:'
              >
                {getFieldDecorator('answerList', {
                  initialValue: followUpReplyDetails?followUpReplyDetails:[]
                })(
                  <MySelect {...this.props} getFieldValue={getFieldValue} setFieldsValue={setFieldsValue} symptomsData={symptomsData}></MySelect>
                )}
              </SpecFormItem>
            </Col>
          </Row>


组件代码:
{symptomsData.map((item,index)=>{ return (
{item.questionname}
  • {this.handleChange(value,index)}} value={value[index]?value[index].valueid:[]} > {answerData.map((answers)=>{ return (
  • ) })} ) })} ```
  • 你好,建议你考虑采用表格的方式,作为2列。

    一个Row里写两个col就行了

    看了你的描述和上面的回答,你是想哪一块并列显示啊?