From e9c48bd7356462ba9257540b130a47a65ad1861d Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 26 八月 2021 17:17:11 +0800 Subject: [PATCH] 2021-08-26 --- src/pc/components/login/normal-login/loginform.jsx | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/pc/components/login/normal-login/loginform.jsx b/src/pc/components/login/normal-login/loginform.jsx index 20b96a4..0bce326 100644 --- a/src/pc/components/login/normal-login/loginform.jsx +++ b/src/pc/components/login/normal-login/loginform.jsx @@ -3,8 +3,11 @@ import { is, fromJS } from 'immutable' import { Form, Icon, Input, Button, Checkbox } from 'antd' +import asyncElementComponent from '@/utils/asyncComponent' import MKEmitter from '@/utils/events.js' import './index.scss' + +const QrCode = asyncElementComponent(() => import('@/components/qrcode')) class LoginTabForm extends Component { static propTpyes = { @@ -131,6 +134,12 @@ </Button> </Form.Item> </div> : null} + {activeWay.type === 'app_scan' ? <div className="form-scan-wrap"> + <div className="qr-wrap"> + <QrCode card={{qrWidth: 500, color: '#000000'}} value={'minkesoft'}/> + </div> + 璇蜂娇鐢ㄥ鎴风鎵竴鎵櫥褰� + </div> : null} </Form> ) } -- Gitblit v1.8.0