perf: 优化忘记密码URL不自动增加 http:// 前缀

This commit is contained in:
Bai
2023-05-16 11:18:17 +08:00
committed by Jiangjie.Bai
parent 1fdcf9ff75
commit 72693af5fd

View File

@@ -25,17 +25,6 @@ export default {
]
]
],
fieldsMeta: {
FORGOT_PASSWORD_URL: {
on: {
change([value], updateForm) {
if (value && !value.startsWith('http')) {
updateForm({ FORGOT_PASSWORD_URL: 'http://' + value })
}
}
}
}
},
submitMethod() {
return 'patch'
}