guonan
2025-04-16 0face36fd79ce30127c80d131b1bc41106133f3b
src/store/simulation.js
@@ -47,13 +47,11 @@
    // 方案相关
    const setSchemCard = (data) => {
        schemCard.value = data
        console.log(schemCard,'aaaaaaaaaaaaaa');
    }
    // 添加单个方案数据
    const addSchemCardItem = (item) => {
        schemCard.value.push(item)
    const addSchemCard = (item) => {
        schemCard.value.unshift(item)
    }
    // 删除指定方案数据
@@ -89,8 +87,8 @@
    const startMNPG = () => {
        init()
        showResultAssess.value = true
        showDangerAssess.value = true
        // showResultAssess.value = true
        // showDangerAssess.value = true
    }
    // 导航点击
@@ -138,7 +136,7 @@
        startMNPG,
        schemCard,
        setSchemCard,
        addSchemCardItem,
        addSchemCard,
        removeSchemCardItem,
        updateSchemCardItem,
    }