浏览代码

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

csx 3 年前
父节点
当前提交
19510397ce

+ 18 - 0
src/api/his/his.js 查看文件

@@ -529,6 +529,24 @@ export function getPrivateExpensesOrder(params) {
529 529
 
530 530
 
531 531
 
532
+export function getMonthCharge(params) {
533
+  return request({
534
+    url: "/api/monthcharge/info",
535
+    method: "get",
536
+    params:params,
537
+  });
538
+}
539
+
540
+export function getMonthHisPateintInfo(params) {
541
+  return request({
542
+    url: "/api/monthhispatient/get",
543
+    method: "get",
544
+    params:params,
545
+  });
546
+}
547
+
548
+
549
+
532 550
 
533 551
 
534 552
 

+ 251 - 3
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue 查看文件

@@ -510,8 +510,9 @@
510 510
     refunddetail,
511 511
     refundNumber,
512 512
     register,
513
-    upload
514
-  } from '@/api/his/his'
513
+    upload,
514
+    getMonthCharge
515
+  } from '@api/his/his'
515 516
   import RegisterDialog from './components/registerDialog'
516 517
   import treatPrint from './treatPrint'
517 518
   import statementPrint from './statementPrint'
@@ -537,7 +538,7 @@
537 538
       prescriptionTable,
538 539
       additionalCharges,
539 540
       treatPrint,
540
-      statementPrint
541
+      statementPrint,
541 542
 
542 543
     },
543 544
     data() {
@@ -3243,6 +3244,253 @@
3243 3244
           }
3244 3245
         }
3245 3246
       },
3247
+      getMonthPatientInformation(id, batch_number, his_patient_id, order_id) {
3248
+        const params = {
3249
+          'record_date': this.record_date,
3250
+          'patient_id': id,
3251
+          'his_patient_id': his_patient_id,
3252
+          'number': batch_number,
3253
+          'start_time': this.other_start_time,
3254
+          'end_time': this.other_end_time,
3255
+          'type': this.radio,
3256
+          'p_type': 2,
3257
+          'order_id': order_id
3258
+
3259
+        }
3260
+        this.loading = true
3261
+        getChargeHisPatientInfo(params).then(response => {
3262
+          if (response.data.state == 0) {
3263
+            this.loading = false
3264
+
3265
+            this.$message.error(response.data.msg)
3266
+            return false
3267
+          } else {
3268
+            this.prescriptions = []
3269
+            this.month_prescriptions = []
3270
+            this.big_month_prescriptions = []
3271
+            this.big_prescriptions = []
3272
+            this.curPrescriptions = {}
3273
+            this.curMonthPrescriptions = {}
3274
+            this.loading = false
3275
+            this.patientInfo = response.data.data.xt_info
3276
+            this.hisPatientInfo = response.data.data.his_info
3277
+            this.info = response.data.data.info
3278
+            this.order = response.data.data.order
3279
+            this.p_type = ''
3280
+            this.sick_type = ''
3281
+            this.diagnosis = []
3282
+            this.sick_history = ''
3283
+            this.form.diagnosis = []
3284
+            if (this.info.id > 0) {
3285
+              this.form.p_type = response.data.data.info.register_type
3286
+              this.form.sick_type = response.data.data.info.sick_type
3287
+              if (response.data.data.info.diagnosis.length == 0) {
3288
+                this.form.diagnosis = []
3289
+              } else {
3290
+                for (let i = 0; i < response.data.data.info.diagnosis.split(',').length; i++) {
3291
+                  this.form.diagnosis.push(parseInt(response.data.data.info.diagnosis.split(',')[i]))
3292
+                }
3293
+              }
3294
+              this.sick_history = this.info.sick_history
3295
+              if (this.info.register_type == 0) {
3296
+                this.form.p_type = ''
3297
+              }
3298
+
3299
+              if (this.info.sick_type == 0) {
3300
+                this.form.sick_type = ''
3301
+              }
3302
+            } else {
3303
+              this.form.p_type = 14
3304
+              this.form.sick_type = this.sick[0].id
3305
+              if (response.data.data.last_info.diagnoses.length == 0) {
3306
+                this.form.diagnosis = []
3307
+              } else {
3308
+                for (let i = 0; i < response.data.data.last_info.diagnosis.split(',').length; i++) {
3309
+                  this.form.diagnosis.push(parseInt(response.data.data.last_info.diagnosis.split(',')[i]))
3310
+                }
3311
+              }
3312
+
3313
+              this.sick_history = ''
3314
+            }
3315
+            this.addtions_charge = response.data.data.addtions_charge
3316
+            this.setMonthPrescription(response.data.data.month_prescriptions)
3317
+
3318
+            if (response.data.data.prescription.length > 0 && response.data.data.prescription[0].advices.length > 0) {
3319
+              this.prescription_id = response.data.data.prescription[0].advices[0].prescription_id
3320
+            } else {
3321
+              this.prescription_id = 0
3322
+            }
3323
+
3324
+            const big_prescriptions = []
3325
+
3326
+            for (let i = 0; i < this.unique_three(response.data.data.prescription).length; i++) {
3327
+              const obj = {
3328
+                med_type: this.unique_three(response.data.data.prescription)[i].med_type,
3329
+                prescriptions: []
3330
+              }
3331
+              big_prescriptions.push(obj)
3332
+            }
3333
+
3334
+            for (let c = 0; c < big_prescriptions.length; c++) {
3335
+              const inner_prescription = []
3336
+              for (let i = 0; i < response.data.data.prescription.length; i++) {
3337
+                var prescription = response.data.data.prescription[i]
3338
+
3339
+                if (big_prescriptions[c].med_type == prescription.med_type) {
3340
+                  const tempAdvice = []
3341
+                  const tempProject = []
3342
+                  const tempAddition = []
3343
+                  for (let b = 0; b < prescription.advices.length; b++) {
3344
+                    const obj = {
3345
+                      advice_id: prescription.advices[b].id,
3346
+                      drug_name: prescription.advices[b].advice_name,
3347
+                      single_dose: prescription.advices[b].single_dose,
3348
+                      delivery_way: prescription.advices[b].delivery_way,
3349
+                      execution_frequency: prescription.advices[b].execution_frequency,
3350
+                      retail_price: prescription.advices[b].price.toString(),
3351
+                      remark: prescription.advices[b].remark,
3352
+                      day: prescription.advices[b].day,
3353
+                      prescribing_number: prescription.advices[b].prescribing_number.toString(),
3354
+                      single_dose_unit: prescription.advices[b].single_dose_unit,
3355
+                      prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
3356
+                      medical_insurance_number: prescription.advices[b].med_list_codg
3357
+
3358
+                    }
3359
+                    tempAdvice.push(obj)
3360
+                  }
3361
+
3362
+                  for (let b = 0; b < prescription.project.length; b++) {
3363
+                    const obj = {
3364
+                      id: prescription.project[b].id,
3365
+                      project_id: prescription.project[b].project.id,
3366
+                      // project_name: prescription.project[b].project.project_name,
3367
+                      // statistical_classification: prescription.project[b].project.statistical_classification,
3368
+                      single_dose: prescription.project[b].single_dose,
3369
+                      delivery_way: prescription.project[b].delivery_way,
3370
+                      execution_frequency: prescription.project[b].execution_frequency,
3371
+                      number_days: prescription.project[b].day,
3372
+                      total: prescription.project[b].count.toString(),
3373
+                      price: prescription.project[b].price,
3374
+                      remark: prescription.project[b].remark,
3375
+                      // medical_code: prescription.project[b].project.medical_code,
3376
+                      unit: prescription.project[b].unit,
3377
+                      type: prescription.project[b].type
3378
+                    }
3379
+
3380
+                    if (prescription.project[b].type == 2) {
3381
+                      obj['statistical_classification'] = prescription.project[b].project.statistical_classification
3382
+                      obj['medical_code'] = prescription.project[b].project.medical_code
3383
+                      obj['project_name'] = prescription.project[b].project.project_name
3384
+
3385
+                    } else if (prescription.project[b].type == 3) {
3386
+                      obj['statistical_classification'] = ''
3387
+                      obj['medical_code'] = prescription.project[b].good_info.medical_insurance_number
3388
+                      obj['project_name'] = prescription.project[b].good_info.good_name
3389
+                    }
3390
+
3391
+                    tempProject.push(obj)
3392
+                  }
3393
+
3394
+                  for (let b = 0; b < prescription.addition.length; b++) {
3395
+                    const obj = {
3396
+                      id: prescription.addition[b].id,
3397
+                      item_name: prescription.addition[b].item_name,
3398
+                      price: prescription.addition[b].price,
3399
+                      count: prescription.addition[b].count,
3400
+                      item_id: prescription.addition[b].item_id
3401
+                    }
3402
+                    tempAddition.push(obj)
3403
+                  }
3404
+                  const index = i + 1
3405
+                  console.log('~~~~~~~~')
3406
+                  console.log(prescription.order)
3407
+                  prescription.order.order_status = prescription.order.order_status.toString()
3408
+                  prescription.order.order_status = parseInt(prescription.order.order_status)
3409
+
3410
+                  const obj = {
3411
+                    id: prescription.id,
3412
+                    name: this.getPName(prescription.med_type, index),
3413
+                    advices: tempAdvice,
3414
+                    project: tempProject,
3415
+                    addition: tempAddition,
3416
+                    order_status: prescription.order_status,
3417
+                    type: prescription.type,
3418
+                    med_type: prescription.med_type,
3419
+                    order: prescription.order
3420
+                  }
3421
+                  // inner_prescription.push(obj)
3422
+                  big_prescriptions[c].prescriptions.push(obj)
3423
+
3424
+                  this.prescriptions.push(obj)
3425
+                }
3426
+              }
3427
+            }
3428
+
3429
+            this.big_prescriptions = JSON.parse(JSON.stringify(big_prescriptions))
3430
+
3431
+            for (let i = 0; i < this.big_prescriptions.length; i++) {
3432
+              if (this.big_prescriptions[i].med_type == '11') {
3433
+                this.big_prescriptions[i]['is_true'] = 1
3434
+              }
3435
+            }
3436
+
3437
+            for (let i = 0; i < this.big_prescriptions.length; i++) {
3438
+              if (this.big_prescriptions[i].is_true == 1) {
3439
+                for (let b = 0; b < this.big_prescriptions[i].prescriptions.length; b++) {
3440
+                  const obj = {
3441
+                    med_type: '11',
3442
+                    prescriptions: []
3443
+                  }
3444
+                  const arr = []
3445
+                  arr.push(this.big_prescriptions[i].prescriptions[b])
3446
+                  obj.prescriptions = arr
3447
+                  this.big_prescriptions.push(obj)
3448
+                }
3449
+              }
3450
+            }
3451
+
3452
+            console.log(this.big_prescriptions)
3453
+            //
3454
+            for (let i = 0; i < this.big_prescriptions.length; i++) {
3455
+              if (this.big_prescriptions[i].is_true == 1) {
3456
+                this.big_prescriptions.splice(i, 1)
3457
+              }
3458
+            }
3459
+            // console.log(this.big_prescriptions)
3460
+
3461
+            for (let i = 0; i < this.big_prescriptions.length; i++) {
3462
+              if (this.big_prescriptions[i].prescriptions.length > 0) {
3463
+                this.big_prescriptions[i]['curPrescriptions'] = JSON.parse(JSON.stringify(this.big_prescriptions[i].prescriptions[0]))
3464
+              } else {
3465
+                this.big_prescriptions[i]['curPrescriptions'] = {}
3466
+              }
3467
+              this.big_prescriptions[i]['total'] = this.getTotalThree(this.big_prescriptions[i])
3468
+            }
3469
+
3470
+            if (this.big_prescriptions.length > 0) {
3471
+              this.editableTabsValue = this.getPName(this.big_prescriptions[0].med_type, 1)
3472
+            }
3473
+
3474
+            console.log(this.big_prescriptions)
3475
+            console.log(this.big_prescriptions[0].curPrescriptions.order_status)
3476
+
3477
+            //
3478
+            // if (this.prescriptions.length > 0) {
3479
+            //   this.curPrescriptions = this.prescriptions[0]
3480
+            // } else {
3481
+            //   this.curPrescriptions = {}
3482
+            // }
3483
+            // if (this.month_prescriptions.length > 0) {
3484
+            //   this.curMonthPrescriptions = this.month_prescriptions[0]
3485
+            // } else {
3486
+            //   this.curMonthPrescriptions = {}
3487
+            // }
3488
+
3489
+            // this.month_total = this.getMonthTotalOne()
3490
+          }
3491
+        })
3492
+      },
3493
+
3246 3494
       // 获取患者的基本信息
3247 3495
       getPatientInformation(id, batch_number, his_patient_id, order_id) {
3248 3496
         const params = {

+ 190 - 2
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue 查看文件

@@ -2031,6 +2031,191 @@
2031 2031
         })
2032 2032
 
2033 2033
       },
2034
+      setData(data, info, admin_info, doctors, department, hisPatientInfo, month_data,last_info) {
2035
+        this.curMonthPrescriptions = {}
2036
+        this.curPrescriptions = {}
2037
+        // this.$refs.tabProjectTeam.clearSelection()
2038
+
2039
+
2040
+        for (let i = 0; i < doctors.length; i++) {
2041
+          if (doctors[i].user_type == 1) {
2042
+            doctors.splice(i, 1)
2043
+          }
2044
+        }
2045
+
2046
+        this.prescription_id = data[0].id
2047
+        this.editableTabsValue = '处方1'
2048
+        this.dayorMonth = 'day'
2049
+        this.$emit('event1', this.prescription_id)
2050
+        this.curStatus = 0
2051
+        if (month_data && month_data.length > 0) {
2052
+
2053
+          this.curMonthPrescriptions = month_data[0]
2054
+
2055
+        } else {
2056
+          this.curMonthPrescriptions = {}
2057
+
2058
+        }
2059
+
2060
+        if (data && data.length > 0) {
2061
+          this.curPrescriptions = data[0]
2062
+
2063
+        } else {
2064
+          this.curPrescriptions = {}
2065
+        }
2066
+
2067
+
2068
+        if (this.curPrescriptions.advices.length > 0 && this.curPrescriptions.project.length == 0) {
2069
+          this.curStatus = 1
2070
+          this.customTabIndex = 1
2071
+          this.rightTab = 1
2072
+          this.showOne = true
2073
+          this.showTwo = false
2074
+        }
2075
+
2076
+        if (this.curPrescriptions.project.length > 0 && this.curPrescriptions.advices.length == 0) {
2077
+          this.curStatus = 2
2078
+          this.customTabIndex = 2
2079
+          this.rightTab = 2
2080
+          this.showOne = false
2081
+          this.showTwo = true
2082
+        }
2083
+
2084
+
2085
+        if (this.curPrescriptions.project.length == 0 && this.curPrescriptions.advices.length == 0) {
2086
+          this.curStatus = 1
2087
+          this.customTabIndex = 1
2088
+          this.rightTab = 1
2089
+          this.showOne = true
2090
+          this.showTwo = false
2091
+        }
2092
+
2093
+
2094
+
2095
+
2096
+        if (info.prescription_status == 0) {
2097
+          this.order_status = ''
2098
+        }
2099
+
2100
+        if (this.curPrescriptions.order_status == 1) {
2101
+          this.order_status = '未收费'
2102
+        }
2103
+        if (this.curPrescriptions.order_status == 2) {
2104
+          this.order_status = '已结算'
2105
+        }
2106
+
2107
+        if (this.curPrescriptions.order_status == 3) {
2108
+          this.order_status = '已退费'
2109
+        }
2110
+
2111
+
2112
+
2113
+        getInitData().then(response => {
2114
+          if (response.data.state == 0) {
2115
+            this.$message.error(response.data.msg)
2116
+            return false
2117
+          } else {
2118
+            this.drugs = response.data.data.drugs
2119
+            this.allDrugs = response.data.data.drugs
2120
+            this.advices_template = response.data.data.advices_template
2121
+            this.doctors = response.data.data.doctors
2122
+            for (let i = 0; i < this.doctors.length; i++) {
2123
+              if (this.doctors[i].user_type == 1) {
2124
+                this.doctors.splice(i, 1)
2125
+              }
2126
+            }
2127
+            this.department = response.data.data.department
2128
+            this.sick = response.data.data.sick
2129
+            this.diagnoses = response.data.data.diagnose
2130
+            this.additions = response.data.data.additions
2131
+
2132
+
2133
+
2134
+
2135
+
2136
+            if (info.id > 0) {
2137
+              this.doctorValue = info.doctor_id
2138
+              this.departmentValue = info.departments
2139
+            } else {
2140
+              if(admin_info.id > 0 && admin_info.user_type == 2){
2141
+                this.doctorValue = admin_info.admin_user_id
2142
+                this.departmentValue = this.department[0].id
2143
+
2144
+              }else{
2145
+
2146
+                this.doctorValue = this.doctors[0].admin_user_id
2147
+                this.departmentValue = this.department[0].id
2148
+
2149
+              }
2150
+
2151
+
2152
+            }
2153
+
2154
+            if (info.register_type == 0) {
2155
+              for (let i = 0; i < this.register.length; i++) {
2156
+                this.register_type = this.register[0].value
2157
+              }
2158
+            } else {
2159
+              this.register_type = info.register_type
2160
+            }
2161
+            this.diagnose = []
2162
+
2163
+            if(info.id == 0){
2164
+              if(last_info.diagnosis.length == 0){
2165
+                this.diagnose = []
2166
+              }else{
2167
+                for(let i = 0; i < last_info.diagnosis.split(",").length;i++){
2168
+                  this.diagnose.push(parseInt(last_info.diagnosis.split(",")[i]))
2169
+
2170
+                }
2171
+              }
2172
+
2173
+              if(last_info.sick_history == 0){
2174
+                this.state2 = ''
2175
+              }else{
2176
+                this.state2 = last_info.sick_history
2177
+              }
2178
+
2179
+
2180
+            }else{
2181
+              this.state2 = info.sick_history
2182
+              if (this.state2 == 0) {
2183
+                this.state2 = ''
2184
+              }
2185
+              if(info.diagnosis.length == 0){
2186
+                this.diagnose = []
2187
+              }else{
2188
+                for(let i = 0; i < info.diagnosis.split(",").length;i++){
2189
+                  this.diagnose.push(parseInt(info.diagnosis.split(",")[i]))
2190
+
2191
+                }
2192
+
2193
+              }
2194
+
2195
+            }
2196
+
2197
+
2198
+
2199
+            this.state1 = info.sick_type
2200
+            if (this.state1 == 0 || this.state1 == "") {
2201
+              this.state1 = ''
2202
+              for (let i = 0; i < this.sick.length; i++) {
2203
+                this.state1 = this.sick[0].id
2204
+              }
2205
+            }
2206
+
2207
+            if(this.departmentValue == "" || this.departmentValue == 0){
2208
+              if(this.department.length > 0){
2209
+                this.departmentValue = this.department[0].id
2210
+
2211
+              }
2212
+            }
2213
+
2214
+          }
2215
+        })
2216
+
2217
+      },
2218
+
2034 2219
       moreState(tab, event) {
2035 2220
         if (tab == 'more') {
2036 2221
           return false
@@ -2973,9 +3158,12 @@
2973 3158
         if (this.dayorMonth == 'day') {
2974 3159
 
2975 3160
         } else if (this.dayorMonth == 'month') {
2976
-
3161
+          let form = {
3162
+            id: this.patientInfo.id,
3163
+            his_patient_id: this.hisPatientInfo.id,
3164
+          }
3165
+          this.$emit("change-month",form)
2977 3166
         }
2978
-
2979 3167
       },
2980 3168
       getAllProjectList() {
2981 3169
         getAllProjectList().then(response => {

+ 103 - 0
src/xt_pages/outpatientDoctorStation/doctorDesk.vue 查看文件

@@ -128,6 +128,7 @@
128 128
                 <desk-prescription v-on:setData="setData" :diagnoses="diagnoses" :loading="isloading"
129 129
                                    :other_sick="other_sick" :record_date="record_date"
130 130
                                    v-on:change="changeOther"
131
+                                   v-on:changeMonth="changeMonth"
131 132
                                    :month_prescriptions="month_prescriptions"
132 133
                                    ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo"
133 134
                                    :hisPatientInfo="hisPatientInfo" @event1="changetwo($event)"
@@ -4213,6 +4214,108 @@
4213 4214
             return goodUnit[i].name
4214 4215
           }
4215 4216
         }
4217
+      },changeMonth(val){
4218
+        var nowDate = new Date()
4219
+        var nowYear = nowDate.getFullYear()
4220
+        var nowMonth = nowDate.getMonth() + 1
4221
+        var nowDay = nowDate.getDate()
4222
+        var hours = nowDate.getHours()
4223
+        var min = nowDate.getMinutes()
4224
+        var nowTime =
4225
+          nowYear +
4226
+          '-' +
4227
+          (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
4228
+          '-' +
4229
+          (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (hours < 10 ? '0' + hours : hours) +
4230
+          ':' + (min < 10 ? '0' + min : min)
4231
+        let params = {
4232
+          'record_date': this.record_date,
4233
+          'patient_id': val.id,
4234
+          'his_patient_id':val.his_patient_id,
4235
+          'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
4236
+          'end_time': moment(new Date()).add('year', 0).format('YYYY-MM-DD'),
4237
+          'p_type':2,
4238
+
4239
+        }
4240
+        this.isloading = true
4241
+        getPatientInfo(params).then(response => {
4242
+          if (response.data.state == 0) {
4243
+            this.$message.error(response.data.msg)
4244
+            this.isloading = false
4245
+
4246
+            return false
4247
+          } else {
4248
+            this.patientid = val.id
4249
+            this.isloading = false
4250
+
4251
+            this.prescriptions = []
4252
+            this.month_prescriptions = []
4253
+
4254
+            this.patientInfo = response.data.data.xt_info
4255
+            this.hisPatientInfo = response.data.data.his_info
4256
+            this.case_history = response.data.data.case_history
4257
+            this.info = response.data.data.info
4258
+            this.last_info = response.data.data.last_info
4259
+            this.schedule = response.data.data.schedule
4260
+
4261
+            this.doctors = response.data.data.doctors
4262
+            this.department = response.data.data.department
4263
+
4264
+            for (let i = 0; i < this.doctors.length; i++) {
4265
+              if (this.doctors[i].user_type == 1) {
4266
+                this.doctors.splice(i, 1)
4267
+              }
4268
+            }
4269
+
4270
+            var month_prescriptions = response.data.data.month_prescriptions
4271
+            this.setMonthPrescription(month_prescriptions)
4272
+            this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}')
4273
+            if (this.case_history.temperature <= 0) {
4274
+              this.case_history.temperature = ''
4275
+            }
4276
+            if (this.case_history.blood_sugar <= 0) {
4277
+              this.case_history.blood_sugar = ''
4278
+            }
4279
+            if (this.case_history.pulse <= 0) {
4280
+              this.case_history.pulse = ''
4281
+            }
4282
+            if (this.case_history.sbp <= 0) {
4283
+              this.case_history.sbp = ''
4284
+            }
4285
+            if (this.case_history.dbp <= 0) {
4286
+              this.case_history.dbp = ''
4287
+            }
4288
+            if (this.case_history.height <= 0) {
4289
+              this.case_history.height = ''
4290
+            }
4291
+            if (this.case_history.blood_fat <= 0) {
4292
+              this.case_history.blood_fat = ''
4293
+            }
4294
+            if (this.case_history.sick_type <= 0) {
4295
+              this.case_history.sick_type = ''
4296
+            }
4297
+
4298
+            if (this.case_history.sick <= 0) {
4299
+              this.case_history.sick = ''
4300
+            }
4301
+
4302
+            if (this.case_history.diagnose <= 0) {
4303
+              this.case_history.diagnose = ''
4304
+            }
4305
+
4306
+            this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}')
4307
+            if (this.case_history.is_infect == 1) {
4308
+              this.case_history.is_infect = true
4309
+            } else {
4310
+              this.case_history.is_infect = false
4311
+            }
4312
+
4313
+            this.$refs.prescriptions.setMonthData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions,this.last_info)
4314
+          }
4315
+        })
4316
+
4317
+
4318
+
4216 4319
       },
4217 4320
     },
4218 4321
     created() {