fastman3-dfyjapp-shortlogin

a shortLogin component for dfyjapp

Usage no npm install needed!

<script type="module">
  import fastman3DfyjappShortlogin from 'https://cdn.skypack.dev/fastman3-dfyjapp-shortlogin';
</script>

README

fastman3-dfyjapp-shortlogin

CHANGELOG

v 1.0.0 - 2021.4.23

  1. 初始化构建

v 1.0.1 - 2021.5.20

  1. 增加 H5 端取消的回调函数

v 1.0.2 - 2021.6.24

  1. 新增 isInteractive 属性

v 1.0.3 - 2021.6.24

  1. 修复问题

二级登录前置检查

使用方式

安装

cnpm install fastman3-dfyjapp-shortlogin

// 头部引入
import { shortLogin } from "fastman3-dfyjapp-shortlogin";

 async function checkLogin() {
    console.log("aaa");
    try {
      const result = await shortLogin();
      console.log("整个二级登录流程结束", result);
    } catch (e) {
      console.log("出错", e);
    }
  }
import { Securekeyboard } from "fastman3-component-keyboard";

render() {
  return (
    <Securekeyboard></Securekeyboard>
  )
}