Commit ed4f7e54 by zhujian

Merge branch 'feature/yuananting/20210801/task-center' into dev

parents a4bfe5ef 6767b2ba
...@@ -41,7 +41,7 @@ function DataInfo(props: any) { ...@@ -41,7 +41,7 @@ function DataInfo(props: any) {
<div className="prog"> <div className="prog">
<Progress type="circle" width={85} percent={parseInt(props.info.finishCustomerNum /(props.info.cultureCustomerNum)*100 as any)} strokeWidth={10} <Progress type="circle" width={85} percent={parseInt(props.info.finishCustomerNum /(props.info.cultureCustomerNum)*100 as any)} strokeWidth={10}
format={percent => <div className='wcl'> format={percent => <div className='wcl'>
{`${(parseInt(props.info.finishCustomerNum /(props.info.cultureCustomerNum)*100 as any))}% `} {`${(parseInt((props.info.finishCustomerNum || 0) /(props.info.cultureCustomerNum || 0)*100 as any))}% `}
<div>完成率</div> <div>完成率</div>
</div>} /> </div>} />
......
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