修复忘记密码时提示错误问题
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user