import React, { PureComponent } from 'react'; import { Tabs } from 'antd'; import style from "styled-components"; const store = require("store"); const { TabPane } = Tabs; export default class TestPaper extends PureComponent { constructor(props, context) { super(props, context); this.state = { // currentURL: "http://localhost:3000/productdetail?tit=%E4%BF%9D%E5%AE%89%E5%9F%B9%E8%AE%AD%E8%AF%BE%E7%A8%8B&systype=saas", // currentURL:"http://localhost:3000/#/order?trackid=2&organID=70607bb974eb44bb9847909d3461bd70", }; } componentDidMount = () => { } render() { return ( {store.get("TestPaperURL") !== undefined ? (
) : '' } {/* {store.get("saas") !== undefined ? ( */}
); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;