You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/public/react/src/modules/help/AboutUs.js

54 lines
1.2 KiB

import React from 'react';
import PropTypes from 'prop-types';
import { Card } from "antd";
import axios from 'axios';
import { MarkdownToHtml } from 'educoder';
class AboutUs extends React.Component {
constructor (props) {
super(props);
this.state = {
loading: true,
content: null
}
}
componentDidMount(){
window.document.title = "关于我们";
this.getContent();
}
getContent(){
axios.get("/helps/about.json").then((result) => {
if(result){
this.setState({
content: result.data.content,
loading: false
})
}
}).catch((error) => {
console.log(error);
this.setState({ loading: false });
})
}
render() {
let { loading, content } = this.state;
return (
<div>
<div className="about-us-container">
<Card title="关于我们" bordered={false} loading={loading} style={{ minHeight: 600 }}>
<div className="about-us-content">
{ content && <MarkdownToHtml content={content} selector="work_content" className=""></MarkdownToHtml> }
</div>
</Card>
</div>
</div>
)
}
}
export default AboutUs;