forked from Gitlink/forgeplus-react
This commit is contained in:
parent
1402029bfe
commit
295d0dbe5c
|
@ -43,13 +43,14 @@ const Infos = styled.div`
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
//提交详情页
|
//提交详情页
|
||||||
export default ({ match , history }) => {
|
export default (props) => {
|
||||||
|
const { match , history } = props;
|
||||||
const [data, setData] = useState({undefined});
|
const [data, setData] = useState({undefined});
|
||||||
const [commit, setCommit] = useState(undefined);
|
const [commit, setCommit] = useState(undefined);
|
||||||
const [parents, setParents] = useState(undefined);
|
const [parents, setParents] = useState(undefined);
|
||||||
const [committer, setCommitter] = useState(undefined);
|
const [committer, setCommitter] = useState(undefined);
|
||||||
const [isSpin, setIsSpin] = useState(true);
|
const [isSpin, setIsSpin] = useState(true);
|
||||||
console.log(match);
|
console.log('----------', match , history, props);
|
||||||
const { sha , projectsId, owner, branchName } = match.params;
|
const { sha , projectsId, owner, branchName } = match.params;
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (projectsId && owner && sha) {
|
if (projectsId && owner && sha) {
|
||||||
|
|
Loading…
Reference in New Issue