import React, { Component } from 'react'; import { Icon } from 'tdesign-icons-react'; export default function render() { const { oakLoading, isExist, expired } = this.state; let V; if (oakLoading) { V = (
加载中
); } else if (!isExist) { V = (
二维码非法
); } else if (expired) { V = (
二维码已过期
); } else { V = (
跳转中
); } return
{V}
; }