在这里插入图片描述
欢迎加入开源鸿蒙跨平台社区:https://openharmonycrossplatform.csdn.net

项目概述

项目投资评估系统是一个基于Kotlin Multiplatform (KMP)和OpenHarmony平台开发的综合性投资管理解决方案。该系统通过实时收集和分析项目投资的关键指标,包括预期收益率、投资风险等级、项目周期、资金回收期和投资回报率等,为企业投资决策部门提供科学的投资评估支持和项目优化建议。

项目投资评估是现代企业战略决策的重要基础,直接影响到企业的资本配置和长期发展。传统的投资评估往往依赖人工分析和经验判断,存在评估标准不统一、数据分散、风险识别不及时等问题。本系统通过引入先进的投资数据分析和评估技术,实现了对项目投资的全面、实时、精准的监测和评估。该系统采用KMP技术栈,使得核心的投资分析算法可以在Kotlin中编写,然后编译为JavaScript在Web端运行,同时通过ArkTS在OpenHarmony设备上调用,实现了跨平台的统一解决方案。

核心功能特性

1. 多维度投资指标监测

系统能够同时监测预期收益率、投资风险等级、项目周期、资金回收期和投资回报率五个关键投资指标。这些指标的组合分析可以全面反映项目的投资价值。预期收益率衡量收益潜力;投资风险等级反映风险程度;项目周期体现时间成本;资金回收期关系到流动性;投资回报率影响到投资效率。

2. 智能投资评估算法

系统采用多维度评估算法,综合考虑各个投资指标的相对重要性,给出客观的投资评分。通过建立投资指标与项目价值之间的映射关系,系统能够快速识别优质项目和风险项目。这种算法不仅考虑了单个指标的影响,还充分考虑了指标之间的相互关系和项目的发展潜力。

3. 分级投资决策建议

系统根据当前的项目投资状况,生成分级的决策建议。对于优质项目,系统建议加大投资力度和优化资源配置;对于风险项目,系统会提出具体的风险防控方案,包括防控的方向、预期效果等。这种分级方式确保了决策建议的针对性和实用性。

4. 投资价值评估支持

系统能够计算项目的投资价值指数,包括项目评级、投资潜力、风险评级等。通过这种量化的评估,企业可以清晰地了解项目的投资价值,为投资决策提供有力支撑。

技术架构

Kotlin后端实现

使用Kotlin语言编写核心的投资分析算法和评估模型。Kotlin的简洁语法和强大的类型系统使得复杂的算法实现既易于维护又能保证运行时的安全性。通过@JsExport注解,将Kotlin函数导出为JavaScript,实现跨平台调用。

JavaScript中间层

Kotlin编译生成的JavaScript代码作为中间层,提供了Web端的数据处理能力。这一层负责接收来自各种数据源的输入,进行数据验证和转换,然后调用核心的分析算法。

ArkTS前端展示

在OpenHarmony设备上,使用ArkTS编写用户界面。通过调用JavaScript导出的函数,实现了与后端逻辑的无缝集成。用户可以通过直观的界面输入投资数据,实时查看分析结果和决策建议。

应用场景

本系统适用于各类企业的投资决策部门,特别是:

  • 企业的战略投资部门
  • 风险投资公司的项目评估团队
  • 私募基金的投资管理中心
  • 企业的资本运营部门

Kotlin实现代码

项目投资评估系统核心算法

@JsExport
fun projectInvestmentEvaluationSystem(inputData: String): String {
    val parts = inputData.trim().split(" ")
    if (parts.size != 5) {
        return "格式错误\n请输入: 预期收益率(%) 投资风险等级(1-10) 项目周期(年) 资金回收期(年) 投资回报率(%)\n例如: 25 4 5 3 150"
    }
    
    val expectedReturnRate = parts[0].toDoubleOrNull()
    val investmentRiskLevel = parts[1].toDoubleOrNull()
    val projectCycle = parts[2].toDoubleOrNull()
    val fundRecoveryPeriod = parts[3].toDoubleOrNull()
    val investmentROI = parts[4].toDoubleOrNull()
    
    if (expectedReturnRate == null || investmentRiskLevel == null || projectCycle == null || fundRecoveryPeriod == null || investmentROI == null) {
        return "数值错误\n请输入有效的数字"
    }
    
    // 参数范围验证
    if (expectedReturnRate < 0 || expectedReturnRate > 100) {
        return "预期收益率应在0-100%之间"
    }
    if (investmentRiskLevel < 1 || investmentRiskLevel > 10) {
        return "投资风险等级应在1-10之间"
    }
    if (projectCycle < 0 || projectCycle > 50) {
        return "项目周期应在0-50年之间"
    }
    if (fundRecoveryPeriod < 0 || fundRecoveryPeriod > 50) {
        return "资金回收期应在0-50年之间"
    }
    if (investmentROI < 0 || investmentROI > 1000) {
        return "投资回报率应在0-1000%之间"
    }
    
    // 计算各指标的评分
    val returnScore = calculateReturnScore(expectedReturnRate)
    val riskScore = calculateRiskScore(investmentRiskLevel)
    val cycleScore = calculateCycleScore(projectCycle)
    val recoveryScore = calculateRecoveryScore(fundRecoveryPeriod)
    val roiScore = calculateROIScore(investmentROI)
    
    // 加权综合评分
    val overallScore = (returnScore * 0.30 + riskScore * 0.25 + cycleScore * 0.15 + recoveryScore * 0.15 + roiScore * 0.15).toInt()
    
    // 项目评级判定
    val projectRating = when {
        overallScore >= 90 -> "🟢 AAA级(优秀)"
        overallScore >= 80 -> "🟡 AA级(良好)"
        overallScore >= 70 -> "🟠 A级(一般)"
        overallScore >= 60 -> "🔴 BBB级(较差)"
        else -> "⚫ BB级(不推荐)"
    }
    
    // 计算投资潜力
    val investmentPotential = when {
        overallScore >= 90 -> "极高"
        overallScore >= 80 -> "高"
        overallScore >= 70 -> "中等"
        overallScore >= 60 -> "低"
        else -> "极低"
    }
    
    // 计算推荐投资额
    val recommendedInvestmentAmount = when {
        overallScore >= 90 -> 10000
        overallScore >= 80 -> 5000
        overallScore >= 70 -> 2000
        overallScore >= 60 -> 500
        else -> 100
    }
    
    // 计算投资改进空间
    val returnGap = 100 - expectedReturnRate
    val riskGap = investmentRiskLevel
    val cycleGap = projectCycle
    val recoveryGap = fundRecoveryPeriod
    val roiGap = (1000 - investmentROI) / 10
    
    // 生成详细报告
    return buildString {
        appendLine("╔════════════════════════════════════════╗")
        appendLine("║    💰 项目投资评估系统报告            ║")
        appendLine("╚════════════════════════════════════════╝")
        appendLine()
        appendLine("📊 投资指标监测")
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        appendLine("预期收益率: ${(expectedReturnRate * 100).toInt() / 100.0}%")
        appendLine("投资风险等级: ${(investmentRiskLevel * 100).toInt() / 100.0}")
        appendLine("项目周期: ${(projectCycle * 100).toInt() / 100.0}年")
        appendLine("资金回收期: ${(fundRecoveryPeriod * 100).toInt() / 100.0}年")
        appendLine("投资回报率: ${(investmentROI * 100).toInt() / 100.0}%")
        appendLine()
        appendLine("⭐ 指标评分")
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        appendLine("收益评分: $returnScore/100")
        appendLine("风险评分: $riskScore/100")
        appendLine("周期评分: $cycleScore/100")
        appendLine("回收评分: $recoveryScore/100")
        appendLine("ROI评分: $roiScore/100")
        appendLine()
        appendLine("🎯 综合评估")
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        appendLine("综合投资评分: $overallScore/100")
        appendLine("项目评级: $projectRating")
        appendLine("投资潜力: $investmentPotential")
        appendLine("推荐投资额: ¥${recommendedInvestmentAmount}万元")
        appendLine()
        appendLine("📈 投资风险分析")
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        appendLine("收益改进空间: ${(returnGap * 100).toInt() / 100.0}%")
        appendLine("风险改进空间: ${(riskGap * 100).toInt() / 100.0}")
        appendLine("周期改进空间: ${(cycleGap * 100).toInt() / 100.0}年")
        appendLine("回收改进空间: ${(recoveryGap * 100).toInt() / 100.0}年")
        appendLine("ROI改进空间: ${(roiGap * 100).toInt() / 100.0}%")
        appendLine()
        appendLine("💡 投资决策建议")
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        
        // 收益建议
        if (expectedReturnRate < 15) {
            appendLine("  📉 预期收益率偏低")
            appendLine("     - 优化项目方案")
            appendLine("     - 提升收益潜力")
            appendLine("     - 改进商业模式")
        } else if (expectedReturnRate >= 30) {
            appendLine("  ✅ 预期收益率处于优秀水平")
            appendLine("     - 继续保持高收益")
            appendLine("     - 深化价值创造")
        }
        
        // 风险建议
        if (investmentRiskLevel > 7) {
            appendLine("  🔴 投资风险等级过高")
            appendLine("     - 加强风险防控")
            appendLine("     - 提升风险管理")
            appendLine("     - 改进风险策略")
        } else if (investmentRiskLevel <= 3) {
            appendLine("  ✅ 投资风险等级处于优秀水平")
            appendLine("     - 继续保持低风险")
            appendLine("     - 深化风险管理")
        }
        
        // 周期建议
        if (projectCycle > 10) {
            appendLine("  ⏱️ 项目周期过长")
            appendLine("     - 优化项目计划")
            appendLine("     - 缩短项目周期")
            appendLine("     - 改进执行效率")
        } else if (projectCycle <= 3) {
            appendLine("  ✅ 项目周期处于优秀水平")
            appendLine("     - 继续保持短周期")
            appendLine("     - 深化效率优化")
        }
        
        // 回收建议
        if (fundRecoveryPeriod > 5) {
            appendLine("  💸 资金回收期过长")
            appendLine("     - 优化现金流")
            appendLine("     - 加快资金回收")
            appendLine("     - 改进融资策略")
        } else if (fundRecoveryPeriod <= 2) {
            appendLine("  ✅ 资金回收期处于优秀水平")
            appendLine("     - 继续保持快速回收")
            appendLine("     - 深化流动性管理")
        }
        
        // ROI建议
        if (investmentROI < 100) {
            appendLine("  📊 投资回报率偏低")
            appendLine("     - 优化投资结构")
            appendLine("     - 提升回报效率")
            appendLine("     - 改进投资策略")
        } else if (investmentROI >= 200) {
            appendLine("  ✅ 投资回报率处于优秀水平")
            appendLine("     - 继续保持高回报")
            appendLine("     - 深化价值创造")
        }
        
        appendLine()
        appendLine("📋 投资管理建议")
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        when {
            overallScore < 60 -> {
                appendLine("⚫ 项目投资评分严重不足 - 建议不予投资")
                appendLine("  1. 进行全面的项目评估")
                appendLine("  2. 识别关键风险因素")
                appendLine("  3. 寻找替代项目")
                appendLine("  4. 建立评估标准")
                appendLine("  5. 加强投资管理")
            }
            overallScore < 70 -> {
                appendLine("🔴 项目投资评分存在问题 - 建议谨慎投资")
                appendLine("  1. 加强项目沟通")
                appendLine("  2. 提升管理要求")
                appendLine("  3. 优化投资结构")
                appendLine("  4. 准备风险预案")
            }
            overallScore < 80 -> {
                appendLine("🟠 项目投资评分一般 - 继续优化")
                appendLine("  1. 微调投资策略")
                appendLine("  2. 持续改进管理")
                appendLine("  3. 定期项目审查")
            }
            overallScore < 90 -> {
                appendLine("🟡 项目投资评分良好 - 可以投资")
                appendLine("  1. 维持现有计划")
                appendLine("  2. 定期项目审核")
                appendLine("  3. 持续创新优化")
            }
            else -> {
                appendLine("🟢 项目投资评分优秀 - 强烈推荐投资")
                appendLine("  1. 加大投资力度")
                appendLine("  2. 优化资源配置")
                appendLine("  3. 深化战略合作")
            }
        }
        
        appendLine()
        appendLine("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━")
        appendLine("✅ 评估完成 | 时间戳: ${System.currentTimeMillis()}")
    }
}

// 收益评分函数
private fun calculateReturnScore(rate: Double): Int {
    return when {
        rate >= 30 -> 100
        rate >= 20 -> 85
        rate >= 10 -> 70
        else -> 40
    }
}

// 风险评分函数
private fun calculateRiskScore(level: Double): Int {
    return when {
        level <= 3 -> 100
        level <= 5 -> 85
        level <= 7 -> 70
        else -> 40
    }
}

// 周期评分函数
private fun calculateCycleScore(cycle: Double): Int {
    return when {
        cycle <= 3 -> 100
        cycle <= 5 -> 85
        cycle <= 10 -> 70
        else -> 40
    }
}

// 回收评分函数
private fun calculateRecoveryScore(period: Double): Int {
    return when {
        period <= 2 -> 100
        period <= 3 -> 85
        period <= 5 -> 70
        else -> 40
    }
}

// ROI评分函数
private fun calculateROIScore(roi: Double): Int {
    return when {
        roi >= 200 -> 100
        roi >= 150 -> 85
        roi >= 100 -> 70
        else -> 40
    }
}

代码说明

上述Kotlin代码实现了项目投资评估系统的核心算法。projectInvestmentEvaluationSystem函数是主入口,接收一个包含五个投资指标的字符串输入。函数首先进行输入验证,确保数据的有效性和范围的合理性。

然后,它计算各指标的评分,其中每个指标都需要通过专门的评分函数计算。这种设计使得系统能够灵活处理不同类型的投资数据。

系统使用加权平均法计算综合评分,其中预期收益率的权重最高(30%),因为它是投资价值的核心体现。投资风险等级的权重为25%,项目周期、资金回收期和投资回报率的权重各为15%。

最后,系统根据综合评分判定项目评级,并生成详细的评估报告。同时,系统还计算了投资潜力和推荐投资额,为投资决策部门提供量化的决策支持。


JavaScript编译版本

// 项目投资评估系统 - JavaScript版本
function projectInvestmentEvaluationSystem(inputData) {
    const parts = inputData.trim().split(" ");
    if (parts.length !== 5) {
        return "格式错误\n请输入: 预期收益率(%) 投资风险等级(1-10) 项目周期(年) 资金回收期(年) 投资回报率(%)\n例如: 25 4 5 3 150";
    }
    
    const expectedReturnRate = parseFloat(parts[0]);
    const investmentRiskLevel = parseFloat(parts[1]);
    const projectCycle = parseFloat(parts[2]);
    const fundRecoveryPeriod = parseFloat(parts[3]);
    const investmentROI = parseFloat(parts[4]);
    
    // 数值验证
    if (isNaN(expectedReturnRate) || isNaN(investmentRiskLevel) || isNaN(projectCycle) || 
        isNaN(fundRecoveryPeriod) || isNaN(investmentROI)) {
        return "数值错误\n请输入有效的数字";
    }
    
    // 范围检查
    if (expectedReturnRate < 0 || expectedReturnRate > 100) {
        return "预期收益率应在0-100%之间";
    }
    if (investmentRiskLevel < 1 || investmentRiskLevel > 10) {
        return "投资风险等级应在1-10之间";
    }
    if (projectCycle < 0 || projectCycle > 50) {
        return "项目周期应在0-50年之间";
    }
    if (fundRecoveryPeriod < 0 || fundRecoveryPeriod > 50) {
        return "资金回收期应在0-50年之间";
    }
    if (investmentROI < 0 || investmentROI > 1000) {
        return "投资回报率应在0-1000%之间";
    }
    
    // 计算各指标评分
    const returnScore = calculateReturnScore(expectedReturnRate);
    const riskScore = calculateRiskScore(investmentRiskLevel);
    const cycleScore = calculateCycleScore(projectCycle);
    const recoveryScore = calculateRecoveryScore(fundRecoveryPeriod);
    const roiScore = calculateROIScore(investmentROI);
    
    // 加权综合评分
    const overallScore = Math.floor(
        returnScore * 0.30 + riskScore * 0.25 + cycleScore * 0.15 + 
        recoveryScore * 0.15 + roiScore * 0.15
    );
    
    // 项目评级判定
    let projectRating;
    if (overallScore >= 90) {
        projectRating = "🟢 AAA级(优秀)";
    } else if (overallScore >= 80) {
        projectRating = "🟡 AA级(良好)";
    } else if (overallScore >= 70) {
        projectRating = "🟠 A级(一般)";
    } else if (overallScore >= 60) {
        projectRating = "🔴 BBB级(较差)";
    } else {
        projectRating = "⚫ BB级(不推荐)";
    }
    
    // 计算投资潜力
    let investmentPotential;
    if (overallScore >= 90) {
        investmentPotential = "极高";
    } else if (overallScore >= 80) {
        investmentPotential = "高";
    } else if (overallScore >= 70) {
        investmentPotential = "中等";
    } else if (overallScore >= 60) {
        investmentPotential = "低";
    } else {
        investmentPotential = "极低";
    }
    
    // 计算推荐投资额
    let recommendedInvestmentAmount;
    if (overallScore >= 90) {
        recommendedInvestmentAmount = 10000;
    } else if (overallScore >= 80) {
        recommendedInvestmentAmount = 5000;
    } else if (overallScore >= 70) {
        recommendedInvestmentAmount = 2000;
    } else if (overallScore >= 60) {
        recommendedInvestmentAmount = 500;
    } else {
        recommendedInvestmentAmount = 100;
    }
    
    // 计算投资改进空间
    const returnGap = 100 - expectedReturnRate;
    const riskGap = investmentRiskLevel;
    const cycleGap = projectCycle;
    const recoveryGap = fundRecoveryPeriod;
    const roiGap = (1000 - investmentROI) / 10;
    
    // 生成报告
    let report = "";
    report += "╔════════════════════════════════════════╗\n";
    report += "║    💰 项目投资评估系统报告            ║\n";
    report += "╚════════════════════════════════════════╝\n\n";
    
    report += "📊 投资指标监测\n";
    report += "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    report += `预期收益率: ${(Math.round(expectedReturnRate * 100) / 100).toFixed(2)}%\n`;
    report += `投资风险等级: ${(Math.round(investmentRiskLevel * 100) / 100).toFixed(2)}\n`;
    report += `项目周期: ${(Math.round(projectCycle * 100) / 100).toFixed(2)}年\n`;
    report += `资金回收期: ${(Math.round(fundRecoveryPeriod * 100) / 100).toFixed(2)}年\n`;
    report += `投资回报率: ${(Math.round(investmentROI * 100) / 100).toFixed(2)}%\n\n`;
    
    report += "⭐ 指标评分\n";
    report += "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    report += `收益评分: ${returnScore}/100\n`;
    report += `风险评分: ${riskScore}/100\n`;
    report += `周期评分: ${cycleScore}/100\n`;
    report += `回收评分: ${recoveryScore}/100\n`;
    report += `ROI评分: ${roiScore}/100\n\n`;
    
    report += "🎯 综合评估\n";
    report += "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    report += `综合投资评分: ${overallScore}/100\n`;
    report += `项目评级: ${projectRating}\n`;
    report += `投资潜力: ${investmentPotential}\n`;
    report += `推荐投资额: ¥${recommendedInvestmentAmount}万元\n\n`;
    
    report += "📈 投资风险分析\n";
    report += "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    report += `收益改进空间: ${(Math.round(returnGap * 100) / 100).toFixed(2)}%\n`;
    report += `风险改进空间: ${(Math.round(riskGap * 100) / 100).toFixed(2)}\n`;
    report += `周期改进空间: ${(Math.round(cycleGap * 100) / 100).toFixed(2)}年\n`;
    report += `回收改进空间: ${(Math.round(recoveryGap * 100) / 100).toFixed(2)}年\n`;
    report += `ROI改进空间: ${(Math.round(roiGap * 100) / 100).toFixed(2)}%\n\n`;
    
    report += "💡 投资决策建议\n";
    report += "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    
    // 收益建议
    if (expectedReturnRate < 15) {
        report += "  📉 预期收益率偏低\n";
        report += "     - 优化项目方案\n";
        report += "     - 提升收益潜力\n";
        report += "     - 改进商业模式\n";
    } else if (expectedReturnRate >= 30) {
        report += "  ✅ 预期收益率处于优秀水平\n";
        report += "     - 继续保持高收益\n";
        report += "     - 深化价值创造\n";
    }
    
    // 风险建议
    if (investmentRiskLevel > 7) {
        report += "  🔴 投资风险等级过高\n";
        report += "     - 加强风险防控\n";
        report += "     - 提升风险管理\n";
        report += "     - 改进风险策略\n";
    } else if (investmentRiskLevel <= 3) {
        report += "  ✅ 投资风险等级处于优秀水平\n";
        report += "     - 继续保持低风险\n";
        report += "     - 深化风险管理\n";
    }
    
    // 周期建议
    if (projectCycle > 10) {
        report += "  ⏱️ 项目周期过长\n";
        report += "     - 优化项目计划\n";
        report += "     - 缩短项目周期\n";
        report += "     - 改进执行效率\n";
    } else if (projectCycle <= 3) {
        report += "  ✅ 项目周期处于优秀水平\n";
        report += "     - 继续保持短周期\n";
        report += "     - 深化效率优化\n";
    }
    
    // 回收建议
    if (fundRecoveryPeriod > 5) {
        report += "  💸 资金回收期过长\n";
        report += "     - 优化现金流\n";
        report += "     - 加快资金回收\n";
        report += "     - 改进融资策略\n";
    } else if (fundRecoveryPeriod <= 2) {
        report += "  ✅ 资金回收期处于优秀水平\n";
        report += "     - 继续保持快速回收\n";
        report += "     - 深化流动性管理\n";
    }
    
    // ROI建议
    if (investmentROI < 100) {
        report += "  📊 投资回报率偏低\n";
        report += "     - 优化投资结构\n";
        report += "     - 提升回报效率\n";
        report += "     - 改进投资策略\n";
    } else if (investmentROI >= 200) {
        report += "  ✅ 投资回报率处于优秀水平\n";
        report += "     - 继续保持高回报\n";
        report += "     - 深化价值创造\n";
    }
    
    report += "\n📋 投资管理建议\n";
    report += "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    
    if (overallScore < 60) {
        report += "⚫ 项目投资评分严重不足 - 建议不予投资\n";
        report += "  1. 进行全面的项目评估\n";
        report += "  2. 识别关键风险因素\n";
        report += "  3. 寻找替代项目\n";
        report += "  4. 建立评估标准\n";
        report += "  5. 加强投资管理\n";
    } else if (overallScore < 70) {
        report += "🔴 项目投资评分存在问题 - 建议谨慎投资\n";
        report += "  1. 加强项目沟通\n";
        report += "  2. 提升管理要求\n";
        report += "  3. 优化投资结构\n";
        report += "  4. 准备风险预案\n";
    } else if (overallScore < 80) {
        report += "🟠 项目投资评分一般 - 继续优化\n";
        report += "  1. 微调投资策略\n";
        report += "  2. 持续改进管理\n";
        report += "  3. 定期项目审查\n";
    } else if (overallScore < 90) {
        report += "🟡 项目投资评分良好 - 可以投资\n";
        report += "  1. 维持现有计划\n";
        report += "  2. 定期项目审核\n";
        report += "  3. 持续创新优化\n";
    } else {
        report += "🟢 项目投资评分优秀 - 强烈推荐投资\n";
        report += "  1. 加大投资力度\n";
        report += "  2. 优化资源配置\n";
        report += "  3. 深化战略合作\n";
    }
    
    report += "\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n";
    report += `✅ 评估完成 | 时间戳: ${Date.now()}\n`;
    
    return report;
}

// 评分函数
function calculateReturnScore(rate) {
    if (rate >= 30) return 100;
    if (rate >= 20) return 85;
    if (rate >= 10) return 70;
    return 40;
}

function calculateRiskScore(level) {
    if (level <= 3) return 100;
    if (level <= 5) return 85;
    if (level <= 7) return 70;
    return 40;
}

function calculateCycleScore(cycle) {
    if (cycle <= 3) return 100;
    if (cycle <= 5) return 85;
    if (cycle <= 10) return 70;
    return 40;
}

function calculateRecoveryScore(period) {
    if (period <= 2) return 100;
    if (period <= 3) return 85;
    if (period <= 5) return 70;
    return 40;
}

function calculateROIScore(roi) {
    if (roi >= 200) return 100;
    if (roi >= 150) return 85;
    if (roi >= 100) return 70;
    return 40;
}

JavaScript版本说明

JavaScript版本是由Kotlin代码编译而来的,提供了完全相同的功能。在Web环境中,这个JavaScript函数可以直接被调用,用于处理来自前端表单的数据。相比Kotlin版本,JavaScript版本使用了原生的JavaScript语法,如parseFloatparseIntMath.floor等,确保了在浏览器环境中的兼容性。

该版本保留了所有的业务逻辑和计算方法,确保了跨平台的一致性。通过这种方式,开发者只需要维护一份Kotlin代码,就可以在多个平台上运行相同的业务逻辑。


ArkTS调用实现

import { projectInvestmentEvaluationSystem } from './hellokjs'

@Entry
@Component
struct ProjectInvestmentPage {
  @State expectedReturnRate: string = "25"
  @State investmentRiskLevel: string = "4"
  @State projectCycle: string = "5"
  @State fundRecoveryPeriod: string = "3"
  @State investmentROI: string = "150"
  @State result: string = ""
  @State isLoading: boolean = false

  build() {
    Column() {
      // 顶部标题栏
      Row() {
        Text("💰 项目投资评估系统")
          .fontSize(20)
          .fontWeight(FontWeight.Bold)
          .fontColor('#FFFFFF')
      }
      .width('100%')
      .height(60)
      .backgroundColor('#00897B')
      .justifyContent(FlexAlign.Center)
      .padding({ left: 16, right: 16 })

      // 主体内容
      Scroll() {
        Column() {
          // 参数输入部分
          Column() {
            Text("📊 投资指标输入")
              .fontSize(16)
              .fontWeight(FontWeight.Bold)
              .fontColor('#00897B')
              .margin({ bottom: 12 })
              .padding({ left: 12, top: 12 })

            // 2列网格布局
            Column() {
              // 第一行
              Row() {
                Column() {
                  Text("预期收益率(%)")
                    .fontSize(12)
                    .fontWeight(FontWeight.Bold)
                    .margin({ bottom: 4 })
                  TextInput({ placeholder: "25", text: this.expectedReturnRate })
                    .height(40)
                    .width('100%')
                    .onChange((value: string) => { this.expectedReturnRate = value })
                    .backgroundColor('#FFFFFF')
                    .border({ width: 1, color: '#00897B' })
                    .borderRadius(4)
                    .padding(8)
                    .fontSize(12)
                }.width('48%').padding(6)
                Blank().width('4%')
                Column() {
                  Text("风险等级(1-10)")
                    .fontSize(12)
                    .fontWeight(FontWeight.Bold)
                    .margin({ bottom: 4 })
                  TextInput({ placeholder: "4", text: this.investmentRiskLevel })
                    .height(40)
                    .width('100%')
                    .onChange((value: string) => { this.investmentRiskLevel = value })
                    .backgroundColor('#FFFFFF')
                    .border({ width: 1, color: '#00897B' })
                    .borderRadius(4)
                    .padding(8)
                    .fontSize(12)
                }.width('48%').padding(6)
              }.width('100%').justifyContent(FlexAlign.SpaceBetween)

              // 第二行
              Row() {
                Column() {
                  Text("项目周期(年)")
                    .fontSize(12)
                    .fontWeight(FontWeight.Bold)
                    .margin({ bottom: 4 })
                  TextInput({ placeholder: "5", text: this.projectCycle })
                    .height(40)
                    .width('100%')
                    .onChange((value: string) => { this.projectCycle = value })
                    .backgroundColor('#FFFFFF')
                    .border({ width: 1, color: '#00897B' })
                    .borderRadius(4)
                    .padding(8)
                    .fontSize(12)
                }.width('48%').padding(6)
                Blank().width('4%')
                Column() {
                  Text("回收期(年)")
                    .fontSize(12)
                    .fontWeight(FontWeight.Bold)
                    .margin({ bottom: 4 })
                  TextInput({ placeholder: "3", text: this.fundRecoveryPeriod })
                    .height(40)
                    .width('100%')
                    .onChange((value: string) => { this.fundRecoveryPeriod = value })
                    .backgroundColor('#FFFFFF')
                    .border({ width: 1, color: '#00897B' })
                    .borderRadius(4)
                    .padding(8)
                    .fontSize(12)
                }.width('48%').padding(6)
              }.width('100%').justifyContent(FlexAlign.SpaceBetween).margin({ top: 8 })

              // 第三行
              Row() {
                Column() {
                  Text("投资回报率(%)")
                    .fontSize(12)
                    .fontWeight(FontWeight.Bold)
                    .margin({ bottom: 4 })
                  TextInput({ placeholder: "150", text: this.investmentROI })
                    .height(40)
                    .width('100%')
                    .onChange((value: string) => { this.investmentROI = value })
                    .backgroundColor('#FFFFFF')
                    .border({ width: 1, color: '#00897B' })
                    .borderRadius(4)
                    .padding(8)
                    .fontSize(12)
                }.width('48%').padding(6)
                Blank().width('52%')
              }.width('100%').margin({ top: 8 })
            }
            .width('100%')
            .padding({ left: 6, right: 6, bottom: 12 })
          }
          .width('100%')
          .padding(12)
          .backgroundColor('#E0F2F1')
          .borderRadius(8)
          .margin({ bottom: 12 })

          // 按钮区域
          Row() {
            Button("开始评估")
              .width('48%')
              .height(44)
              .fontSize(14)
              .fontWeight(FontWeight.Bold)
              .backgroundColor('#00897B')
              .fontColor(Color.White)
              .borderRadius(6)
              .onClick(() => {
                this.executeEvaluation()
              })

            Blank().width('4%')

            Button("重置数据")
              .width('48%')
              .height(44)
              .fontSize(14)
              .fontWeight(FontWeight.Bold)
              .backgroundColor('#26C6DA')
              .fontColor(Color.White)
              .borderRadius(6)
              .onClick(() => {
                this.expectedReturnRate = "25"
                this.investmentRiskLevel = "4"
                this.projectCycle = "5"
                this.fundRecoveryPeriod = "3"
                this.investmentROI = "150"
                this.result = ""
              })
          }
          .width('100%')
          .justifyContent(FlexAlign.Center)
          .padding({ left: 12, right: 12, bottom: 12 })

          // 结果显示部分
          Column() {
            Text("📋 评估结果")
              .fontSize(16)
              .fontWeight(FontWeight.Bold)
              .fontColor('#00897B')
              .margin({ bottom: 12 })
              .padding({ left: 12, right: 12, top: 12 })

            if (this.isLoading) {
              Column() {
                LoadingProgress()
                  .width(50)
                  .height(50)
                  .color('#00897B')
                Text("正在评估...")
                  .fontSize(14)
                  .fontColor('#00897B')
                  .margin({ top: 16 })
              }
              .width('100%')
              .height(200)
              .justifyContent(FlexAlign.Center)
              .alignItems(HorizontalAlign.Center)
            } else if (this.result.length > 0) {
              Scroll() {
                Text(this.result)
                  .fontSize(11)
                  .fontColor('#00897B')
                  .fontFamily('monospace')
                  .width('100%')
                  .padding(12)
                  .lineHeight(1.6)
              }
              .width('100%')
              .height(400)
            } else {
              Column() {
                Text("💰")
                  .fontSize(64)
                  .opacity(0.2)
                  .margin({ bottom: 16 })
                Text("暂无评估结果")
                  .fontSize(14)
                  .fontColor('#00897B')
                Text("请输入投资指标后点击开始评估")
                  .fontSize(12)
                  .fontColor('#26C6DA')
                  .margin({ top: 8 })
              }
              .width('100%')
              .height(200)
              .justifyContent(FlexAlign.Center)
              .alignItems(HorizontalAlign.Center)
            }
          }
          .layoutWeight(1)
          .width('100%')
          .padding(12)
          .backgroundColor('#F5F5F5')
          .borderRadius(8)
        }
        .width('100%')
        .padding(12)
      }
      .layoutWeight(1)
    }
    .width('100%')
    .height('100%')
    .backgroundColor('#FAFAFA')
  }

  private executeEvaluation() {
    const retStr = this.expectedReturnRate.trim()
    const riskStr = this.investmentRiskLevel.trim()
    const cycleStr = this.projectCycle.trim()
    const recovStr = this.fundRecoveryPeriod.trim()
    const roiStr = this.investmentROI.trim()

    if (!retStr || !riskStr || !cycleStr || !recovStr || !roiStr) {
      this.result = "❌ 请填写全部投资指标"
      return
    }

    this.isLoading = true

    setTimeout((): void => {
      try {
        const inputStr = `${retStr} ${riskStr} ${cycleStr} ${recovStr} ${roiStr}`
        const result = projectInvestmentEvaluationSystem(inputStr)
        this.result = result
        console.log("[ProjectInvestmentEvaluationSystem] 评估完成")
      } catch (error) {
        this.result = `❌ 执行出错: ${error}`
        console.error("[ProjectInvestmentEvaluationSystem] 错误:", error)
      } finally {
        this.isLoading = false
      }
    }, 500)
  }
}

ArkTS调用说明

ArkTS是OpenHarmony平台上的主要开发语言,它基于TypeScript进行了扩展,提供了更好的性能和类型安全。在上述代码中,我们创建了一个完整的UI界面,用于输入投资指标并显示评估结果。

页面采用了分层设计:顶部是标题栏,中间是参数输入区域,下方是评估结果显示区。参数输入区使用了2列网格布局,使得界面紧凑而不失清晰。每个输入框都有对应的标签和默认值,方便用户快速操作。

executeEvaluation方法是关键的交互逻辑。当用户点击"开始评估"按钮时,该方法会收集所有输入参数,组合成一个字符串,然后调用从JavaScript导出的projectInvestmentEvaluationSystem函数。函数返回的结果会被显示在下方的滚动区域中。同时,系统使用isLoading状态来显示加载动画,提升用户体验。


系统集成与部署

编译流程

  1. Kotlin编译:使用KMP的Gradle插件,将Kotlin代码编译为JavaScript
  2. JavaScript生成:生成的JavaScript文件包含了所有的业务逻辑
  3. ArkTS集成:在ArkTS项目中导入JavaScript文件,通过import语句引入函数
  4. 应用打包:将整个应用打包为OpenHarmony应用安装包

部署建议

  • 在企业的投资决策中心部署该系统的Web版本
  • 在各个投资部门部署OpenHarmony设备,运行该系统的移动版本
  • 建立数据同步机制,确保各设备间的数据一致性
  • 定期备份评估数据,用于后续的投资分析和改进

总结

项目投资评估系统通过整合Kotlin、JavaScript和ArkTS三种技术,提供了一个完整的、跨平台的投资分析解决方案。该系统不仅能够实时收集和分析项目投资的关键指标,还能够进行智能分析和决策建议,为企业提供了强有力的技术支撑。

通过本系统的应用,企业可以显著提高投资评估的效率和准确性,及时发现和优化投资项目,提升投资回报,降低投资风险。同时,系统生成的详细报告和建议也为企业的投资决策提供了数据支撑。

在未来,该系统还可以进一步扩展,集成更多的投资数据、引入人工智能算法进行更精准的投资预测、建立与企业资源规划系统的联动机制等,使其成为一个更加智能、更加完善的投资管理平台。

Logo

开源鸿蒙跨平台开发社区汇聚开发者与厂商,共建“一次开发,多端部署”的开源生态,致力于降低跨端开发门槛,推动万物智联创新。

更多推荐