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: "甲方单位",