|
@@ -1,7 +1,7 @@
|
|
|
import React from "react";
|
|
|
import styles from "./index.less";
|
|
|
import PanelBlock from "./components/PanelBlock";
|
|
|
-import HeaderContent from "./layout/head/HeadContent";
|
|
|
+import HeaderContent from "./components/HeadContent";
|
|
|
|
|
|
class BigScreen extends React.Component {
|
|
|
constructor(props) {
|
|
@@ -135,31 +135,23 @@ class BigScreen extends React.Component {
|
|
|
{/* <PanelBlock height="200px" /> */}
|
|
|
<PanelBlock />
|
|
|
<PanelBlock />
|
|
|
- <PanelBlock height="500px" />
|
|
|
+ <PanelBlock height="400px" />
|
|
|
</div>
|
|
|
|
|
|
{/* 中间 */}
|
|
|
<div className={styles.contentPanelCenter}>
|
|
|
- <div className={styles.contentPanelCenterTop}>
|
|
|
- <PanelBlock />
|
|
|
- </div>
|
|
|
- <div className={styles.contentPanelCenterMiddle}>
|
|
|
- <PanelBlock />
|
|
|
- </div>
|
|
|
- <div className={styles.contentPanelCenterBottom}>
|
|
|
+ <PanelBlock height="350px"/>
|
|
|
+ <PanelBlock />
|
|
|
+ <PanelBlock height="500px" flexDirection='row'>
|
|
|
<PanelBlock />
|
|
|
<PanelBlock />
|
|
|
- </div>
|
|
|
+ </PanelBlock>
|
|
|
</div>
|
|
|
|
|
|
{/* 右侧 */}
|
|
|
<div className={styles.contentPanelRight}>
|
|
|
- <div className={styles.contentPanelRightTop}>
|
|
|
- <PanelBlock />
|
|
|
- </div>
|
|
|
- <div className={styles.contentPanelRightBottom}>
|
|
|
- <PanelBlock />
|
|
|
- </div>
|
|
|
+ <PanelBlock />
|
|
|
+ <PanelBlock />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|