|
|
@@ -1057,7 +1057,8 @@
|
|
|
<th rowspan="2" style="width: 10px">手术类别</th>
|
|
|
<th rowspan="2">手术及操作名称</th>
|
|
|
<th colspan="3">手术及操作医师</th>
|
|
|
- <th rowspan="2" style="width: 30px">切口愈合等级</th>
|
|
|
+ <th rowspan="2" style="width: 10px">切口等级</th>
|
|
|
+ <th rowspan="2" style="width: 10px">愈合等级</th>
|
|
|
<th rowspan="2">麻醉方式</th>
|
|
|
<th rowspan="2">麻醉医师</th>
|
|
|
</tr>
|
|
|
@@ -1224,11 +1225,25 @@
|
|
|
</td>
|
|
|
<td style="text-align-last: center">
|
|
|
<select
|
|
|
- v-model="patient.surgeryList[n - 1].cutHeal"
|
|
|
+ v-model="patient.surgeryList[n - 1].cut"
|
|
|
style="border: none !important"
|
|
|
>
|
|
|
<option
|
|
|
- v-for="(item, index) in dics.getCutHealGrade"
|
|
|
+ v-for="(item, index) in cuts"
|
|
|
+ :key="index"
|
|
|
+ :value="item.code"
|
|
|
+ >
|
|
|
+ {{ item.code }}
|
|
|
+ </option>
|
|
|
+ </select>
|
|
|
+ </td>
|
|
|
+ <td style="text-align-last: center">
|
|
|
+ <select
|
|
|
+ v-model="patient.surgeryList[n - 1].heal"
|
|
|
+ style="border: none !important"
|
|
|
+ >
|
|
|
+ <option
|
|
|
+ v-for="(item, index) in heals"
|
|
|
:key="index"
|
|
|
:value="item.code"
|
|
|
>
|
|
|
@@ -1273,8 +1288,8 @@
|
|
|
</tr>
|
|
|
</table>
|
|
|
<div style="border-bottom:1px solid black;margin-right: 20px">
|
|
|
- 手术类别:1.择期手术 2.急诊手术 切口类别:0.0级切口 Ⅰ.Ⅰ级切口 Ⅱ.Ⅱ级切口 Ⅲ.Ⅲ级切口 <br/>
|
|
|
- 愈合等级:甲.甲级愈合 乙.乙级愈合 丙.丙级愈合 其他.提前出院等无法预知的
|
|
|
+ 手术类别:1.择期手术 2.急诊手术 切口类别:0.0级切口 Ⅰ.1级切口 Ⅱ.2级切口 Ⅲ.3级切口
|
|
|
+ 愈合等级:1.甲 2.乙 3.丙 9.其他
|
|
|
</div>
|
|
|
<div>
|
|
|
离院方式:
|
|
|
@@ -2133,7 +2148,9 @@ import {
|
|
|
initShowDel,
|
|
|
searchMethods,
|
|
|
yesOrNo,
|
|
|
- noCertReasons
|
|
|
+ noCertReasons,
|
|
|
+ cuts,
|
|
|
+ heals,
|
|
|
} from "./common";
|
|
|
import { operations } from "@/data";
|
|
|
import { getLodop, initLodop } from "@/utils/c-lodop";
|