上传
This commit is contained in:
@@ -93,7 +93,7 @@ const loading = ref(false)
|
||||
const userList = ref([])
|
||||
|
||||
function setRowClass({ row }) {
|
||||
return row.field == currentRowId.value ? 'current-row' : ''
|
||||
return row.id == currentRowId.value ? 'current-row' : ''
|
||||
}
|
||||
|
||||
const currentRowId = ref('')
|
||||
@@ -144,7 +144,7 @@ function resourceCheckedChange(val) {
|
||||
}
|
||||
|
||||
function handleRowClick(row) {
|
||||
currentRowId.value = row.ruleId
|
||||
currentRowId.value = row.id
|
||||
form.value = { ...row }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user