Commit 86bad3e0 by FE

Merge branch 'pythonClass' into dev

parents 323137b7 7c2550d1
...@@ -65,7 +65,12 @@ class PythonClass extends Component { ...@@ -65,7 +65,12 @@ class PythonClass extends Component {
handleFetchInfo = () => { handleFetchInfo = () => {
const id = getParam('id') || 10; const id = getParam('id') || 10;
http.get(`${API.home}/web/python/share/help/${id}`).then(res => { // http.get(`${API.home}/web/python/share/help/${id}`).then(res => {
http.get(`${API.home}/m/it/share/show`, {
params: {
id
}
}).then(res => {
const { code, data } = res.data; const { code, data } = res.data;
if(code === 200) { if(code === 200) {
this.setState({ this.setState({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment