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 } }) },