fix: 修复2925邮箱模式按钮的数据属性名称

This commit is contained in:
QLHazyCoder
2026-04-15 00:17:49 +08:00
parent 4fb62e5e1c
commit 49b0b377e6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -167,8 +167,8 @@
<div class="data-row" id="row-mail-2925-mode" style="display:none;">
<span class="data-label">2925 模式</span>
<div id="mail-2925-mode-group" class="choice-group" role="group" aria-label="2925 邮箱模式">
<button type="button" class="choice-btn" data-mail-2925-mode="provide">提供邮箱</button>
<button type="button" class="choice-btn" data-mail-2925-mode="receive">接收邮箱</button>
<button type="button" class="choice-btn" data-mail2925-mode="provide">提供邮箱</button>
<button type="button" class="choice-btn" data-mail2925-mode="receive">接收邮箱</button>
</div>
</div>
<div class="data-row" id="row-email-generator">
+1 -1
View File
@@ -67,7 +67,7 @@ const inputSub2ApiGroup = document.getElementById('input-sub2api-group');
const selectMailProvider = document.getElementById('select-mail-provider');
const btnMailLogin = document.getElementById('btn-mail-login');
const rowMail2925Mode = document.getElementById('row-mail-2925-mode');
const mail2925ModeButtons = Array.from(document.querySelectorAll('[data-mail-2925-mode]'));
const mail2925ModeButtons = Array.from(document.querySelectorAll('[data-mail2925-mode]'));
const rowEmailGenerator = document.getElementById('row-email-generator');
const selectEmailGenerator = document.getElementById('select-email-generator');
const rowTempEmailBaseUrl = document.getElementById('row-temp-email-base-url');