csx 5 years ago
parent
commit
dbf9d77b0f

+ 10 - 1
src/api/advice.js View File

@@ -93,4 +93,13 @@ export function modifyAdviceGroupStartTime(group_no, start_time_str) {
93 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 View File

@@ -30,6 +30,7 @@
30 30
 
31 31
 <script>
32 32
 import { parseTime } from "@/utils";
33
+import { jsGetAge } from '@/utils/tools'
33 34
 
34 35
 export default {
35 36
   name: "PatientBox",
@@ -142,12 +143,21 @@ export default {
142 143
       }
143 144
     },
144 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 162
     detailAction: function(schedual) {
153 163
       var patient_id = schedual.patient_id;

File diff suppressed because it is too large
+ 807 - 663
src/pages/main/dialog/OrdersDialog.vue


+ 4 - 1
src/pages/main/today/TodayTab.vue View File

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

+ 8 - 12
src/pages/main/today/acceptsAssessment.vue View File

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

+ 5 - 7
src/pages/main/today/detailsInfo.vue View File

@@ -50,6 +50,7 @@ x<template>
50 50
 
51 51
 <script>
52 52
 import { parseTime } from "@/utils";
53
+import { jsGetAge } from '@/utils/tools'
53 54
 
54 55
 export default {
55 56
   name: "DetailsInfo",
@@ -109,13 +110,10 @@ export default {
109 110
 
110 111
     },
111 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 119
     source: function() {

+ 4 - 4
src/pages/main/today/statOrder.vue View File

@@ -30,11 +30,11 @@
30 30
               <span>{{advice.execution_frequency}}</span>
31 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 38
         </tr>
39 39
       </template>
40 40
     </table>
@@ -167,7 +167,7 @@ export default {
167 167
       line-height: 0.88rem;
168 168
       font-weight: normal;
169 169
     }
170
-   
170
+
171 171
 
172 172
     .advice_content {
173 173
       text-align: left;