Mein PlanCount ist nicht festgelegt, wie soll ich es so schreiben
planCount==1; Ebene eins anzeigen planCount==2; Ebene zwei anzeigen planCount==3;
{this.props.data.planCount === 1 ? "一级" : (this.props.data.planCount === 2 ? "二级" : "三级")}
<td className="width-w-10">{this.props.data.planCount}级</td>
如果要将数字转化成中文就需要额外处理了 不超过10的话可以这样
const level = ['一', '二', '三', '四', '五', '六', '七', '八', '九', '十'] <td className="width-w-10">{level[this.props.data.planCount - 1]}级</td>
如果要将数字转化成中文就需要额外处理了 不超过10的话可以这样