+ {[
+ { label: '坐席数量', value: plan.features.seats },
+ { label: '对话记录', value: plan.features.history },
+ { label: '知识库', value: plan.features.knowledge },
+ { label: '统计报表', value: plan.features.stats },
+ { label: 'API 接口', value: plan.features.api ? '支持' : '不支持' },
+ { label: '渠道', value: plan.features.channels.join('、') },
+ { label: '自定义品牌', value: plan.features.brand ? '支持' : '不支持' },
+ { label: '专属客服', value: plan.features.dedicated ? '支持' : '不支持' },
+ ].map((item, i) => (
+
+ {item.label}
+ {item.value}
+
+ ))}
+