소스 검색

问题修复

htc 18 시간 전
부모
커밋
60262846d7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      pagesMy/exclusiveScroll.vue

+ 1 - 1
pagesMy/exclusiveScroll.vue

@@ -101,7 +101,7 @@
 	const getList = () => {
 		proxy.$api.get('/core/activity/coupon/page',queryParams.value).then(({data:res})=>{
 			if(res.code!==0) return proxy.$showToast(res.msg)
-			list.value = res.data.list;
+			list.value = [...list.value,...res.data.list];
 			list.value.forEach(l=>{
 				l.select = false;
 				l.check = false;