From ec729eb1e9142d6b5f6b7e87aa88f808c13f7c7c Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 23 Aug 2022 11:27:01 +0800 Subject: [PATCH] BUG 30959 --- project/xiushan/apps/finance/AppFinanceProduct/productList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue index 6f99dce5..8d5eb012 100644 --- a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue +++ b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue @@ -104,7 +104,7 @@ export default { }).then(res => { if (res?.data) { this.tableData = res.data?.records.map(e => { - let guaranteeModeLabel = e.guaranteeMode.split(",").map(g => this.dict.getLabel("productGuaranteeMode", g))?.toString() + let guaranteeModeLabel = e.guaranteeMode?.split(",").map(g => this.dict.getLabel("productGuaranteeMode", g))?.toString() return {...e, guaranteeModeLabel} }) this.page.total = res.data.total