1.1.5 • Published 1 year ago

rc-h5-ui v1.1.5

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

rc-h5-ui

快速开始

  1. 下载:风控强认证通用组件 rc-h5-ui
// 下载
npm i rc-h5-ui
  1. 该组件依赖于:"vant": "^2.12.45",使用时,需确保已引入 vant
// main.js
import Vant from 'vant';
import 'vant/lib/index.css';
Vue.use(Vant);
  1. 导入组件
// main.js
import { RcAuthStrong } from "rc-h5-ui"
Vue.use(RcAuthStrong)
  1. 使用组件( 示例内容:见 examples/pages/activity/index.vue )
// (1)引入方式

<rc-auth-strong ref="rcAuthStrong"></rc-auth-strong>

// (2)触发方式

// 参数
let args = {
                type: 1,
                rcUser: "15112345678",
                rcActivityId:"1789101029687558145",
                rcH5Url:"http://localhost:10002"
            }
// 触发
this.$refs.rcAuthStrong.start(args)

参数说明: type 强认证类型:必填,可选值:1 实名认证( 三要素 )、2 人脸识别( 活性检测 )

rcUser 强认证用户标识:必填,出现场景:a.实名认证的响应结果组件;b.通常用于服务端参数,进行用户识别 rcActivityId 风控活动标识,必填,通常用于服务端参数,进行具体的风控活动识别

rcH5Url 风控 - 强认证服务接口地址:必填,可选值:"development"、"production",其中:"development"、"production",使用组件内置的接口地址