|
@@ -57,39 +57,6 @@
|
57
|
57
|
<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
|
58
|
58
|
</div>
|
59
|
59
|
</div>
|
60
|
|
- <!-- <el-table :data="tableDate" border style="width: 100%">
|
61
|
|
- <el-table-column fixed label="开嘱医生" width="100">
|
62
|
|
- <template
|
63
|
|
- slot-scope="scope"
|
64
|
|
- >{{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}</template>
|
65
|
|
- </el-table-column>
|
66
|
|
- <el-table-column label="开始时间" width="100" type="index">
|
67
|
|
- <template slot-scope="scope">{{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}</template>
|
68
|
|
- </el-table-column>
|
69
|
|
- <el-table-column label="医嘱内容" width="100">
|
70
|
|
- <template slot-scope="scope">
|
71
|
|
- <span>{{scope.row.advice_name }}</span>
|
72
|
|
-
|
73
|
|
- <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
|
74
|
|
- <span
|
75
|
|
- v-if="scope.row.prescribing_number"
|
76
|
|
- >{{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span>
|
77
|
|
- <span
|
78
|
|
- v-if="scope.row.single_dose"
|
79
|
|
- >单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
|
80
|
|
- <span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
|
81
|
|
- <span v-if="scope.row.parent_id == 0">{{scope.row.execution_frequency}}</span>
|
82
|
|
- </template>
|
83
|
|
- </el-table-column>
|
84
|
|
- <el-table-column label="执行时间" width="100">
|
85
|
|
- <template slot-scope="scope">{{parseTime(scope.row.execution_time, "{m}-{d} {h}:{i}")}}</template>
|
86
|
|
- </el-table-column>
|
87
|
|
- <el-table-column label="执行护士" width="200">
|
88
|
|
- <template
|
89
|
|
- slot-scope="scope"
|
90
|
|
- >{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
|
91
|
|
- </el-table-column>
|
92
|
|
- </el-table>-->
|
93
|
60
|
</div>
|
94
|
61
|
</template>
|
95
|
62
|
|