【前端】云工厂的纸掌柜app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
379 B

/**
* 账号类型
*/
export const accountType = {
WX: 1,
PHONE: 2,
EMAIL: 3,
APPLEID: 4,
CUSTOM: 5
}
/**
* 验证码用途
*/
export const codePurpose = {
CERTIFICATION: 1,
RESET_LOGIN_PASSWORD: 2,
RESET_PHONE: 3,
BIND_BANK_CARD: 4,
RESET_CREDIT_PASSWORD: 5
}
/**
* 可验证账号类型
*/
export const verificationType = {
PHONE: 1,
EMAIL: 2
}