工作流-构建列表-头像地址错误

This commit is contained in:
caishi 2021-07-02 18:18:49 +08:00
parent e48628389e
commit f854d2164c
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import React, { useState, useEffect , useImperativeHandle ,forwardRef } from "re
import { FlexAJ, AlignCenter , Banner } from "../Component/layout"; import { FlexAJ, AlignCenter , Banner } from "../Component/layout";
import { Table, Pagination, Popconfirm } from "antd"; import { Table, Pagination, Popconfirm } from "antd";
import { truncateCommitId } from "../common/util"; import { truncateCommitId } from "../common/util";
import {getUrl} from 'educoder'; import { getImageUrl } from 'educoder';
import axios from "axios"; import axios from "axios";
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
@ -245,7 +245,7 @@ function Structure(props,ref){
{meg.sha && <span className="color-orange">{meg.sha}</span>} {meg.sha && <span className="color-orange">{meg.sha}</span>}
</div> </div>
<AlignCenter> <AlignCenter>
<img style={{borderRadius:"50%",marginRight:"10px",width:"25px",height:"25px"}} alt="" src={`${item.image_url && getUrl(`/images/${item.image_url}`)}`} /> <img style={{borderRadius:"50%",marginRight:"10px",width:"25px",height:"25px"}} alt="" src={`${item.image_url && getImageUrl(`/${item.image_url}`)}`} />
<div className="task-hide ml5" style={{ maxWidth: "300px" }}> <div className="task-hide ml5" style={{ maxWidth: "300px" }}>
{meg.message} {meg.message}
</div> </div>