| | |
| | | import React, {Component} from 'react' |
| | | import { Spin, notification, ConfigProvider } from 'antd' |
| | | import zhCN from 'antd/es/locale/zh_CN' |
| | | import { Spin, notification } from 'antd' |
| | | |
| | | import Api from '@/api' |
| | | import asyncComponent from '@/utils/asyncLoadComponent' |
| | |
| | | } else { |
| | | sessionStorage.clear() |
| | | this.props.history.replace('/login') |
| | | window.location.reload() |
| | | } |
| | | }) |
| | | } |
| | |
| | | sessionStorage.clear() |
| | | sessionStorage.setItem('iframe', `/iframe/${menuId}/@loginuid@/${bid || ''}`) |
| | | this.props.history.replace('/login') |
| | | window.location.reload() |
| | | } |
| | | }) |
| | | } |
| | |
| | | configurable: true, |
| | | enumerable: true, |
| | | set(value) { |
| | | if (value + '' === 'false') { |
| | | window.GLOB.debugger = false |
| | | } else { |
| | | if (value === true) { |
| | | window.GLOB.debugger = true |
| | | } else if (value === 0) { |
| | | if (window.backend) { |
| | | sessionStorage.setItem('systemRun', 'front') |
| | | window.location.reload() |
| | | } else { |
| | | window.mkInfo('系统当前未使用后端脚本!') |
| | | } |
| | | } else if (value === false) { |
| | | if (sessionStorage.getItem('systemRun') === 'front') { |
| | | sessionStorage.removeItem('systemRun') |
| | | window.location.reload() |
| | | } else { |
| | | window.GLOB.debugger = false |
| | | } |
| | | } |
| | | } |
| | | }) |
| | |
| | | |
| | | reloadTabs = () => { |
| | | if (this.reloading) return |
| | | |
| | | let time = new Date().getTime() |
| | | |
| | | let oldTime = sessionStorage.getItem('mk_reloadTabs') |
| | | |
| | | if (oldTime && time - oldTime < 180000) return |
| | | |
| | | sessionStorage.setItem('mk_reloadTabs', time) |
| | | |
| | | this.reloading = true |
| | | |
| | |
| | | |
| | | return ( |
| | | <div className="main-iframe"> |
| | | <ConfigProvider locale={zhCN}> |
| | | {loading ? <Spin size="large" /> : null} |
| | | {!loading && type === 'CustomPage' ? <CustomPage MenuID={MenuId} param={{$BID: BID}} changeTemp={this.changeTemp}/> : null} |
| | | {!loading && type === 'BaseTable' ? <BaseTable MenuID={MenuId} param={{$BID: BID}} changeTemp={this.changeTemp}/> : null} |
| | | </ConfigProvider> |
| | | {loading ? <Spin size="large" /> : null} |
| | | {!loading && type === 'CustomPage' ? <CustomPage MenuID={MenuId} param={{$BID: BID}} changeTemp={this.changeTemp}/> : null} |
| | | {!loading && type === 'BaseTable' ? <BaseTable MenuID={MenuId} param={{$BID: BID}} changeTemp={this.changeTemp}/> : null} |
| | | <ImgScale /> |
| | | </div> |
| | | ) |