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