1 | import { ComponentType } from 'react'
|
2 | import { StandardProps } from './common'
|
3 | interface LoginProps extends StandardProps {
|
4 | /** 组件中用户授权按钮的类名,可用于自定义样式
|
5 | * @supported swan
|
6 | */
|
7 | buttonClass?: string
|
8 | /** 组件中用户授权勾选框选中时的颜色,同 CSS 的 color
|
9 | * @supported swan
|
10 | * @default "#3388FF"
|
11 | */
|
12 | checkedColor?: string
|
13 | /** 主题颜色,设置后将应用于 “用户授权按钮背景色” 和 “用户授权勾选框选中时的颜色”
|
14 | * 注:theme-color 的优先级低于 button-class 和 checked-color,且当 button-class 存在时,theme-color 不生效
|
15 | * @supported swan
|
16 | * @default "#3388FF"
|
17 | */
|
18 | themeColor?: string
|
19 | /** 用户完成授权后,获取用户手机号:
|
20 | * detail.errMsg 值为"getPhoneNumber:ok" 时代表用户信息获取成功;
|
21 | * detail.errMsg 值为"getPhoneNumber:fail auth deny"时代表用户信息获取失败。
|
22 | * 参考 用户数据的签名验证和加解密 对用户数据进行处理获得用户手机号。
|
23 | * 用户手机号信息解密后数据示例:{"mobile":"15000000000"}
|
24 | * 1. 非个人开发者可申请;
|
25 | * 2. 审核通过后,进入小程序首页,在左侧导航栏单击“设置 -> 开发设置”。下拉页面,在“获取用户手机号权限申请”中单击“申请开通”
|
26 | * @supported swan
|
27 | */
|
28 | onGetPhoneNumber?: CommonEventFunction
|
29 | /** 组件加载失败回调
|
30 | * @supported swan
|
31 | */
|
32 | onLoadError?: CommonEventFunction
|
33 | }
|
34 | /** 联合登录 / 手机号授权内嵌组件
|
35 | * @classification open
|
36 | * @supported swan
|
37 | * @see https://smartprogram.baidu.com/docs/develop/component/login/
|
38 | */
|
39 | declare const Login: ComponentType<LoginProps>
|
40 | export { Login, LoginProps }
|