|
|
@ -56,12 +56,12 @@ const Guanli = (props) => { |
|
|
|
// datalist.fill({licensePlate:"赣A44454",overrunRate:"30%",fine:"200元",processingTime:"2020年4月1日"})
|
|
|
|
const renderContent = () => { |
|
|
|
return <div style={{height:"100%"}}> |
|
|
|
{rightitemlist && rightitemlist.length!==0?rightitemlist?.map(({ id, licensePlate, overrunRate,fine,processingTime }, index) => { |
|
|
|
{rightitemlist && rightitemlist.length!==0?rightitemlist?.map(({ id, licensePlate, overrunRate,fine,processingTime,deductPoints }, index) => { |
|
|
|
if(index<120){ |
|
|
|
return <div key={index} className='guanli-right-item'> |
|
|
|
<span>{licensePlate}</span> |
|
|
|
<span>{overrunRate}%</span> |
|
|
|
<span>{fine}{fine?"元":""}</span> |
|
|
|
<span>{deductPoints?`-${deductPoints}`:""}和-{fine}{fine?"元":""}</span> |
|
|
|
<span>{processingTime}</span> |
|
|
|
</div> |
|
|
|
} |
|
|
|