Browse Source

fix 公交运营信息展示错误

dev
巴林闲侠 1 year ago
parent
commit
1ee5ab3fcb
  1. 6
      web/client/src/sections/quanju/containers/footer/operation/right.js

6
web/client/src/sections/quanju/containers/footer/operation/right.js

@ -79,7 +79,7 @@ const Right = ({ busRunTime }) => {
slidesToShow={4} slidesToShow={4}
> >
{ {
busRunTimeList.map((b, i) => { busRunTimeList.map((d, index) => {
return ( return (
<div key={index} style={{ width: '100%', height: '40%' }}> <div key={index} style={{ width: '100%', height: '40%' }}>
<div className='busInformation'> <div className='busInformation'>
@ -92,9 +92,9 @@ const Right = ({ busRunTime }) => {
</span> </span>
<span> <span>
<h3>发车时间</h3> <h3>发车时间</h3>
<h4>{d.lastDepTime}</h4> <h5>{d.lastDepTime}</h5>
</span> </span>
<span> <span style={{ position: 'relative', left: '21%' }}>
<h3>司机</h3> <h3>司机</h3>
<h5>{d.employeeName}</h5> <h5>{d.employeeName}</h5>
<h3>工号</h3> <h3>工号</h3>

Loading…
Cancel
Save