删除一级话术提示语

master
382696293@qq.com 2 years ago
parent 31312394d9
commit 9833602ef6

@ -417,7 +417,17 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
this.$modal.confirm('是否确认删除名称为"' + row.titile + '"的数据项?').then(function() {
let tip;
let title;
if(row.titile == null) {
tip = row.scriptName
title = '话术标题';
} else {
tip = row.titile
title = '话术名称';
}
this.$modal.confirm('是否确认删除' + title + '为"' + tip + '"的数据项?').then(function() {
return delTemplate(row.id);
}).then(() => {
this.getList();

Loading…
Cancel
Save