csx 5 jaren geleden
bovenliggende
commit
dbf9d77b0f

+ 10 - 1
src/api/advice.js Bestand weergeven

93
             start_time: start_time_str,
93
             start_time: start_time_str,
94
         }
94
         }
95
     })
95
     })
96
-}
96
+}
97
+
98
+
99
+export function ExecSingleDoctorAdvice(params){
100
+  return request({
101
+    url:'/m/api/advice/exec/single',
102
+    method:'Post',
103
+    params:params,
104
+  })
105
+}

+ 16 - 6
src/pages/main/PatientBox.vue Bestand weergeven

30
 
30
 
31
 <script>
31
 <script>
32
 import { parseTime } from "@/utils";
32
 import { parseTime } from "@/utils";
33
+import { jsGetAge } from '@/utils/tools'
33
 
34
 
34
 export default {
35
 export default {
35
   name: "PatientBox",
36
   name: "PatientBox",
142
       }
143
       }
143
     },
144
     },
144
     age: function(schedual) {
145
     age: function(schedual) {
145
-      var now = new Date();
146
-      var nowYear = parseTime(now, "{y}");
147
-      var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
148
-      // console.log(nowYear)
149
-      // console.log(birthdayYear)
150
-      return nowYear - birthdayYear;
146
+      if(schedual.patient.age == 0){
147
+
148
+        return jsGetAge(parseTime(schedual.patient.birthday, '{y}-{m}-{d}'), '-')
149
+
150
+      }else{
151
+
152
+        return schedual.patient.age
153
+      }
154
+
155
+      // var now = new Date();
156
+      // var nowYear = parseTime(now, "{y}");
157
+      // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
158
+      // // console.log(nowYear)
159
+      // // console.log(birthdayYear)
160
+      // return nowYear - birthdayYear;
151
     },
161
     },
152
     detailAction: function(schedual) {
162
     detailAction: function(schedual) {
153
       var patient_id = schedual.patient_id;
163
       var patient_id = schedual.patient_id;

Diff onderdrukt omdat het te groot bestand
+ 807 - 663
src/pages/main/dialog/OrdersDialog.vue


+ 4 - 1
src/pages/main/today/TodayTab.vue Bestand weergeven

929
       this.closeDialog(7);
929
       this.closeDialog(7);
930
       this.scrollToView("dialysis_off");
930
       this.scrollToView("dialysis_off");
931
     },
931
     },
932
-    closeAssessmentAfter: function() {
932
+    closeAssessmentAfter: function(assessment_after_dislysis) {
933
       this.closeDialog(8);
933
       this.closeDialog(8);
934
       this.scrollToView("assessment_after");
934
       this.scrollToView("assessment_after");
935
+      if(assessment_after_dislysis != undefined){
936
+        this.assessment_after_dislysis = assessment_after_dislysis
937
+      }
935
     },
938
     },
936
     closeTreatmentOf: function() {
939
     closeTreatmentOf: function() {
937
       this.closeDialog(9);
940
       this.closeDialog(9);

+ 8 - 12
src/pages/main/today/acceptsAssessment.vue Bestand weergeven

11
           <label>病人情况 : </label>
11
           <label>病人情况 : </label>
12
           <span class="content">{{condition}}</span>
12
           <span class="content">{{condition}}</span>
13
         </li>
13
         </li>
14
-      </ul>
15
-
16
-      <ul>
17
         <li style="height: 0.6rem;">
14
         <li style="height: 0.6rem;">
18
           <label>病人意识 : </label>
15
           <label>病人意识 : </label>
19
           <span class="content">{{consciousness}}</span>
16
           <span class="content">{{consciousness}}</span>
23
           <span class="content">{{posture}}</span>
20
           <span class="content">{{posture}}</span>
24
         </li>
21
         </li>
25
       </ul>
22
       </ul>
23
+
26
       <ul>
24
       <ul>
27
         <li style="height: 0.6rem;">
25
         <li style="height: 0.6rem;">
28
           <label>病人食欲 : </label>
26
           <label>病人食欲 : </label>
32
           <label>病情 </label>
30
           <label>病情 </label>
33
           <span class="content">{{sickCondition}} </span>
31
           <span class="content">{{sickCondition}} </span>
34
         </li>
32
         </li>
35
-      </ul>
36
-
37
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
38
-        <li style="height: 0.6rem;">
33
+        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
39
           <label>风险程度:</label>
34
           <label>风险程度:</label>
40
           <span class="content">{{dangerLevel}}</span>
35
           <span class="content">{{dangerLevel}}</span>
41
         </li>
36
         </li>
42
-        <li style="height: 0.6rem;">
37
+        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
43
           <label>摄入量:</label>
38
           <label>摄入量:</label>
44
           <span class="content">{{intakes}}</span>
39
           <span class="content">{{intakes}}</span>
45
         </li>
40
         </li>
41
+
46
       </ul>
42
       </ul>
47
 
43
 
44
+
45
+
48
       <ul v-if="this.$store.getters.user.template_info.template_id == 2">
46
       <ul v-if="this.$store.getters.user.template_info.template_id == 2">
49
         <li style="height: 0.6rem;">
47
         <li style="height: 0.6rem;">
50
           <label>营养状况:</label>
48
           <label>营养状况:</label>
54
           <label> 心理评估</label>
52
           <label> 心理评估</label>
55
           <span class="content">{{psychologicalAssessment}}</span>
53
           <span class="content">{{psychologicalAssessment}}</span>
56
         </li>
54
         </li>
57
-      </ul>
58
-
59
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2 &&this.record.psychological_assessment == 2 ">
60
-        <li style="height: 0.6rem;">
55
+        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2 &&this.record.psychological_assessment == 2 ">
61
           <label>心理评估异常原因:</label>
56
           <label>心理评估异常原因:</label>
62
           <span class="content">{{this.record.psychological_assessment_other}}</span>
57
           <span class="content">{{this.record.psychological_assessment_other}}</span>
63
         </li>
58
         </li>
64
       </ul>
59
       </ul>
65
 
60
 
61
+
66
     </div>
62
     </div>
67
   </div>
63
   </div>
68
 </template>
64
 </template>

+ 5 - 7
src/pages/main/today/detailsInfo.vue Bestand weergeven

50
 
50
 
51
 <script>
51
 <script>
52
 import { parseTime } from "@/utils";
52
 import { parseTime } from "@/utils";
53
+import { jsGetAge } from '@/utils/tools'
53
 
54
 
54
 export default {
55
 export default {
55
   name: "DetailsInfo",
56
   name: "DetailsInfo",
109
 
110
 
110
     },
111
     },
111
     age: function() {
112
     age: function() {
112
-      var str =  parseTime(this.patient.birthday, "{y}/{m}/{d}");
113
-      var r = str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/);
114
-      if (r == null) return false;
115
-      var d =new Date(r[1],r[3]-1,r[4]);
116
-      if (d.getFullYear()==r[1]&&(d.getMonth()+1)==r[3]&&d.getDate()==r[4]){
117
-        var Y = new Date().getFullYear();
118
-        return((Y-r[1])+"周岁");
113
+      if (this.patient.age == 0){
114
+        return jsGetAge(parseTime(this.patient.birthday, '{y}-{m}-{d}'), '-')
115
+      }else{
116
+        return this.patient.age
119
       }
117
       }
120
     },
118
     },
121
     source: function() {
119
     source: function() {

+ 4 - 4
src/pages/main/today/statOrder.vue Bestand weergeven

30
               <span>{{advice.execution_frequency}}</span>
30
               <span>{{advice.execution_frequency}}</span>
31
             </td>
31
             </td>
32
 
32
 
33
-            <td v-if="i == 0" :rowspan="group.advices.length">{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
33
+            <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
34
 
34
 
35
-            <td v-if="i == 0" :rowspan="group.advices.length">{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
35
+            <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
36
 
36
 
37
-            <td v-if="i == 0" :rowspan="group.advices.length">{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
37
+            <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
38
         </tr>
38
         </tr>
39
       </template>
39
       </template>
40
     </table>
40
     </table>
167
       line-height: 0.88rem;
167
       line-height: 0.88rem;
168
       font-weight: normal;
168
       font-weight: normal;
169
     }
169
     }
170
-   
170
+
171
 
171
 
172
     .advice_content {
172
     .advice_content {
173
       text-align: left;
173
       text-align: left;