修改bug,优化导航

This commit is contained in:
zhouyanli
2026-07-30 15:35:02 +08:00
parent a6243cf466
commit 80ff7588b1
54 changed files with 389 additions and 499 deletions

View File

@@ -109,7 +109,7 @@ const mapData = (data) => {
house: data.houseName || '',
project: data.maintenanceItemName || '',
title: data.item || '',
description: data.problem || '',
description: (data.problem || '').replace(/\\n/g, '\n'),
phone: data.phone || '',
time: data.createTime || '',
images
@@ -251,6 +251,7 @@ const previewImage = (url) => {
.multi-line {
white-space: pre-wrap;
word-break: break-all;
line-height: 1.5;
border: 1px solid #f0f0f0;
border-radius: 8rpx;
@@ -260,19 +261,22 @@ const previewImage = (url) => {
.photo-container {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 4px;
margin-right: -12px;
margin-bottom: -12px;
}
.photo-item {
width: 80px;
height: 80px;
/* border: 1px solid #ccc; */
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
background-color: #f5f5f5;
margin-right: 12px;
margin-bottom: 12px;
}
.btn-container {