fix(forceNotice): 修复SpeList组件中的字段名大小写错误
- 修正row-key属性从pripId为pripid - 修正uniscId字段引用为uniscid - 修正entName字段引用为entname
This commit is contained in:
parent
626daebb20
commit
27642a3ef5
|
|
@ -12,7 +12,7 @@
|
|||
:table-prop="tableProp"
|
||||
:fields="fields"
|
||||
:show-search-form="true"
|
||||
row-key="pripId"
|
||||
row-key="pripid"
|
||||
:search-form-prop="searchFormProp"
|
||||
:search-loader="searchLoader"
|
||||
:selected.sync="selected"
|
||||
|
|
@ -89,7 +89,7 @@ export default {
|
|||
showOverflowTooltip: true,
|
||||
width: '200px',
|
||||
formatter: (row, column, cellValue, index) => {
|
||||
return `${row.uniscId || row.regNO || ''}`
|
||||
return `${row.uniscid || row.regNO || ''}`
|
||||
}
|
||||
},
|
||||
showInTable: this.params !== 'force'
|
||||
|
|
@ -105,7 +105,7 @@ export default {
|
|||
showOverflowTooltip: true,
|
||||
width: '280px',
|
||||
formatter: (row, column, cellValue, index) => {
|
||||
return `${row.entName || ''}`
|
||||
return `${row.entname || ''}`
|
||||
}
|
||||
},
|
||||
showInTable: this.params !== 'force'
|
||||
|
|
|
|||
Loading…
Reference in New Issue