fix(forceNotice): 修复SpeList组件中的字段名大小写错误

- 修正row-key属性从pripId为pripid
- 修正uniscId字段引用为uniscid
- 修正entName字段引用为entname
This commit is contained in:
chenxf 2026-01-06 11:22:19 +08:00
parent 626daebb20
commit 27642a3ef5
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
:table-prop="tableProp" :table-prop="tableProp"
:fields="fields" :fields="fields"
:show-search-form="true" :show-search-form="true"
row-key="pripId" row-key="pripid"
:search-form-prop="searchFormProp" :search-form-prop="searchFormProp"
:search-loader="searchLoader" :search-loader="searchLoader"
:selected.sync="selected" :selected.sync="selected"
@ -89,7 +89,7 @@ export default {
showOverflowTooltip: true, showOverflowTooltip: true,
width: '200px', width: '200px',
formatter: (row, column, cellValue, index) => { formatter: (row, column, cellValue, index) => {
return `${row.uniscId || row.regNO || ''}` return `${row.uniscid || row.regNO || ''}`
} }
}, },
showInTable: this.params !== 'force' showInTable: this.params !== 'force'
@ -105,7 +105,7 @@ export default {
showOverflowTooltip: true, showOverflowTooltip: true,
width: '280px', width: '280px',
formatter: (row, column, cellValue, index) => { formatter: (row, column, cellValue, index) => {
return `${row.entName || ''}` return `${row.entname || ''}`
} }
}, },
showInTable: this.params !== 'force' showInTable: this.params !== 'force'