diff --git a/frontend/src/pages/Opportunities.tsx b/frontend/src/pages/Opportunities.tsx index 6222ed37..8353d830 100644 --- a/frontend/src/pages/Opportunities.tsx +++ b/frontend/src/pages/Opportunities.tsx @@ -108,8 +108,10 @@ type OpportunityExportFieldKey = | "stage" | "confidence" | "amount" + | "actualSignedAmount" | "date" | "competitorName" + | "isPoc" | "latestProgress" | "nextPlan" | "followUps" @@ -279,8 +281,10 @@ const opportunityExportColumns: OpportunityExportColumn[] = [ { key: "stage", label: "项目阶段", value: (item) => normalizeOpportunityExportText(item.stage) }, { key: "confidence", label: "项目把握度", value: (item) => normalizeOpportunityExportText(item.confidence) }, { key: "amount", label: "预计金额(元)", numFmt: "#,##0.00", value: (item) => normalizeOpportunityExportNumber(item.amount) ?? "" }, + { key: "actualSignedAmount", label: "实际签约金额(元)", numFmt: "#,##0.00", value: (item) => normalizeOpportunityExportNumber(item.actualSignedAmount) ?? "" }, { key: "date", label: "预计下单时间", value: (item) => normalizeOpportunityExportText(item.date) }, { key: "competitorName", label: "竞争对手", value: (item) => normalizeOpportunityExportText(item.competitorName) }, + { key: "isPoc", label: "是否POC测试项目", value: (item) => formatOpportunityBoolean(item.isPoc, "是", "否") }, { key: "latestProgress", label: "项目最新进展", kind: "longText", value: (item) => normalizeOpportunityExportText(item.latestProgress) }, { key: "nextPlan", label: OPPORTUNITY_NEXT_PLAN_LABEL, kind: "longText", value: (item) => normalizeOpportunityExportText(item.nextPlan) }, { key: "followUps", label: "跟进记录", kind: "followup", value: (item, relatedSales, relatedChannel) => buildOpportunityFollowUpExportText(item, relatedSales, relatedChannel) }, @@ -314,8 +318,10 @@ const defaultOpportunityExportFields: OpportunityExportFieldKey[] = [ "stage", "confidence", "amount", + "actualSignedAmount", "date", "competitorName", + "isPoc", "latestProgress", "nextPlan", "followUps", diff --git a/frontend1/dist/index.html b/frontend1/dist/index.html index 0982b2e0..14afd720 100644 --- a/frontend1/dist/index.html +++ b/frontend1/dist/index.html @@ -5,7 +5,7 @@ UnisBase - 智能会议系统 - +