This commit is contained in:
xingyu4j
2022-11-16 10:28:28 +08:00
parent c40076c5bb
commit d485b8289d
16 changed files with 95 additions and 95 deletions

View File

@ -63,9 +63,9 @@ const handleForceLogout = (rowId: number) => {
await TokenApi.deleteAccessTokenApi(rowId)
message.success(t('common.success'))
})
.finally(() => {
.finally(async () => {
// 刷新列表
reloadList(xGrid)
await reloadList(xGrid)
})
}
</script>