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