|
@@ -422,22 +422,38 @@ const Step2 = (props) => {
|
|
|
<Row gutter={10}>
|
|
|
<Col span={5}>
|
|
|
<Form.Item label="创建日期" rules={[{ required: true, message: '请输入报告名称' }]}>
|
|
|
- {timeToString(reportCommonInfo.create_time_millis)}
|
|
|
+ <div className={styles.reportInfoContainerTooltip}>
|
|
|
+ <Tooltip placement="topLeft" title={timeToString(reportCommonInfo.create_time_millis)}>
|
|
|
+ {timeToString(reportCommonInfo.create_time_millis)}
|
|
|
+ </Tooltip>
|
|
|
+ </div>
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5}>
|
|
|
<Form.Item label="报告名称" rules={[{ required: true, message: '请输入报告名称' }]}>
|
|
|
- {reportCommonInfo.name}
|
|
|
+ <div className={styles.reportInfoContainerTooltip}>
|
|
|
+ <Tooltip placement="topLeft" title={reportCommonInfo.name}>
|
|
|
+ {reportCommonInfo.name}
|
|
|
+ </Tooltip>
|
|
|
+ </div>
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5}>
|
|
|
<Form.Item label="设备名称" required>
|
|
|
- {reportCommonInfo.device_brand}
|
|
|
+ <div className={styles.reportInfoContainerTooltip}>
|
|
|
+ <Tooltip placement="topLeft" title={reportCommonInfo.device_brand}>
|
|
|
+ {reportCommonInfo.device_brand}
|
|
|
+ </Tooltip>
|
|
|
+ </div>
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5}>
|
|
|
<Form.Item label="设备品牌" required>
|
|
|
- {reportCommonInfo.device_model}
|
|
|
+ <div className={styles.reportInfoContainerTooltip}>
|
|
|
+ <Tooltip placement="topLeft" title={reportCommonInfo.device_model}>
|
|
|
+ {reportCommonInfo.device_model}
|
|
|
+ </Tooltip>
|
|
|
+ </div>
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={4}>
|