Commit b6dd6556 by 姜雷

修改约车处理和派车车牌显示

parent 944905dc
......@@ -123,7 +123,11 @@ class PublicCarItem extends Component {
>
<div className={styles.listLabel}>派车车牌:</div>
<div className={styles.listValue}>
{data.dealResult === 1 ? '待处理后显示' : data.carPlate}
{data.dealResult === 1
? '待处理后显示'
: data.carPlate
? data.carPlate
: '无'}
</div>
</div>,
data.dealResult === 3 ? (
......@@ -132,7 +136,9 @@ class PublicCarItem extends Component {
className={`${styles.listLine} ${styles.dealedColor}`}
>
<div className={styles.listLabel}>处理意见:</div>
<div className={styles.listValue}>{data.dealOpinion}</div>
<div className={styles.listValueMutLine}>
{data.dealOpinion}
</div>
</div>
) : null,
]
......
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