Files
yshop-pro-uniapp/pages/login/index.data.js
2023-11-15 19:59:37 +08:00

24 lines
484 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: 1,
label: '手机号快捷登录',
icon: phone,
classNames: ['white-button']
}
]