From b36acbf1e6309f838608fb407eca6bfb9ba4d5f4 Mon Sep 17 00:00:00 2001 From: juzi <819872918@qq.com> Date: Fri, 13 Mar 2026 09:44:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B6=E9=80=A0=E6=88=90=E6=9C=AC=E5=88=86?= =?UTF-8?q?=E6=9E=90=E4=B8=8B=E6=89=80=E6=9C=89=E5=8D=95=E9=A1=B9=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.dev | 4 +- src/views/home/components/budgetDetails.vue | 4 +- .../SIMFRMCostAnalysis.vue | 11 ++- .../mfgOverheadSingleCostAnalysis.vue | 73 ++++++------------- .../singleCombustible.vue | 63 ++++++---------- .../singleProcAuxMatCost.vue | 61 ++++++---------- .../singleProcMfgOverheadCost.vue | 34 +++++---- .../singleProcessingFuel.vue | 48 +++++++++--- .../noRouterHeader.vue | 28 +++---- .../relateSingleFuelCostAnalysis.vue | 2 +- .../totalOverview.vue | 2 +- src/views/login.vue | 8 +- 12 files changed, 148 insertions(+), 190 deletions(-) diff --git a/.env.dev b/.env.dev index 1a3e9c4f..7c7b6af3 100644 --- a/.env.dev +++ b/.env.dev @@ -10,11 +10,11 @@ VUE_APP_TITLE = 洛玻集团驾驶舱 # VUE_APP_BASE_API = 'http://172.16.33.83:7070' # 杨姗姗 -VUE_APP_BASE_API = 'http://172.16.20.218:7070' +# VUE_APP_BASE_API = 'http://172.16.20.218:7070' # 小田 # VUE_APP_BASE_API = 'http://172.16.19.232:7070' # 测试 -# VUE_APP_BASE_API = 'http://192.168.0.35:8080' +VUE_APP_BASE_API = 'http://192.168.0.35:8080' # 路由懒加载 diff --git a/src/views/home/components/budgetDetails.vue b/src/views/home/components/budgetDetails.vue index 12695e42..66f031e3 100644 --- a/src/views/home/components/budgetDetails.vue +++ b/src/views/home/components/budgetDetails.vue @@ -391,10 +391,10 @@ export default { { prop: 'type', label: '指标类型', align: 'center' }, { prop: 'name', label: '指标名称', align: 'center' }, { prop: 'unit', label: '单位', align: 'center', filter: publicFormatter('lb_dw') }, - { prop: 'target', label: '预估值', align: 'center' }, + { prop: 'target', label: '预算值', align: 'center' }, ]; if (isEdit) { - // 编辑模式:仅给「预估值」列添加inputArea(精准挂载,避免无效配置) + // 编辑模式:仅给「预算值」列添加inputArea(精准挂载,避免无效配置) this.tableProps = baseTableProps.map(item => { if (item.prop === 'target') { // 只给需要编辑的列添加子组件 return { diff --git a/src/views/home/productionCostAnalysis/SIMFRMCostAnalysis.vue b/src/views/home/productionCostAnalysis/SIMFRMCostAnalysis.vue index 43a4b14b..81ee86a6 100644 --- a/src/views/home/productionCostAnalysis/SIMFRMCostAnalysis.vue +++ b/src/views/home/productionCostAnalysis/SIMFRMCostAnalysis.vue @@ -2,7 +2,9 @@