|
@@ -14,12 +14,10 @@
|
|
|
<td style="width: 120px">{{ report.department }}</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <th>不良后果</th>
|
|
|
- <td>{{ dict.eventResult[report.eventResult]?.label }}</td>
|
|
|
<th colspan="2">姓名/工号</th>
|
|
|
- <td>{{ report.userName }}/{{ report.userId }}</td>
|
|
|
+ <td colspan="2">{{ report.userName }}/{{ report.userId }}</td>
|
|
|
<th>职称</th>
|
|
|
- <td>{{ report.userLevel }}</td>
|
|
|
+ <td colspan="2">{{ report.userLevel }}</td>
|
|
|
<th>工龄</th>
|
|
|
<td>{{ report.workYear }}</td>
|
|
|
</tr>
|
|
@@ -69,7 +67,9 @@
|
|
|
|
|
|
<tr>
|
|
|
<th colspan="2">事件等级</th>
|
|
|
- <td colspan="7" style="text-align: left;padding-left: 10px;">{{ dict.eventLevel[report.eventLevel]?.label }}</td>
|
|
|
+ <td colspan="3" style="text-align: left;padding-left: 10px;">{{ dict.eventLevel[report.eventLevel]?.label }}</td>
|
|
|
+ <th colspan="2">损害程度</th>
|
|
|
+ <td colspan="2">{{ dict.eventResult[report.eventResult]?.label }}</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<th rowspan="2" colspan="2">科室处理意见</th>
|
|
@@ -79,19 +79,6 @@
|
|
|
<tr>
|
|
|
<td colspan="2">处理时间:{{ report.deptDealTime }}</td>
|
|
|
</tr>
|
|
|
-
|
|
|
-<!-- <tr>-->
|
|
|
-<!-- <th rowspan="3" colspan="2">科室处理意见</th>-->
|
|
|
-<!-- <td rowspan="3" colspan="5" style="text-align: left;padding-left: 10px;">{{ report.deptDealing }}</td>-->
|
|
|
-<!-- <td colspan="2">事件等级:{{ dict.eventLevel[report.eventLevel]?.label }}</td>-->
|
|
|
-<!-- </tr>-->
|
|
|
-<!-- <tr>-->
|
|
|
-<!-- <td colspan="2">处理人:{{ report.deptDealerName }}</td>-->
|
|
|
-<!-- </tr>-->
|
|
|
-<!-- <tr>-->
|
|
|
-<!-- <td colspan="2">处理时间:{{ report.deptDealTime }}</td>-->
|
|
|
-<!-- </tr>-->
|
|
|
-
|
|
|
<tr>
|
|
|
<th rowspan="2" colspan="2">护理部处理意见</th>
|
|
|
<td rowspan="2" colspan="5" style="text-align: left;padding-left: 10px;">{{ report.finalDealing }}</td>
|
|
@@ -104,8 +91,8 @@
|
|
|
<tr>
|
|
|
<th rowspan="2" colspan="2">整改效果反馈</th>
|
|
|
<td rowspan="2" colspan="5" style="text-align: left;padding-left: 10px;">
|
|
|
- <span v-for="item in report.feedbackList">
|
|
|
- {{dict.eventFeedback[item]?.name}};
|
|
|
+ <span v-for="(item,index) in report.feedbackList">
|
|
|
+ {{index+1}}.{{dict.eventFeedback[item]?.name}};
|
|
|
</span>
|
|
|
</td>
|
|
|
<td colspan="2">反馈人:{{ report.feedbackStaffName }}</td>
|