Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 3 years ago
parent
commit
0581a1aa39

+ 8 - 7
src/xt_pages/outpatientDoctorStation/template/printFour.vue View File

@@ -251,13 +251,14 @@ export default {
251 251
      },
252 252
 
253 253
      getDiagnosis(id){
254
-        var name = ""
255
-        for(let i=0;i<this.diagnoses.length;i++){
256
-          if(id == this.diagnoses[i].id){
257
-             name = this.diagnoses[i].class_name
258
-          }
259
-        }
260
-        return name
254
+       let arr = id.split(',')
255
+       var name = ""
256
+       for(let i=0;i<this.diagnoses.length;i++){
257
+         if(arr.indexOf(String(this.diagnoses[i].id)) > -1){
258
+           name += this.diagnoses[i].class_name + ' '
259
+         }
260
+       }
261
+       return name
261 262
      }
262 263
 
263 264
    },

+ 8 - 7
src/xt_pages/outpatientDoctorStation/template/printOne.vue View File

@@ -269,13 +269,14 @@ export default {
269 269
      },
270 270
 
271 271
      getDiagnosis(id){
272
-        var name = ""
273
-        for(let i=0;i<this.diagnoses.length;i++){
274
-          if(id == this.diagnoses[i].id){
275
-             name = this.diagnoses[i].class_name
276
-          }
277
-        }
278
-        return name
272
+       let arr = id.split(',')
273
+       var name = ""
274
+       for(let i=0;i<this.diagnoses.length;i++){
275
+         if(arr.indexOf(String(this.diagnoses[i].id)) > -1){
276
+           name += this.diagnoses[i].class_name + ' '
277
+         }
278
+       }
279
+       return name
279 280
      }
280 281
 
281 282
    },