fix 前端表格增删逻辑调整
This commit is contained in:
@@ -158,7 +158,7 @@ export default {
|
||||
this.selectedRowKeys = selectedRowKeys
|
||||
},
|
||||
formModalOk (lineData) {
|
||||
lineData.tableRowKey = this.realDataSource.length
|
||||
lineData.tableRowKey = this.realDataSource && this.realDataSource.length > 0 ? this.realDataSource[this.realDataSource.length - 1].tableRowKey + 1 : 0
|
||||
this.realDataSource.push(lineData)
|
||||
this.$emit('ok', this.realDataSource)
|
||||
},
|
||||
@@ -190,7 +190,7 @@ export default {
|
||||
* 校验文件是否上传
|
||||
* @returns {boolean}
|
||||
*/
|
||||
validateTableData() {
|
||||
validateTableData () {
|
||||
if (this.realDataSource.some(tt => !tt.meetingData)) {
|
||||
this.$message.warning(this.$t('businessSupport.standardizationActivity.pleaseUploadMeeting'))
|
||||
return false
|
||||
|
||||
@@ -191,7 +191,7 @@ export default {
|
||||
return dictItem
|
||||
})
|
||||
}
|
||||
item.tableRowKey = this.dataSource.length
|
||||
item.tableRowKey = this.dataSource && this.dataSource.length > 0 ? this.dataSource[this.dataSource.length - 1].tableRowKey + 1 : 0
|
||||
this.dataSource.push(item)
|
||||
})
|
||||
console.log(this.dataSource)
|
||||
|
||||
Reference in New Issue
Block a user