- {list.map((item) => {
- const statusDisplay = getStatusDisplay(item.status)
-
- return (
-
{
- Taro.navigateTo({
- url: `/hjm/violation/detail?id=${item.code}`
- })
- }}
- >
-
-
-
-
-
- {item.title}
-
-
-
-
-
-
-
- 车辆编号:{item.code}
-
-
-
-
-
-
- 创建时间:{item.createTime}
-
-
-
-
-
-
- {statusDisplay.text}
-
-
-
- {/* 备注信息 */}
- {item.comments && (
-
- {item.comments.length > 50
- ? `${item.comments.substring(0, 50)}...`
- : item.comments
- }
-
- )}
- {item.userId == Taro.getStorageSync('UserId') && (
-
-
-
- {/**/}
-
-
- )}
-