diff --git a/public/react/src/modules/tpm/jupyter/index.js b/public/react/src/modules/tpm/jupyter/index.js index 0f5090e33..031b5c2b9 100644 --- a/public/react/src/modules/tpm/jupyter/index.js +++ b/public/react/src/modules/tpm/jupyter/index.js @@ -4,20 +4,33 @@ * @Github: * @Date: 2019-12-11 08:35:23 * @LastEditors: tangjiang - * @LastEditTime: 2019-12-11 08:48:20 + * @LastEditTime: 2019-12-11 09:13:09 */ -import './index.css'; +import './index.scss'; import React from 'react'; import SplitPane from 'react-split-pane'; -// import UserInfo from '../../developer/components/' +import { Button } from 'antd'; + +import UserInfo from '../../developer/components/userInfo'; function JupyterTPI (props) { return (
-
+
+ +

+ MySQL数据库编程开发实训(基础篇) + 时间 +

+

+ {/* sync | poweroff */} + + +

+
- +
左侧内容
diff --git a/public/react/src/modules/tpm/jupyter/index.css b/public/react/src/modules/tpm/jupyter/index.scss similarity index 58% rename from public/react/src/modules/tpm/jupyter/index.css rename to public/react/src/modules/tpm/jupyter/index.scss index 6c9103492..7ec98f3b0 100644 --- a/public/react/src/modules/tpm/jupyter/index.css +++ b/public/react/src/modules/tpm/jupyter/index.scss @@ -46,4 +46,48 @@ } .Resizer.disabled:hover { border-color: transparent; +} + +.jupyter_area{ + + .jupyter_header{ + position: relative; + height: 60px; + line-height: 60px; + background-color: #070F1A; + + .jupyter_title{ + display: flex; + flex-direction: column; + // justify-content: space-around; + align-items: center; + height: 100%; + color: #fff; + .title_desc{ + margin-top: 12px; + font-size: 16px; + } + .title_time{ + font-size: 12px; + } + // text-align: center; + } + + .jupyter_btn{ + position: absolute; + right: 10px; + top: 14px; + + .btn_common:hover{ + // background-color: #29BD8B; + color: #29BD8B; + } + } + } + + + .jupyter_ctx{ + position: relative; + height: calc(100vh - 60px); + } } \ No newline at end of file