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.
20 lines
331 B
20 lines
331 B
/*
|
|
* Copyright (c) 2020.
|
|
* author: wally
|
|
* email: 18603454788@163.com
|
|
*/
|
|
|
|
// 用户登录client
|
|
export const SIGN_IN_CLIENTS = { mp: 0, h5: 1, android: 2, ios: 3, wx_work: 4 };
|
|
|
|
// 用户登录类型
|
|
export const SIGN_IN_TYPES = {
|
|
mp: 0,
|
|
phone: 1,
|
|
email: 2,
|
|
username: 3,
|
|
wx: 4,
|
|
wx_web: 5,
|
|
wb: 6,
|
|
wx_work: 7,
|
|
};
|
|
|