Merge branch 'dev_jupyter' of https://bdgit.educoder.net/Hjqreturn/educoder into dev_jupyter

chromesetting
杨树林 5 years ago
commit 85995c3375

@ -4,7 +4,7 @@
* @Github: * @Github:
* @Date: 2019-12-12 10:34:03 * @Date: 2019-12-12 10:34:03
* @LastEditors: tangjiang * @LastEditors: tangjiang
* @LastEditTime: 2019-12-13 15:31:35 * @LastEditTime: 2019-12-13 16:04:31
*/ */
import './index.scss'; import './index.scss';
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
@ -36,7 +36,7 @@ function LeftPane (props) {
const oList = dataSets.map((item, i) => { const oList = dataSets.map((item, i) => {
return ( return (
<li className="jupyter_item" key={`key_${i}`}> <li className="jupyter_item" key={`key_${i}`}>
<Tooltip placement="right" title={'文字提示信息'}> <Tooltip placement="right" title={item.file_path}>
<Icon type="file-text" className="jupyter_icon"/> <Icon type="file-text" className="jupyter_icon"/>
<span className="jupyter_name">{item.title}</span> <span className="jupyter_name">{item.title}</span>
</Tooltip> </Tooltip>

@ -4,7 +4,7 @@
* @Github: * @Github:
* @Date: 2019-12-12 09:07:07 * @Date: 2019-12-12 09:07:07
* @LastEditors: tangjiang * @LastEditors: tangjiang
* @LastEditTime: 2019-12-13 14:30:51 * @LastEditTime: 2019-12-13 16:00:45
*/ */
import axios from 'axios'; import axios from 'axios';
@ -15,7 +15,7 @@ export async function fetchJupyterInfo (identifier) {
} }
// 获取数据集 // 获取数据集
export async function fetchJupyterTpiDataSet (identifier, params) { export async function fetchJupyterTpiDataSet (identifier, params) {
const url = `/shixuns/${identifier}/jupyter_data_sets.json`; const url = `/shixuns/${identifier}/get_data_sets.json`;
return axios.get(url, { params }); return axios.get(url, { params });
} }
// 获取 tpi url // 获取 tpi url

Loading…
Cancel
Save