|
|
@@ -59,21 +59,21 @@
|
|
59
|
59
|
</tr>
|
|
60
|
60
|
<tr>
|
|
61
|
61
|
<th>目的地:</th>
|
|
62
|
|
- <td>{{ orderDetailData.F_Destination }}</td>
|
|
|
62
|
+ <td>{{ orderDetailData.F_Destination || "-"}}</td>
|
|
63
|
63
|
<th>发车时间:</th>
|
|
64
|
|
- <td>{{ orderDetailData.F_UseTime }}</td>
|
|
65
|
|
- <th>是否出生:</th>
|
|
66
|
|
- <td>{{ orderDetailData.F_Birth == 0 ? "否" : "是" }}</td>
|
|
|
64
|
+ <td>{{ orderDetailData.F_UseTime || "-"}}</td>
|
|
|
65
|
+ <th v-if="orderDetailData.F_TypeName2.indexOf('新生儿')>=0">是否出生:</th>
|
|
|
66
|
+ <td v-if="orderDetailData.F_TypeName2.indexOf('新生儿')>=0">{{ orderDetailData.F_Birth == 0 ? "否" : "是" }}</td>
|
|
67
|
67
|
</tr>
|
|
68
|
68
|
<tr>
|
|
69
|
69
|
<th>紧急情况:</th>
|
|
70
|
70
|
<td colspan="5">
|
|
71
|
|
- {{ orderDetailData.F_EmergencyTypes || "-" }}
|
|
|
71
|
+ {{ orderDetailData.F_EmergencyTypes }}
|
|
72
|
72
|
</td>
|
|
73
|
73
|
</tr>
|
|
74
|
74
|
<tr>
|
|
75
|
75
|
<th>工单内容:</th>
|
|
76
|
|
- <td colspan="5">{{ orderDetailData.F_Content }}</td>
|
|
|
76
|
+ <td colspan="5">{{ orderDetailData.F_Content || "-"}}</td>
|
|
77
|
77
|
</tr>
|
|
78
|
78
|
</table>
|
|
79
|
79
|
</el-col>
|
|
|
@@ -184,6 +184,7 @@ export default {
|
|
184
|
184
|
F_CarMessage: "",
|
|
185
|
185
|
F_DriverName: "",
|
|
186
|
186
|
F_Remark: "",
|
|
|
187
|
+ F_TypeName2:""
|
|
187
|
188
|
},
|
|
188
|
189
|
evaluateData: [],
|
|
189
|
190
|
workOrderCirculationList: [], // 工单流转
|