소스 검색

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

ylong 3 주 전
부모
커밋
5f981759f6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)
         });