Browse Source

修改医嘱提醒显示

张保健 5 years ago
parent
commit
99438edfe5
2 changed files with 6 additions and 8 deletions
  1. 4 2
      src/pages/main/index.vue
  2. 2 6
      src/pages/main/today/TodayTab.vue

+ 4 - 2
src/pages/main/index.vue View File

@@ -52,8 +52,10 @@
52 52
             let doctorAdvice = []
53 53
             for (let i = 0; i < this.scheduals.length; i++) {
54 54
               for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
55
-                if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
56
-                  doctorAdvice.push(this.scheduals[i].doctor_advice[y])
55
+                if(this.scheduals[i].dialysis_order == null ){
56
+                  if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
57
+                    doctorAdvice.push(this.scheduals[i].doctor_advice[y])
58
+                  }
57 59
                 }
58 60
               }
59 61
             }

+ 2 - 6
src/pages/main/today/TodayTab.vue View File

@@ -332,7 +332,7 @@
332 332
           {title: '治疗小结', name: 'treatment_of', value: 0}
333 333
         ]
334 334
 
335
-        if (!isNaN(this.prescription.id) && this.prescription.id > 0) {
335
+        if (!isNaN(this.prescription.id) && this.prescription.id > 0 && this.prescription.prescription_doctor> 0) {
336 336
           steps[0].value = 1
337 337
         }
338 338
         if (
@@ -341,11 +341,7 @@
341 341
         ) {
342 342
           steps[1].value = 1
343 343
         }
344
-        if (
345
-          typeof this.predialysis_evaluation.id != 'undefined' &&
346
-          !isNaN(this.predialysis_evaluation.id) &&
347
-          this.predialysis_evaluation.id > 0
348
-        ) {
344
+        if ( typeof this.predialysis_evaluation.id != 'undefined' && !isNaN(this.predialysis_evaluation.id) && this.predialysis_evaluation.id > 0  && this.predialysis_evaluation.creater > 0) {
349 345
           steps[2].value = 1
350 346
         }
351 347
         if (this.advice_groups.length > 0) {