Files
yshop-pro-uniapp/pages/login/index.data.js

24 lines
484 B
JavaScript
Raw Normal View History

2023-11-14 17:21:03 +08:00
/**
* @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 = [
2023-11-15 19:59:37 +08:00
2023-11-14 17:21:03 +08:00
{
type: 1,
label: '手机号快捷登录',
icon: phone,
classNames: ['white-button']
}
]