|
|
@@ -5,11 +5,7 @@
|
|
|
<p><span class="label">勘验地点:</span>{{ safe(d.address) }}</p>
|
|
|
<p><span class="label">勘验人员姓名、勘验人描述(含技术员职务):</span>{{ safe(d.userInfo) }}</p>
|
|
|
<p><span class="label">勘验气象条件(天空、风力、温度):</span>{{ safe(d.weather) }}</p>
|
|
|
-
|
|
|
- <div class="section">
|
|
|
- <div class="section-title">勘验情况:</div>
|
|
|
- <div class="section-body">{{ safe(d.situation) }}</div>
|
|
|
- </div>
|
|
|
+ <p><span class="label">勘验情况:</span>{{ safe(d.situation) }}</p>
|
|
|
|
|
|
<div class="section">
|
|
|
<div class="section-title">一、环境勘验</div>
|
|
|
@@ -31,21 +27,16 @@
|
|
|
<div class="section-body">{{ safe(d.specialInquest) }}</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="section">
|
|
|
- <div class="section-title">提取物品描述:</div>
|
|
|
- <div class="section-body">{{ safe(d.itemDescription) }}</div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="section">
|
|
|
- <div class="section-title">现场拍照制图描述:</div>
|
|
|
- <div class="section-body">{{ safe(d.imgDescription) }}</div>
|
|
|
- </div>
|
|
|
+ <p><span class="label">提取物品描述:</span>{{ safe(d.itemDescription) }}</p>
|
|
|
+ <p><span class="label">现场拍照制图描述:</span>{{ safe(d.imgDescription) }}</p>
|
|
|
|
|
|
<div class="section">
|
|
|
<div class="section-title">勘验信息:</div>
|
|
|
- <p>勘验负责人:{{ safe(d.leader) }}</p>
|
|
|
- <p>记录人:{{ safe(d.recorder) }}</p>
|
|
|
- <p>勘验人:{{ safe(d.inspector) }}</p>
|
|
|
+ <div class="witness-item">
|
|
|
+ <p>勘验负责人:{{ safe(d.leader) }}</p>
|
|
|
+ <p>记录人:{{ safe(d.recorder) }}</p>
|
|
|
+ <p>勘验人:{{ safe(d.inspector) }}</p>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div v-if="Array.isArray(d.witnessInfo) && d.witnessInfo.length" class="section witness-list">
|
|
|
@@ -130,6 +121,8 @@ const safe = (v: any) => (v === undefined || v === null || v === '' ? '-' : Stri
|
|
|
margin-top: 0;
|
|
|
}
|
|
|
.section-title {
|
|
|
+ line-height: 16px;
|
|
|
+ margin-top: 12px;
|
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
}
|
|
|
.section-body {
|
|
|
@@ -143,6 +136,7 @@ const safe = (v: any) => (v === undefined || v === null || v === '' ? '-' : Stri
|
|
|
border: 1px solid #f0f0f0;
|
|
|
border-radius: 4px;
|
|
|
background: #fafafa;
|
|
|
- margin-bottom: 8px;
|
|
|
+ margin-top: 12px;
|
|
|
+ margin-bottom: 24px;
|
|
|
}
|
|
|
</style>
|