diff --git a/public/apply/index.html b/public/apply/index.html
new file mode 100644
index 0000000..710c51a
--- /dev/null
+++ b/public/apply/index.html
@@ -0,0 +1,47 @@
+
+
+
+
+
+ Apply - Likei
+
+
+
+
+
+
+
+
Redirecting to Apply page...
+
+
+
\ No newline at end of file
diff --git a/public/bd-center/index.html b/public/bd-center/index.html
new file mode 100644
index 0000000..e3cce01
--- /dev/null
+++ b/public/bd-center/index.html
@@ -0,0 +1,47 @@
+
+
+
+
+
+ Agency Center - Likei
+
+
+
+
+
+
+
+
Redirecting to Agency Center...
+
+
+
\ No newline at end of file
diff --git a/public/coin-seller/index.html b/public/coin-seller/index.html
new file mode 100644
index 0000000..0840521
--- /dev/null
+++ b/public/coin-seller/index.html
@@ -0,0 +1,47 @@
+
+
+
+
+
+ Coin Seller - Likei
+
+
+
+
+
+
+
+
Redirecting to Coin Seller...
+
+
+
\ No newline at end of file
diff --git a/public/host-center/index.html b/public/host-center/index.html
new file mode 100644
index 0000000..d2aa664
--- /dev/null
+++ b/public/host-center/index.html
@@ -0,0 +1,47 @@
+
+
+
+
+
+ Host Center - Likei
+
+
+
+
+
+
+
+
Redirecting to Host Center...
+
+
+
\ No newline at end of file
diff --git a/src/api/wallet.js b/src/api/wallet.js
index 0860187..e4ae076 100644
--- a/src/api/wallet.js
+++ b/src/api/wallet.js
@@ -58,8 +58,8 @@ export function userBankSearchUserProfile(type, account) {
* @param {string} userId - 用户ID
* @returns {Promise} 返回用户身份权限信息
*/
-export function getUserIdentity(userId) {
- return get(`/app/h5/${userId}/identity`)
+export function getUserIdentity() {
+ return get(`/app/h5/identity`)
}
/**
diff --git a/src/utils/routeGuard.js b/src/utils/routeGuard.js
index a0662ed..726d85b 100644
--- a/src/utils/routeGuard.js
+++ b/src/utils/routeGuard.js
@@ -196,7 +196,7 @@ class IdentityChecker {
try {
console.debug("🔍 Checking user identity for:", userId);
- const response = await getUserIdentity(userId);
+ const response = await getUserIdentity();
if (response && response.status && response.body) {
const identity = response.body;
diff --git a/src/views/LoadingView.vue b/src/views/LoadingView.vue
index fc2b54b..df48c41 100644
--- a/src/views/LoadingView.vue
+++ b/src/views/LoadingView.vue
@@ -60,10 +60,10 @@ const progress = ref(0)
// 加载步骤配置
const loadingSteps = [
- { text: 'Connecting to server...', subText: 'Establishing secure connection', duration: 800 },
- { text: 'Loading user data...', subText: 'Retrieving your information', duration: 1000 },
- { text: 'Setting up interface...', subText: 'Preparing your workspace', duration: 600 },
- { text: 'Almost ready...', subText: 'Finalizing setup', duration: 400 }
+ { text: 'Connecting to server...', subText: 'Establishing secure connection', duration: 200 },
+ { text: 'Loading user data...', subText: 'Retrieving your information', duration: 300 },
+ { text: 'Setting up interface...', subText: 'Preparing your workspace', duration: 200 },
+ { text: 'Almost ready...', subText: 'Finalizing setup', duration: 200 }
]
let currentStepIndex = 0