Browse Source

友情链接:删除提示语优化

hezhihong 1 year ago
parent
commit
6b1990eba7
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/FRIENDLYLINKS/index.vue

+ 2 - 1
src/views/FRIENDLYLINKS/index.vue

@@ -218,7 +218,8 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除友情链接编号为"' + ids + '"的数据项?')
+        // .confirm('是否确认删除友情链接编号为"' + ids + '"的数据项?')
+        .confirm(`是否确认删除友情链接编号为【${ids}】;链接名称为【${row.linkName}】的数据项?`)
         .then(function () {
           return delFRIENDLYLINKS(ids);
         })