|
@@ -22,7 +22,7 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <td class="label" width="150" height="42">到达事故现场时间</td>
|
|
|
+ <td class="label" width="218" height="40">到达事故现场时间</td>
|
|
|
<td class="value">
|
|
|
<span v-if="downMode">{{ history.value.arrivalTime }}</span>
|
|
|
<ui-input
|
|
@@ -34,7 +34,7 @@
|
|
|
/>
|
|
|
</td>
|
|
|
<td class="label" width="100">天气</td>
|
|
|
- <td class="value" width="80">
|
|
|
+ <td class="value" width="116">
|
|
|
<span v-if="downMode">{{ history.value.weather }}</span>
|
|
|
<ui-input
|
|
|
v-else
|
|
@@ -110,10 +110,10 @@
|
|
|
</tr>
|
|
|
</table>
|
|
|
<div class="signatures">
|
|
|
- <p class="signature">绘图员:</p>
|
|
|
- <p class="signature">当事人签名:</p>
|
|
|
<p class="signature">勘察员:</p>
|
|
|
- <p class="signature">见证人签名:</p>
|
|
|
+ <p class="signature">绘图员:</p>
|
|
|
+ <p class="signature">当事人签字:</p>
|
|
|
+ <p class="signature">见证人签字:</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -136,7 +136,6 @@ import MainPanel from "@/components/main-panel/index.vue";
|
|
|
import { downloadImage, uploadImage } from "@/store/sync";
|
|
|
import { Mode } from "@/views/graphic/menus";
|
|
|
import Message from "@/components/base/components/message/message.vue";
|
|
|
-import { useConfirm } from "@/hook";
|
|
|
|
|
|
const roadPhoto = computed<RoadPhoto>(() => {
|
|
|
let route, params, data;
|
|
@@ -255,9 +254,9 @@ const saveHandler = async () => {
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
|
|
|
- font-family: SimSun-Regular, SimSun;
|
|
|
+ font-family: sr, st;
|
|
|
color: #000;
|
|
|
- font-size: 16px;
|
|
|
+ font-size: 20px;
|
|
|
}
|
|
|
|
|
|
.content {
|
|
@@ -270,10 +269,10 @@ const saveHandler = async () => {
|
|
|
position: relative;
|
|
|
.photo-layout {
|
|
|
position: absolute;
|
|
|
- left: 1px;
|
|
|
- right: 1px;
|
|
|
- bottom: 1px;
|
|
|
- top: 1px;
|
|
|
+ left: 0px;
|
|
|
+ right: 0px;
|
|
|
+ bottom: 0px;
|
|
|
+ top: 0px;
|
|
|
overflow: hidden;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
@@ -350,6 +349,7 @@ const saveHandler = async () => {
|
|
|
|
|
|
.date {
|
|
|
text-align: right;
|
|
|
+ padding-right: 44px;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -358,11 +358,10 @@ const saveHandler = async () => {
|
|
|
span {
|
|
|
height: 52px !important;
|
|
|
font-size: 46px !important;
|
|
|
- font-family: SimSun-Regular, SimSun;
|
|
|
font-weight: 400;
|
|
|
color: #000000;
|
|
|
line-height: 52px;
|
|
|
- letter-spacing: 13px;
|
|
|
+ letter-spacing: 10px;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -374,9 +373,9 @@ const saveHandler = async () => {
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
.content table .textarea-layout {
|
|
|
- height: 73px;
|
|
|
+ height: 63px;
|
|
|
span {
|
|
|
- padding: 10px 0px;
|
|
|
+ padding: 5px 0px;
|
|
|
display: block;
|
|
|
height: 100%;
|
|
|
}
|
|
@@ -388,31 +387,32 @@ const saveHandler = async () => {
|
|
|
|
|
|
tr:not(:first-child) {
|
|
|
td {
|
|
|
- border-right: 3px solid #000;
|
|
|
- border-bottom: 3px solid #000;
|
|
|
+ border-right: 1px solid #000;
|
|
|
+ border-bottom: 1px solid #000;
|
|
|
}
|
|
|
|
|
|
&:nth-child(2) td {
|
|
|
- border-top: 3px solid #000;
|
|
|
+ border-top: 2px solid #000;
|
|
|
}
|
|
|
|
|
|
td:first-child {
|
|
|
- border-left: 3px solid #000;
|
|
|
+ border-left: 2px solid #000;
|
|
|
}
|
|
|
td:last-child {
|
|
|
- border-right: 3px solid #000;
|
|
|
+ border-right: 2px solid #000;
|
|
|
}
|
|
|
|
|
|
&:last-child td {
|
|
|
- border-bottom: 3px solid #000;
|
|
|
+ border-bottom: 2px solid #000;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.signatures {
|
|
|
- margin-top: 13px;
|
|
|
+ margin-top: 10px;
|
|
|
display: flex;
|
|
|
+ font-size: 16px;
|
|
|
|
|
|
.signature {
|
|
|
flex: 1;
|