Skip to content

Commit

Permalink
feat: 文件删除显示文件名
Browse files Browse the repository at this point in the history
  • Loading branch information
devhaozi committed Nov 16, 2024
1 parent b95b035 commit e99c71b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/views/file/ListTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const columns: DataTableColumns<RowData> = [
},
{
default: () => {
return '确定删除吗?'
return `确定删除 ${row.name} 吗?`
},
trigger: () => {
return h(
Expand Down
2 changes: 1 addition & 1 deletion web/src/views/file/SearchModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const columns: DataTableColumns<RowData> = [
},
{
default: () => {
return '确定删除吗?'
return `确定删除 ${row.name} 吗?`
},
trigger: () => {
return h(
Expand Down

0 comments on commit e99c71b

Please sign in to comment.