2
0

修复忘记密码时提示错误问题

This commit is contained in:
lai
2025-02-20 16:08:46 +08:00
parent 1dd6d27d64
commit 9172a03e11
3 changed files with 83 additions and 100 deletions

View File

@@ -109,7 +109,7 @@ const handleCancel = () => {
<style scoped>
.order-info {
padding: 20px;
background: #f8f8f8;
background: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
border-radius: 8px;
margin-bottom: 24px;
}
@@ -127,12 +127,12 @@ const handleCancel = () => {
.label {
width: 84px;
color: #666;
color: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
}
.value {
flex: 1;
color: #333;
color: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
}
.value.highlight {
@@ -147,7 +147,7 @@ const handleCancel = () => {
.payment-methods h4 {
margin-bottom: 16px;
color: #333;
color: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
font-size: 14px;
font-weight: normal;
}
@@ -171,7 +171,7 @@ const handleCancel = () => {
.method-item:hover {
border-color: #1890ff;
background: #f0f5ff;
background: rgba(6, 42, 77, 0.192);
}
.payment-icon {
@@ -190,7 +190,7 @@ const handleCancel = () => {
.method-item.disabled {
opacity: 0.5;
cursor: not-allowed;
background: #f5f5f5;
background: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
}
.balance-icon {
@@ -199,7 +199,7 @@ const handleCancel = () => {
.balance-info {
font-size: 12px;
color: #666;
color: var(--text-color, var(--ant-text-color)); /* 使用主题变量 */
margin-top: 4px;
}