24 lines
484 B
JavaScript
24 lines
484 B
JavaScript
/**
|
||
* @name: index.data
|
||
* @author: kahu4
|
||
* @date: 2023-11-08 16:35
|
||
* @description:index.data
|
||
* @update: 2023-11-08 16:35
|
||
* */
|
||
import wechat from '@/static/icon/login/wechat.png'
|
||
import phone from '@/static/icon/login/phone.png'
|
||
|
||
/**
|
||
* 登录方式
|
||
* @type {[{icon: *, label: string},{icon: *, label: string}]}
|
||
*/
|
||
export const loginMethods = [
|
||
|
||
{
|
||
type: 1,
|
||
label: '手机号快捷登录',
|
||
icon: phone,
|
||
classNames: ['white-button']
|
||
}
|
||
]
|