From 65367e116932478abc62da65f37f7d3e88debe49 Mon Sep 17 00:00:00 2001 From: chenxf Date: Tue, 6 Jan 2026 14:44:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(forceNotice):=20=E4=BF=AE=E5=A4=8D=E5=8C=85?= =?UTF-8?q?=E5=90=AB=E5=A4=84=E7=90=86=E9=A1=B5=E9=9D=A2=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E6=98=A0=E5=B0=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修正uniscid字段为uniscId,保持命名规范一致性 - 修正entname字段为entName,保持命名规范一致性 - 修正分页总数计算,使用data.length替代data.total --- src/views/forceNotice/inclusion/handle.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/forceNotice/inclusion/handle.vue b/src/views/forceNotice/inclusion/handle.vue index 25c223f..e440d24 100644 --- a/src/views/forceNotice/inclusion/handle.vue +++ b/src/views/forceNotice/inclusion/handle.vue @@ -169,24 +169,24 @@ export default { { type: 'input', label: '统一社会信用代码/注册号', - prop: 'uniscid', + prop: 'uniscId', tableProps: { showOverflowTooltip: true, width: '220px', formatter: (row, column, cellValue, index) => { - return `${row.uniscid || row.regNo || ''}` + return `${row.uniscId || row.regNo || ''}` } } }, { type: 'input', label: '主体名称', - prop: 'entname', + prop: 'entName', tableProps: { showOverflowTooltip: true, width: '300px', formatter: (row, column, cellValue, index) => { - return `${row.entname || ''}` + return `${row.entName || ''}` } } }, @@ -691,7 +691,7 @@ export default { }).then((data) => { return { tableData: data, - total: data.total + total: data.length } }) },