This commit is contained in:
helloDy
2023-09-22 16:54:16 +08:00
parent ee0affc78f
commit d454f20bd6
7 changed files with 27 additions and 19 deletions

View File

@@ -478,7 +478,7 @@ export default {
handleDelete(row) {
const id = row.id;
this.$modal
.confirm('是否确认删除设备编号为"' + id + '"的数据项?')
.confirm('是否确认删除设备名称为"' + row.name + '"的数据项?')
.then(function () {
return deleteEquipment(id);
})