liming 2 주 전
부모
커밋
a2f214e0c9
2개의 변경된 파일7개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 3
      src/updater/update.json
  2. 4 1
      src/views/login/backupMnemonic/index.vue

+ 3 - 3
src/updater/update.json

@@ -1,7 +1,7 @@
 {
-  "version": "1.0.32",
-  "releaseDate": "2025-07-30 02:45:02",
-  "checksum": "5abab9c433030caf2fc1ee1fff9e629569f0cfb15da41f525f7be137da4af9ba",
+  "version": "1.0.33",
+  "releaseDate": "2025-08-01 02:39:08",
+  "checksum": "0c77564055f2702bde8f20170b2dfd43602978d12012703a022cc5170e6f44d0",
   "minBinaryVersion": "1.0.0",
   "mandatory": true,
   "upDataDescription": "✨修正一些錯誤。。。。!!!"

+ 4 - 1
src/views/login/backupMnemonic/index.vue

@@ -17,7 +17,7 @@
       >
     </div>
 
-    <div class="button-group">
+    <div v-if="disabled" class="button-group">
       <a
         class="button-group-mnemonic a-link im-copy-btn"
         :data-clipboard-text="walletData.words"
@@ -55,8 +55,10 @@ const loading = ref(false);
 const walletData = ref({
   words: [],
 });
+const disabled = ref(false);
 
 const next = async () => {
+  
   // 登录
   loading.value = true;
   await walletStore.loginWithPrivateKey();
@@ -69,6 +71,7 @@ const next = async () => {
 
 onMounted(async () => {
   const { data } = await createAccent({});
+  disabled.value = true
   walletData.value = JSON.parse(atob(data.content));
   walletStore.account = walletData.value.address;
   walletStore.privateKey = walletData.value.privateKey;