Procházet zdrojové kódy

抽奖页面 添加领取成功提示

DESKTOP-O04BTUJ\muzen před 2 roky
rodič
revize
1f58f4a0d8
1 změnil soubory, kde provedl 4 přidání a 7 odebrání
  1. 4 7
      src/pages/lottery/index.vue

+ 4 - 7
src/pages/lottery/index.vue

@@ -185,16 +185,13 @@ export default {
         }).then(res => {
           if (res.data.code === 0) {
             this.$refs.popup.close()
-            uni.showToast({
-              title: '领取成功!'
-            })
             this.getList()
             setTimeout(() => {
               this.disabled = true
+              uni.showToast({
+                title: '领取成功,已累积到积分中!'
+              })
             }, 2000)
-            uni.showToast({
-              title:'领取成功,已累积到积分中!'
-            })
           }
         })
       }
@@ -208,7 +205,7 @@ export default {
     },
 
     // 关闭弹窗
-    close(){
+    close() {
       this.$refs.popup.close()
     }
   }