代码提交

This commit is contained in:
黄少君
2023-11-14 17:21:03 +08:00
parent d0b337c596
commit dcab74274f
567 changed files with 22414 additions and 7375 deletions

28
pages/login/index.data.js Normal file
View File

@ -0,0 +1,28 @@
/**
* @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']
}
]