|
@@ -223,13 +223,24 @@ const Runtime: React.FC = () => {
|
|
})} */}
|
|
})} */}
|
|
{item.showTimeList && item.showTimeList.length > 1 && (
|
|
{item.showTimeList && item.showTimeList.length > 1 && (
|
|
<Popover
|
|
<Popover
|
|
- content={(item.showTimeList || []).map((timeItem, index) => {
|
|
|
|
- return (
|
|
|
|
- <div key={'time' + index}>
|
|
|
|
- {timeItem[0]}-{timeItem[1]}
|
|
|
|
|
|
+ content={
|
|
|
|
+ <div>
|
|
|
|
+ <div className={styles.popTitle}>工作时间:</div>
|
|
|
|
+ <div>
|
|
|
|
+ {item.showTimeList[0][0]}-{item.showTimeList[0][1]}
|
|
</div>
|
|
</div>
|
|
- );
|
|
|
|
- })}
|
|
|
|
|
|
+ <div className={styles.popTitle}>会议时间:</div>
|
|
|
|
+ {(item.showTimeList || []).map((timeItem, index) => {
|
|
|
|
+ if (index > 0) {
|
|
|
|
+ return (
|
|
|
|
+ <div key={'time' + index}>
|
|
|
|
+ {timeItem[0]}-{timeItem[1]}
|
|
|
|
+ </div>
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ })}
|
|
|
|
+ </div>
|
|
|
|
+ }
|
|
trigger="hover"
|
|
trigger="hover"
|
|
style={{ color: 'none' }}
|
|
style={{ color: 'none' }}
|
|
>
|
|
>
|