Browse Source

Merge branch 'new_pad_branch' of http://git.shengws.com/zhangbj/xt_pad into new_pad_branch

csx 4 years ago
parent
commit
7ec32c1b62
2 changed files with 7 additions and 36 deletions
  1. 5 5
      src/pages/main/dialog/PrescriptionDialog.vue
  2. 2 31
      src/pages/main/today/detailsInfo.vue

+ 5 - 5
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -121,11 +121,11 @@
121 121
               for="zl"
122 122
               v-if="dialysisPrescription.anticoagulant == 0 ||dialysisPrescription.anticoagulant == -2"
123 123
             >维持(mg/h)</label>
124
-            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 2">维持(iu)</label>
125
-            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 3">维持(iu)</label>
126
-            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 4">维持(mg)</label>
127
-            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 5">维持(ml)</label>
128
-            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 1">维持(mg)</label>
124
+            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 2">维持(iu/h)</label>
125
+            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 3">维持(iu/h)</label>
126
+            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 4">维持(mg/h)</label>
127
+            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 5">维持(ml/h)</label>
128
+            <label class="name" for="zl" v-if="dialysisPrescription.anticoagulant == 1">维持(mg/h)</label>
129 129
             <div class="content">
130 130
               <input
131 131
                 v-if="dialysisPrescription.anticoagulant != 1"

+ 2 - 31
src/pages/main/today/detailsInfo.vue View File

@@ -73,18 +73,7 @@ export default {
73 73
   name: "DetailsInfo",
74 74
   data() {
75 75
     return {
76
-      // patient: {
77
-      //   name: "",
78
-      //   gender: 1,
79
-      //   birthday: "",
80
-      //   dialysis_no: "",
81
-      //   device_number: "",
82
-      //   source: "",
83
-      //   admission_number: "",
84
-      // },
85
-      // device_number: {
86
-      //   number: "",
87
-      // },
76
+
88 77
       steps: [
89 78
         { title: "透析处方" },
90 79
         { title: "接诊评估" },
@@ -137,25 +126,7 @@ export default {
137 126
     }
138 127
   },
139 128
   methods: {
140
-    // setPatientInfo(patient, device_number_name) {
141
-    //   if (patient == null) {
142
-    //     this.patient.name = ""
143
-    //     this.patient.gender = 1
144
-    //     this.patient.birthday = ""
145
-    //     this.patient.dialysis_no = ""
146
-    //     // this.patient.device_number = ""
147
-    //     this.patient.source = ""
148
-    //     this.patient.admission_number = ""
149
-    //   } else {
150
-    //     this.patient.name = patient.name
151
-    //     this.patient.gender = patient.gender
152
-    //     this.patient.birthday = parseTime(patient.birthday, "{y}/{m}/{d}")
153
-    //     this.patient.dialysis_no = patient.dialysis_no
154
-    //     this.device_number.number = device_number_name
155
-    //     this.patient.source = patient.source == 1 ? "门诊" : "住院"
156
-    //     this.patient.admission_number = patient.admission_number
157
-    //   }
158
-    // }
129
+
159 130
   },
160 131
   created() {}
161 132
 };