Prechádzať zdrojové kódy

feat: 处理流量卡不是内置卡数据时候,toast提示

332777428@qq.com 2 mesiacov pred
rodič
commit
6fe51c184a
1 zmenil súbory, kde vykonal 7 pridanie a 0 odobranie
  1. 7 0
      src/pages/pay/index.vue

+ 7 - 0
src/pages/pay/index.vue

@@ -291,6 +291,13 @@ export default {
           this.info = res.data;
           this.rateplan = res.data.rateplan;
           this.percent = (this.rateplan.used / this.rateplan.total) * 100;
+        } else if (res.code == 1017) {
+          uni.showToast({
+            title: res.message,
+            icon: "none",
+            mask: true,
+            duration: 2000,
+          });
         }
       });
     },