|
@@ -6,7 +6,7 @@
|
6
|
6
|
<span class="iconfont"></span>返回
|
7
|
7
|
</div>
|
8
|
8
|
<h1 class="name">新增医嘱</h1>
|
9
|
|
- <span class="success" @click="comfirmAction">完成</span>
|
|
9
|
+ <span class="success" @click="comfirmAction">保存</span>
|
10
|
10
|
</div>
|
11
|
11
|
<div class="yzNav" style="width:100%;">
|
12
|
12
|
<span class="newSpan" @click="addOrderByTemplateAction">选择模板</span>
|
|
@@ -18,7 +18,12 @@
|
18
|
18
|
<div style="overflow: hidden;">
|
19
|
19
|
<div class="cell" style="margin-top: 0;">
|
20
|
20
|
<label>医嘱类型</label>
|
21
|
|
- <el-input class="typeInput" ref="advice_type" value="临时" disabled></el-input>
|
|
21
|
+ <el-input
|
|
22
|
+ class="typeInput"
|
|
23
|
+ ref="advice_type"
|
|
24
|
+ value="临时"
|
|
25
|
+ disabled
|
|
26
|
+ ></el-input>
|
22
|
27
|
</div>
|
23
|
28
|
<div class="cell" style="margin-top: 0;">
|
24
|
29
|
<label>开始时间</label>
|
|
@@ -38,7 +43,11 @@
|
38
|
43
|
<label>开嘱时间 {{ record_date_str }}</label>
|
39
|
44
|
</div>
|
40
|
45
|
</div>
|
41
|
|
- <div id="newDialogContent" class="DialogContent choose" style="height: 6.2rem;">
|
|
46
|
+ <div
|
|
47
|
+ id="newDialogContent"
|
|
48
|
+ class="DialogContent choose"
|
|
49
|
+ style="height: 6.2rem;"
|
|
50
|
+ >
|
42
|
51
|
<div class="newAddTable">
|
43
|
52
|
<table class="table">
|
44
|
53
|
<tr>
|
|
@@ -61,16 +70,20 @@
|
61
|
70
|
>
|
62
|
71
|
<td
|
63
|
72
|
style="text-align: left; padding-left: 5px; padding-right: 5px;"
|
64
|
|
- >{{ advice.title }}</td>
|
65
|
|
- <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{ advice.drug_spec_unit }}</td>
|
|
73
|
+ >
|
|
74
|
+ {{ advice.title }}
|
|
75
|
+ </td>
|
|
76
|
+ <td v-if="advice.advice_desc">
|
|
77
|
+ {{ advice.advice_desc }}{{ advice.drug_spec_unit }}
|
|
78
|
+ </td>
|
66
|
79
|
<td v-if="advice.prescribing_number">
|
67
|
80
|
{{ advice.prescribing_number
|
68
|
81
|
}}{{ advice.prescribing_number_unit }}
|
69
|
82
|
</td>
|
70
|
83
|
<td v-else></td>
|
71
|
|
- <td
|
72
|
|
- v-if="advice.single_dose"
|
73
|
|
- >{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
|
|
84
|
+ <td v-if="advice.single_dose">
|
|
85
|
+ {{ advice.single_dose }} {{ advice.single_dose_unit }}
|
|
86
|
+ </td>
|
74
|
87
|
<td v-else></td>
|
75
|
88
|
<td>{{ advice.delivery_way }}</td>
|
76
|
89
|
<td>{{ advice.execution_frequency }}</td>
|
|
@@ -87,8 +100,12 @@
|
87
|
100
|
>
|
88
|
101
|
<td
|
89
|
102
|
style="text-align: left; padding-right: 5px; padding-left: 25px;"
|
90
|
|
- >{{ subdrug.title }}</td>
|
91
|
|
- <td>{{ subdrug.advice_desc }} {{ subdrug.drug_spec_unit }}</td>
|
|
103
|
+ >
|
|
104
|
+ {{ subdrug.title }}
|
|
105
|
+ </td>
|
|
106
|
+ <td>
|
|
107
|
+ {{ subdrug.advice_desc }} {{ subdrug.drug_spec_unit }}
|
|
108
|
+ </td>
|
92
|
109
|
<td>
|
93
|
110
|
<span v-if="subdrug.prescribing_number">
|
94
|
111
|
{{ subdrug.prescribing_number
|