优化审批流程及附件上传功能,提升用户体验与操作效率。

This commit is contained in:
zmj 2024-06-01 14:38:10 +08:00
parent 65d7a72b50
commit 7908d884f4
2 changed files with 9 additions and 7 deletions

View File

@ -148,11 +148,11 @@ const handleDetail = async (row: any) => {
const getSummaries = (param) => { const getSummaries = (param) => {
const { columns, data } = 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[] = []; const sums: string[] = [];
columns.forEach((item, index) => { columns.forEach((item, index) => {
if (index === 0) { if (index === 0) {
sums[index] = '总价'; sums[index] = '总价(元)';
} }
else if (sumPropList.includes(item.property)) { else if (sumPropList.includes(item.property)) {
const values = data.map((items) => { const values = data.map((items) => {
@ -165,7 +165,9 @@ const getSummaries = (param) => {
sums[index] = values.reduce((prev, curr) => sums[index] = values.reduce((prev, curr) =>
Number(prev) + Number(curr), 0 Number(prev) + Number(curr), 0
); );
sums[index] += ' 元';
sums[index]= sums[index].toFixed(2)
} }
else { else {
sums[index] = ''; sums[index] = '';

View File

@ -15,7 +15,7 @@ const detailConfig = {
}, },
{ {
label: "建设单位", label: "建设单位",
value: "build_unit" value: "build_unit_name"
}, },
{ {
label: "建设区域", label: "建设区域",
@ -72,7 +72,7 @@ const detailConfig = {
}, },
{ {
label: "项目经理", label: "项目经理",
value: "project_manager" value: "project_manager_name"
}, },
{ {
label: "立项日期", label: "立项日期",
@ -80,7 +80,7 @@ const detailConfig = {
}, },
{ {
label: "项目负责人", label: "项目负责人",
value: "project_leader" value: "project_leader_name"
}, },
{ {
label: "项目部", label: "项目部",
@ -88,7 +88,7 @@ const detailConfig = {
}, },
{ {
label: "关联合同", label: "关联合同",
value: "contract" value: "contract_name"
}, },
{ {
label: "甲方单位", label: "甲方单位",