fix(categories): 修正删除确认弹窗栏目名称显示格式

- 将删除确认弹窗的栏目名称用「」括起,提升提示信息的清晰度
- 修正字符串模板拼接错误,避免显示异常
This commit is contained in:
2026-04-26 02:08:37 +08:00
parent 76f1ca443c
commit 8753f48b75

View File

@@ -49,7 +49,7 @@
<a-button size="small" @click="handleEdit(record)">编辑</a-button>
<a-button size="small" @click="handleAddSub(record)" type="dashed">添加子栏目</a-button>
<a-popconfirm
:title="`确定删除栏目"${record.name}"吗?此操作不可恢复!`"
:title="`确定删除栏目${record.name}吗?此操作不可恢复!`"
@confirm="handleDelete(record)"
ok-text="确定"
cancel-text="取消"