From 112597ada3fa0337137c1ab85d8032244ff12985 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 7 Aug 2026 17:21:01 +0800 Subject: [PATCH] Update App.jsx via upload script - 2026-08-07 17:20:40 --- App.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/App.jsx b/App.jsx index f93463e..2f2037c 100644 --- a/App.jsx +++ b/App.jsx @@ -615,11 +615,11 @@ function productExportRows(p, categories) { if (p.powerOrCapacity) rows.push({ labelKey: '功率 / 容量', value: p.powerOrCapacity }); if (p.voltage) rows.push({ labelKey: '电压', value: p.voltage }); } + insertExtraSpecs(rows, p.extraSpecs, 'labelKey'); if (p.applicationScenarios) rows.push({ labelKey: '应用场景', value: p.applicationScenarios }); if (p.container20ft) rows.push({ labelKey: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) rows.push({ labelKey: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) rows.push({ labelKey: '40高柜装箱数量', value: p.container40hq }); - insertExtraSpecs(rows, p.extraSpecs, 'labelKey'); return rows; } @@ -918,11 +918,11 @@ function powerInfoItems(p, categories) { if (p.noiseLevel) items.push({ key: 'noiselevel', label: '噪音', value: p.noiseLevel }); if (p.dimensions) items.push({ key: 'dim', label: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) items.push({ key: 'weight', label: '净重(kg)', value: p.netWeight }); + insertExtraSpecs(items, p.extraSpecs, 'label'); if (p.applicationScenarios) items.push({ key: 'appscenario', label: '应用场景', value: p.applicationScenarios }); if (p.container20ft) items.push({ key: 'container20', label: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) items.push({ key: 'container40', label: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) items.push({ key: 'container40hq', label: '40高柜装箱数量', value: p.container40hq }); - insertExtraSpecs(items, p.extraSpecs, 'label'); return items; } if (isUpsCategory(cat) && (p.type === '机架式UPS' || p.type === '在线式高频UPS')) { @@ -958,11 +958,11 @@ function powerInfoItems(p, categories) { if (p.noiseLevel) items.push({ key: 'noiselevel', label: '噪音', value: p.noiseLevel }); if (p.interfacePort) items.push({ key: 'interfaceport', label: '控制管理', value: p.interfacePort }); if (p.optionalSnmp) items.push({ key: 'snmp', label: '可选SNMP', value: p.optionalSnmp }); + insertExtraSpecs(items, p.extraSpecs, 'label'); if (p.applicationScenarios) items.push({ key: 'appscenario', label: '应用场景', value: p.applicationScenarios }); if (p.container20ft) items.push({ key: 'container20', label: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) items.push({ key: 'container40', label: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) items.push({ key: 'container40hq', label: '40高柜装箱数量', value: p.container40hq }); - insertExtraSpecs(items, p.extraSpecs, 'label'); return items; } if (isUpsCategory(cat) && p.type !== '迷你UPS') { @@ -988,11 +988,11 @@ function powerInfoItems(p, categories) { if (p.batterySpec) items.push({ key: 'battery', label: '电池数量和容量', value: p.batterySpec }); if (p.dimensions) items.push({ key: 'dim', label: '尺寸(mm)', value: p.dimensions }); if (p.netWeight) items.push({ key: 'weight', label: '净重(kg)', value: p.netWeight }); + insertExtraSpecs(items, p.extraSpecs, 'label'); if (p.applicationScenarios) items.push({ key: 'appscenario', label: '应用场景', value: p.applicationScenarios }); if (p.container20ft) items.push({ key: 'container20', label: '20尺柜装箱数量', value: p.container20ft }); if (p.container40ft) items.push({ key: 'container40', label: '40尺柜装箱数量', value: p.container40ft }); if (p.container40hq) items.push({ key: 'container40hq', label: '40高柜装箱数量', value: p.container40hq }); - insertExtraSpecs(items, p.extraSpecs, 'label'); return items; } const fallbackItems = [{ key: 'power', label: '功率 / 容量', value: p.powerOrCapacity || '—' }];