From e372854c71bc97d162452cc4b3f5cfa586da50a8 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 22 五月 2025 17:06:31 +0800
Subject: [PATCH] feat: UI

---
 packages/core/src/lifeRecharge.ts |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/packages/core/src/lifeRecharge.ts b/packages/core/src/lifeRecharge.ts
index 409801a..a2e318a 100644
--- a/packages/core/src/lifeRecharge.ts
+++ b/packages/core/src/lifeRecharge.ts
@@ -17,10 +17,6 @@
   static constants = LifeRechargeConstants;
   constants = LifeRechargeConstants;
 
-  /**鐢ㄦ埛鎵�鏈夌殑娓犻亾 */
-  userChannles = [] as ChannelOutput[];
-  isBackClientUser: boolean;
-
   constructor(options: BlLifeRechargeOptions<TResponse, TRequestOptions>) {
     this.listener = new LifeRechargeListener();
     this.services = new BlLifeRechargeServices(this, options);
@@ -31,10 +27,17 @@
     });
   }
 
+  init() {
+    if (this.accountModel.userId) {
+      this.accountModel.getUserInfo();
+    }
+  }
+
   async login(body: PhoneMesssageCodeLoginInput, options?: RequestConfig) {
     try {
       let res = await this.services.lifePayPhoneMesssageCodeLogin(body, options);
       this.accountModel.setUserId(res.userId);
+      this.accountModel.getUserInfo();
       this.accountModel.setPhoneNumber(body.phoneNumber);
       return res;
     } catch (error) {
@@ -46,6 +49,7 @@
     this.accountModel.setUserId('');
     this.accountModel.setPhoneNumber('');
     this.accountModel.setUserChannles([]);
+    this.accountModel.isBackClientUser = false;
   }
 
   isLogin() {
@@ -53,7 +57,10 @@
   }
 
   getRechargeParValue(amount: number | string, rate: number) {
-    return ((Number(amount) * rate) / 100).toFixed(2);
+    if (rate > 0) {
+      return ((Number(amount) * rate) / 100).toFixed(2);
+    }
+    return Number(amount).toFixed(2);
   }
 
   MaxParValue = 300;

--
Gitblit v1.9.1