Explorar el Código

fix: 修复活动状态切换时错误的引用对象

ylong hace 3 semanas
padre
commit
5f981759f6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/views/marketing/shareDiscount/activity/index.vue

+ 1 - 1
src/views/marketing/shareDiscount/activity/index.vue

@@ -98,7 +98,7 @@
             activityId: row.id,
             status: row.status == 1 ? 0 : 1
         };
-        pageRef.value?.messageBoxConfirm({
+        tableRef.value?.messageBoxConfirm({
             message,
             fetch: () => request.post('/activity/activityReduceInfo/changeStatus', data)
         });