91 |
92 |
93 |
94 |
95 |
96 |
97 |
100 |
101 |
102 |
103 | {expanded ?
104 | :
105 |
106 | }
107 |
108 |
109 |
110 | {father && (
111 |
112 |
113 | 父亲:
114 |
125 |
126 | )}
127 |
128 | {sons.length > 0 && (
129 |
130 |
131 | 子嗣:
132 | {sons.map((son, index) => (
133 |
134 |
145 | {index < sons.length - 1 && 、}
146 |
147 | ))}
148 |
149 | )}
150 |
151 |
152 |
155 |
156 | {(person.birthYear || person.deathYear) && (
157 |
158 |
159 |
160 | {person.birthYear}
161 | {person.birthYear && person.deathYear && ' - '}
162 | {person.deathYear && (person.birthYear ? person.deathYear : ` - ${person.deathYear}`)}
163 |
164 |
165 | )}
166 |