Files
yshop-pro-uniapp/pages/login/index.data.js
2023-11-14 17:21:03 +08:00

29 lines
595 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @name: index.data
* @author: kahu4
* @date: 2023-11-08 16:35
* @descriptionindex.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: 0,
label: '微信快捷登录',
icon: wechat,
classNames: []
},
{
type: 1,
label: '手机号快捷登录',
icon: phone,
classNames: ['white-button']
}
]