import React from 'react'; import { LoadingOutlined, WarningOutlined } from '@ant-design/icons'; import Style from './web.module.less'; import Success from '../../../components/common/result/success'; import Fail from '../../../components/common/result/fail'; export default function render(props) { const { oakLoading, expired, illegal, loading } = props.data; let V; if (oakLoading || loading) { V = (} title="加载中" description="正在获取数据,请稍后"/>); } else if (illegal) { V = (); } else if (expired) { V = (} title="数据已过期" description="抱歉,该数据已过期"/>); } else { V = (} title="跳转中" description="正在跳转...,请稍后"/>); } return
{V}
; }