Ver código fonte

fix 0018812: 【web管理后台】机构管理>服务项目管理页面下,删除服务项目,提示“确定删除undefined吗?”

jeremy 10 meses atrás
pai
commit
49843ee340

+ 1 - 1
src/views/organization/servicePackage/index.vue

@@ -386,7 +386,7 @@ export default {
 
     //删除
     async table_del(row) {
-      this.$confirm(`确定删除${row.userName}吗?`, "提示", {
+      this.$confirm(`确定删除${row.name}吗?`, "提示", {
         type: "warning",
         confirmButtonText: "确 认",
         cancelButtonText: "取 消",

+ 1 - 1
src/views/organization/serviceProject/index.vue

@@ -255,7 +255,7 @@ export default {
 
     //删除
     async table_del(row) {
-      this.$confirm(`确定删除${row.userName}吗?`, "提示", {
+      this.$confirm(`确定删除${row.name}吗?`, "提示", {
         type: "warning",
         confirmButtonText: "确 认",
         cancelButtonText: "取 消",