From 7908d884f4af5404e63c78276c73fdba3d433746 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Sat, 1 Jun 2024 14:38:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=A1=E6=89=B9=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E5=8F=8A=E9=99=84=E4=BB=B6=E4=B8=8A=E4=BC=A0=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=EF=BC=8C=E6=8F=90=E5=8D=87=E7=94=A8=E6=88=B7=E4=BD=93?= =?UTF-8?q?=E9=AA=8C=E4=B8=8E=E6=93=8D=E4=BD=9C=E6=95=88=E7=8E=87=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/contract_ledger/index.vue | 8 +++++--- src/views/manage_project/detail.js | 8 ++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/views/contract_ledger/index.vue b/src/views/contract_ledger/index.vue index e5e2b47..d04ebfe 100644 --- a/src/views/contract_ledger/index.vue +++ b/src/views/contract_ledger/index.vue @@ -148,11 +148,11 @@ const handleDetail = async (row: any) => { const getSummaries = (param) => { const { columns, data } = param; - const sumPropList = ['total_invoice_amount', 'not_total_invoice_amount', 'invoice_has_refund_amount', 'invoice_not_refund_amount', 'notHk'] + const sumPropList = ['signed_amount', 'total_invoice_amount', 'not_total_invoice_amount', 'invoice_has_refund_amount', 'invoice_not_refund_amount', 'notHk'] const sums: string[] = []; columns.forEach((item, index) => { if (index === 0) { - sums[index] = '总价'; + sums[index] = '总价(元)'; } else if (sumPropList.includes(item.property)) { const values = data.map((items) => { @@ -165,7 +165,9 @@ const getSummaries = (param) => { sums[index] = values.reduce((prev, curr) => Number(prev) + Number(curr), 0 ); - sums[index] += ' 元'; + + sums[index]= sums[index].toFixed(2) + } else { sums[index] = ''; diff --git a/src/views/manage_project/detail.js b/src/views/manage_project/detail.js index 3ef4cff..31989cf 100644 --- a/src/views/manage_project/detail.js +++ b/src/views/manage_project/detail.js @@ -15,7 +15,7 @@ const detailConfig = { }, { label: "建设单位", - value: "build_unit" + value: "build_unit_name" }, { label: "建设区域", @@ -72,7 +72,7 @@ const detailConfig = { }, { label: "项目经理", - value: "project_manager" + value: "project_manager_name" }, { label: "立项日期", @@ -80,7 +80,7 @@ const detailConfig = { }, { label: "项目负责人", - value: "project_leader" + value: "project_leader_name" }, { label: "项目部", @@ -88,7 +88,7 @@ const detailConfig = { }, { label: "关联合同", - value: "contract" + value: "contract_name" }, { label: "甲方单位",