Browse Source

新分支

28169 1 year ago
parent
commit
cb3e881b8d
67 changed files with 6637 additions and 4954 deletions
  1. 45 0
      src/api/data.js
  2. 24 0
      src/api/his/his.js
  3. 8 0
      src/api/manage.js
  4. 8 0
      src/api/patient.js
  5. 4 2
      src/lang/zh.js
  6. 5 0
      src/router/modules/hospitalRecord.js
  7. 12 0
      src/router/modules/workforce.js
  8. 2 2
      src/utils/data.js
  9. 2 1
      src/xt_pages/data/components/editInspection.vue
  10. 1 1
      src/xt_pages/data/components/inspection.vue
  11. 8 2
      src/xt_pages/data/specialDictionary.vue
  12. 1 1
      src/xt_pages/data/template.vue
  13. 17 1
      src/xt_pages/device/airDisinfectTwo.vue
  14. 10 10
      src/xt_pages/device/objectTableDisinfectTwo.vue
  15. 31 9
      src/xt_pages/dialysis/batch_print/batch_print_order_fortyOne.vue
  16. 141 40
      src/xt_pages/dialysis/batch_print/batch_print_order_six.vue
  17. 56 5
      src/xt_pages/dialysis/batch_print/batch_print_order_thirteen.vue
  18. 3 1
      src/xt_pages/dialysis/batch_print/batch_print_order_thirtyTwo.vue
  19. 5 0
      src/xt_pages/dialysis/details/DialysisPrescription.vue
  20. 14 5
      src/xt_pages/dialysis/details/NavIgation.vue
  21. 2 2
      src/xt_pages/dialysis/details/assessmentAfter.vue
  22. 7 0
      src/xt_pages/dialysis/details/assessmentBefore.vue
  23. 5 5
      src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue
  24. 78 122
      src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue
  25. 19 9
      src/xt_pages/dialysis/details/dialog/acceptsTreatmentDialog.vue
  26. 1 1
      src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue
  27. 204 14
      src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue
  28. 78 58
      src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue
  29. 4 1
      src/xt_pages/dialysis/details/dialog/monitor_dialog.vue
  30. 259 2
      src/xt_pages/dialysis/details/dialog/treatmentSummaryDialog.vue
  31. 2 2
      src/xt_pages/dialysis/details/dialysisMonitoring.vue
  32. 1 0
      src/xt_pages/dialysis/details/index.vue
  33. 3 5
      src/xt_pages/dialysis/dialysisPrintOrder.vue
  34. 35 13
      src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue
  35. 61 21
      src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue
  36. 98 53
      src/xt_pages/dialysis/template/DialysisPrintOrderSixtyfour.vue
  37. 48 3
      src/xt_pages/dialysis/template/DialysisPrintOrderThirteen.vue
  38. 24 3
      src/xt_pages/dialysis/template/DialysisPrintOrderTwentySeven.vue
  39. 73 20
      src/xt_pages/hospitalStation/chargeDetailManagement.vue
  40. 3 1
      src/xt_pages/hospitalStation/components/deskPrescription.vue
  41. 1 0
      src/xt_pages/hospitalStation/components/dialysisIndex.vue
  42. 3570 3544
      src/xt_pages/hospitalStation/doctorDesk.vue
  43. 552 449
      src/xt_pages/hospitalStation/hospitalBatchStatementPrint.vue
  44. 34 1
      src/xt_pages/management/components/UserForm.vue
  45. 2 4
      src/xt_pages/management/components/WaterForm.vue
  46. 40 7
      src/xt_pages/management/components/WaterFormList.vue
  47. 20 1
      src/xt_pages/management/index.vue
  48. 13 13
      src/xt_pages/outpatientCharges/components/chargeDialog.vue
  49. 1 2
      src/xt_pages/outpatientCharges/components/registerDialog.vue
  50. 6 4
      src/xt_pages/outpatientCharges/outpatientChargesManagement.vue
  51. 71 6
      src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue
  52. 1 0
      src/xt_pages/outpatientDoctorStation/components/dialysisIndex.vue
  53. 52 19
      src/xt_pages/outpatientDoctorStation/doctorDesk.vue
  54. 13 12
      src/xt_pages/qcd/basicInformationAnalysis.vue
  55. 8 0
      src/xt_pages/stock/drugs/drugStockInOrder.vue
  56. 1 1
      src/xt_pages/stock/drugs/drugStockInOrderDetailPrint.vue
  57. 8 1
      src/xt_pages/stock/stockInOrder.vue
  58. 388 387
      src/xt_pages/stock/stockInOrderDetailPrint.vue
  59. 4 1
      src/xt_pages/stock/stockOutOrderEdit.vue
  60. 139 72
      src/xt_pages/user/components/PatientDetail.vue
  61. 12 1
      src/xt_pages/user/components/PatientForm.vue
  62. 241 5
      src/xt_pages/user/courseOfDisease.vue
  63. 16 1
      src/xt_pages/user/dialysisSolution.vue
  64. 12 0
      src/xt_pages/user/doctorAdvice.vue
  65. 3 3
      src/xt_pages/user/ktv.vue
  66. 20 2
      src/xt_pages/workforce/appointment.vue
  67. 7 3
      src/xt_pages/workforce/components/historyWeekTable.vue

+ 45 - 0
src/api/data.js View File

305
   })
305
   })
306
 }
306
 }
307
 
307
 
308
+export function savePatientDiagnose(data){
309
+  
310
+  return request({
311
+    url:"/api/patient/addpatientdiagnose",
312
+    method:"post",
313
+    data:data,
314
+  })
315
+}
316
+
317
+export function getPatientDiagnose(params){
318
+  
319
+  return request({
320
+    url:"/api/patient/getpatientdiagnose",
321
+    method:"get",
322
+    params:params
323
+  })
324
+}
325
+
326
+export function getPatientDiagnoseDetail(params){
327
+  
328
+  return request({
329
+    url:"/api/patient/getpatientdiagnosedetail",
330
+    method:"Get",
331
+    params:params
332
+  })
333
+}
334
+
335
+
336
+export function updatePatientCase(data){
337
+  
338
+  return request({
339
+    url:"/api/patient/updatepatientcase",
340
+    method:"post",
341
+    data:data,
342
+  })
343
+}
344
+
345
+export function deletePatientDiagnose(params){
346
+  
347
+  return request({
348
+    url:"/api/patient/deletepatientdiagnose",
349
+    method:"Get",
350
+    params:params,
351
+  })
352
+}

+ 24 - 0
src/api/his/his.js View File

754
 
754
 
755
 
755
 
756
 
756
 
757
+export function getHospitalUnChargeList(params) {
758
+  return request({
759
+    url: "/api/his/prescription/list",
760
+    method: "get",
761
+    params:params,
762
+  });
763
+}
764
+
765
+
766
+export function getHospitalUnChargeSummary(params) {
767
+  return request({
768
+    url: "/api/his/prescription/summary",
769
+    method: "get",
770
+    params:params,
771
+  });
772
+}
773
+
774
+export function getInHospitalHistory(params){
775
+  return request({
776
+    url:"/api/hospital/inhopitalcheck/list",
777
+    method:"get",
778
+    params:params
779
+  })
780
+}
757
 
781
 
758
 
782
 
759
 
783
 

+ 8 - 0
src/api/manage.js View File

797
     method:"Delete",
797
     method:"Delete",
798
     data:data,
798
     data:data,
799
   })
799
   })
800
+}
801
+
802
+export function getInformationManaList(params){
803
+  return request({
804
+    url:"/api/manage/getinformationmanalist",
805
+    method:"get",
806
+    params:params
807
+  })
800
 }
808
 }

+ 8 - 0
src/api/patient.js View File

744
 }
744
 }
745
 
745
 
746
 
746
 
747
+export function getPatientDialysisInfor(params){
748
+  
749
+  return request({
750
+    url:"/api/patient/getpatientdialysisinforlist",
751
+    method:"get",
752
+    params:params
753
+  })
754
+}

+ 4 - 2
src/lang/zh.js View File

294
     faPiao: '发票设置',
294
     faPiao: '发票设置',
295
     chargeDetailManagement: '收费明细',
295
     chargeDetailManagement: '收费明细',
296
     yidiClear: '异地清分',
296
     yidiClear: '异地清分',
297
-    zeroSummary: '零用明细汇总'
297
+    zeroSummary: '零用明细汇总',
298
+    hospitalhistory: '住院历史',
298
   },
299
   },
299
   navbar: {
300
   navbar: {
300
     logOut: '退出登录',
301
     logOut: '退出登录',
416
     tentative_diagnosis: '初步诊断',
417
     tentative_diagnosis: '初步诊断',
417
     diagnostic_basis: '诊断依据',
418
     diagnostic_basis: '诊断依据',
418
     differential_diagnosis: '鉴别诊断',
419
     differential_diagnosis: '鉴别诊断',
419
-    treatment_plan: '诊疗计划'
420
+    treatment_plan: '诊疗计划',
421
+    befor_symptoms: '透前症状',
420
   }
422
   }
421
 }
423
 }

+ 5 - 0
src/router/modules/hospitalRecord.js View File

17
       component: () => import('@/xt_pages/hospitalStation/index'),
17
       component: () => import('@/xt_pages/hospitalStation/index'),
18
       name: 'hospitalIndex',
18
       name: 'hospitalIndex',
19
       meta: { title: 'hospitalIndex', noCache: true }
19
       meta: { title: 'hospitalIndex', noCache: true }
20
+    }, {
21
+      path: '/hospitalRecord/history',
22
+      component: () => import('@/xt_pages/hospitalStation/inHospitalHistory'),
23
+      name: 'hospitalhistory',
24
+      meta: { title: 'hospitalhistory', noCache: true }
20
     },
25
     },
21
 
26
 
22
   ]
27
   ]

+ 12 - 0
src/router/modules/workforce.js View File

167
       noCache: true
167
       noCache: true
168
     }
168
     }
169
   },
169
   },
170
+
171
+  {
172
+    path: '/scheduleTablePrintThree',
173
+    component: () => import('@/xt_pages/workforce/scheduleTablePrintThree'),
174
+    name: 'scheduleTablePrintThree',
175
+    hidden: true,
176
+    is_menu: false,
177
+    meta: {
178
+      title: 'scheduleTablePrintThree',
179
+      noCache: true
180
+    }
181
+  },
170
   // {
182
   // {
171
   //   path: '/historyWeekTable',
183
   //   path: '/historyWeekTable',
172
   //   component: () => import('@/xt_pages/workforce/historyWeekTable'),
184
   //   component: () => import('@/xt_pages/workforce/historyWeekTable'),

+ 2 - 2
src/utils/data.js View File

6
   if (moduleConfig == undefined) {
6
   if (moduleConfig == undefined) {
7
     return false
7
     return false
8
   }
8
   }
9
-  if (module === 'summary' || module === 'education' || module === 'nursing_record' || module === 'special_record' || module == 'dialysis_remark' || module=='catheter_operation') {
9
+  if (module === 'summary' || module === 'education' || module === 'nursing_record' || module === 'special_record' || module == 'dialysis_remark' || module=='catheter_operation' || module=='befor_symptoms') {
10
     var Aresult = []
10
     var Aresult = []
11
     for (var j = 0; j < moduleConfig.length; j++) {
11
     for (var j = 0; j < moduleConfig.length; j++) {
12
       var Atemp = []
12
       var Atemp = []
43
   if (moduleConfig == undefined) {
43
   if (moduleConfig == undefined) {
44
     return false
44
     return false
45
   }
45
   }
46
-  if (module === 'summary' || module === 'education' || module === 'nursing_record' || module === 'special_record') {
46
+  if (module === 'summary' || module === 'education' || module === 'nursing_record' || module === 'special_record'|| module=='befor_symptoms') {
47
     var Aresult = []
47
     var Aresult = []
48
     for (var j = 0; j < moduleConfig.length; j++) {
48
     for (var j = 0; j < moduleConfig.length; j++) {
49
       var Atemp = []
49
       var Atemp = []

+ 2 - 1
src/xt_pages/data/components/editInspection.vue View File

421
     },
421
     },
422
     created() {
422
     created() {
423
       this.getlist()
423
       this.getlist()
424
-    },watch: {
424
+    },
425
+    watch: {
425
       'tableData': function() {
426
       'tableData': function() {
426
         let c = 0
427
         let c = 0
427
         this.form.price  = 0
428
         this.form.price  = 0

+ 1 - 1
src/xt_pages/data/components/inspection.vue View File

99
             },],
99
             },],
100
             value: '',
100
             value: '',
101
             tableData: [],
101
             tableData: [],
102
-            limit:20,
102
+            limit:10,
103
             page:1,
103
             page:1,
104
             total:0
104
             total:0
105
             
105
             

+ 8 - 2
src/xt_pages/data/specialDictionary.vue View File

43
           <diagnose-other v-if="activeName == 10"></diagnose-other>
43
           <diagnose-other v-if="activeName == 10"></diagnose-other>
44
         </el-tab-pane>
44
         </el-tab-pane>
45
 
45
 
46
+
47
+        <el-tab-pane label="疾病诊断" name="11">
48
+          <patient-diagnose v-if="activeName == 11"></patient-diagnose>
49
+        </el-tab-pane>
50
+
46
       </el-tabs>
51
       </el-tabs>
47
     </div>
52
     </div>
48
   </div>
53
   </div>
62
   import Addtion from './components/addtion'
67
   import Addtion from './components/addtion'
63
   import DiagnoseOtherDialog from "./components/diagnoseOtherDialog";
68
   import DiagnoseOtherDialog from "./components/diagnoseOtherDialog";
64
   import DiagnoseOther from "./components/diagnoseOther";
69
   import DiagnoseOther from "./components/diagnoseOther";
65
-
70
+  import PatientDiagnose from "./components/patient_diagnose.vue"
66
   export default {
71
   export default {
67
     name: 'specialDictionary',
72
     name: 'specialDictionary',
68
     components: {
73
     components: {
77
       project,
82
       project,
78
       inspection,
83
       inspection,
79
       manufacturer,
84
       manufacturer,
80
-      configure
85
+      configure,
86
+      PatientDiagnose
81
     },
87
     },
82
     data() {
88
     data() {
83
       return {
89
       return {

+ 1 - 1
src/xt_pages/data/template.vue View File

63
         { label: this.$t("data_config.differential_diagnosis"), key:"differential_diagnosis"},
63
         { label: this.$t("data_config.differential_diagnosis"), key:"differential_diagnosis"},
64
         { label: this.$t("data_config.treatment_plan"), key:"treatment_plan"},
64
         { label: this.$t("data_config.treatment_plan"), key:"treatment_plan"},
65
         { label: this.$t("data_config.sick_history"), key:"sick_history"},
65
         { label: this.$t("data_config.sick_history"), key:"sick_history"},
66
-
66
+        { label: this.$t("data_config.befor_symptoms"), key:"befor_symptoms"},
67
       ],
67
       ],
68
       activeName: "education",
68
       activeName: "education",
69
       createdTimes: 0
69
       createdTimes: 0

+ 17 - 1
src/xt_pages/device/airDisinfectTwo.vue View File

510
                     ></el-date-picker>
510
                     ></el-date-picker>
511
                   </el-form-item>
511
                   </el-form-item>
512
                   <el-form-item label="累计时间(h)" label-width="110px">
512
                   <el-form-item label="累计时间(h)" label-width="110px">
513
-                      <el-input v-model= "form.first_disinfection_time"  ></el-input>
513
+                      <el-input v-model= "form.first_total_time"  ></el-input>
514
                   </el-form-item>
514
                   </el-form-item>
515
                   <el-form-item label="检测合格" label-width="110px">
515
                   <el-form-item label="检测合格" label-width="110px">
516
                       <div>
516
                       <div>
1258
                 }else{
1258
                 }else{
1259
                     this.form.last_modifications= 0
1259
                     this.form.last_modifications= 0
1260
                 }
1260
                 }
1261
+                console.log("23333333333333",this.form.first_total_time)
1262
+                if( this.form.first_total_time > 0){
1263
+                  this.form.first_total_time   = this.form.first_total_time.toString()
1264
+                }
1265
+                if( this.form.sencond_total_time > 0){
1266
+                  this.form.sencond_total_time   = this.form.sencond_total_time.toString()
1267
+                }
1261
 
1268
 
1269
+                if( this.form.third_total_time > 0){
1270
+                  this.form.third_total_time   = this.form.third_total_time.toString()
1271
+                }
1272
+
1273
+                if(this.form.last_total_time >0){
1274
+                    this.form.last_total_time   = this.form.last_total_time.toString()
1275
+                }
1276
+               
1277
+                console.log("form23333333333333333wo",this.form)
1262
                 updateNewAirDisinfect(this.form).then(response=>{
1278
                 updateNewAirDisinfect(this.form).then(response=>{
1263
                 if(response.data.state == 1){
1279
                 if(response.data.state == 1){
1264
                   var disinfect =  response.data.data.disinfect
1280
                   var disinfect =  response.data.data.disinfect

+ 10 - 10
src/xt_pages/device/objectTableDisinfectTwo.vue View File

80
                     </template>
80
                     </template>
81
                 </el-table-column>
81
                 </el-table-column>
82
 
82
 
83
-                <el-table-column prop="name" :label="'体温计'+'\n'+'75%酒精擦拭'" align="center" min-width="60">
83
+                <el-table-column prop="name" :label="'体温计'+'\n'+'75%酒精浸泡'" align="center" min-width="60">
84
                     <template slot-scope="scope">
84
                     <template slot-scope="scope">
85
                         <!-- {{scope.row.fourth_total_time?scope.row.fourth_total_time:""}} -->
85
                         <!-- {{scope.row.fourth_total_time?scope.row.fourth_total_time:""}} -->
86
                         <!-- {{ scope.row.fourth_disinfection_time }} -->
86
                         <!-- {{ scope.row.fourth_disinfection_time }} -->
990
                                 <td>负责人</td>
990
                                 <td>负责人</td>
991
                                 <td>医疗垃圾桶<br/>1000mg/l含氯制剂</td>
991
                                 <td>医疗垃圾桶<br/>1000mg/l含氯制剂</td>
992
                                 <td>负责人</td>
992
                                 <td>负责人</td>
993
-                                <td>体温计<br/>75%酒精<br/>擦拭</td>
993
+                                <td>体温计<br/>75%酒精<br/>浸泡</td>
994
                                 <td>负责人</td>
994
                                 <td>负责人</td>
995
                                 <td>体温枪<br/>75%酒精<br/>擦拭</td>
995
                                 <td>体温枪<br/>75%酒精<br/>擦拭</td>
996
                                 <td>负责人</td>
996
                                 <td>负责人</td>
1424
               this.form.third_modifications = list.third_modifications?list.third_modifications:""
1424
               this.form.third_modifications = list.third_modifications?list.third_modifications:""
1425
               this.form.third_creator = list.third_creator
1425
               this.form.third_creator = list.third_creator
1426
 
1426
 
1427
-              this.form.fourth_disinfection_water = list.third_disinfection_water?list.third_disinfection_water:""
1428
-              this.form.fourth_disinfection_methods = list.third_disinfection_methods?list.third_disinfection_methods:""
1427
+              this.form.fourth_disinfection_water = list.fourth_disinfection_water?list.fourth_disinfection_water:""
1428
+              this.form.fourth_disinfection_methods = list.fourth_disinfection_methods?list.fourth_disinfection_methods:""
1429
               this.form.fourth_disinfection_time = list.fourth_disinfection_time?list.fourth_disinfection_time:""
1429
               this.form.fourth_disinfection_time = list.fourth_disinfection_time?list.fourth_disinfection_time:""
1430
-              this.form.fourth_start_time  =this.getTimeThree(list.third_start_time)
1431
-              this.form.fourth_end_time = this.getTimeThree(list.third_end_time)
1432
-              this.form.fourth_total_time = list.third_total_time? list.third_total_time:""
1433
-              this.form.fourth_is_check = list.third_is_check.toString()
1434
-              this.form.fourth_modifications = list.third_modifications?list.third_modifications:""
1435
-              this.form.fourth_creator = list.third_creator
1430
+              this.form.fourth_start_time  =this.getTimeThree(list.fourth_start_time)
1431
+              this.form.fourth_end_time = this.getTimeThree(list.fourth_end_time)
1432
+              this.form.fourth_total_time = list.fourth_total_time? list.fourth_total_time:""
1433
+              this.form.fourth_is_check = list.fourth_is_check.toString()
1434
+              this.form.fourth_modifications = list.fourth_modifications?list.fourth_modifications:""
1435
+              this.form.fourth_creator = list.fourth_creator
1436
 
1436
 
1437
               this.form.last_start_time = this.getTimeThree(list.last_start_time)
1437
               this.form.last_start_time = this.getTimeThree(list.last_start_time)
1438
               this.form.last_end_time = this.getTimeThree(list.last_end_time)
1438
               this.form.last_end_time = this.getTimeThree(list.last_end_time)

+ 31 - 9
src/xt_pages/dialysis/batch_print/batch_print_order_fortyOne.vue View File

1392
         return record[key] == target_value
1392
         return record[key] == target_value
1393
       }
1393
       }
1394
     },
1394
     },
1395
+    // getAge: function(val) {
1396
+    //   if (val.age == 0) {
1397
+    //     if (val.birthday == 0) {
1398
+    //       return ''
1399
+    //     }
1400
+    //     return jsGetAge(uParseTime(val.birthday, '{y}-{m}-{d}'), '-')
1401
+    //   } else {
1402
+    //     return val.age
1403
+    //   }
1404
+    // },
1395
     getAge: function(val) {
1405
     getAge: function(val) {
1396
-      if (val.age == 0) {
1397
-        if (val.birthday == 0) {
1398
-          return ''
1399
-        }
1400
-        return jsGetAge(uParseTime(val.birthday, '{y}-{m}-{d}'), '-')
1401
-      } else {
1402
-        return val.age
1403
-      }
1404
-    },
1406
+     
1407
+     if (val.id_card_no) {
1408
+       var thisLen = val.id_card_no.length
1409
+
1410
+       var birth = ''
1411
+       if (thisLen == 15) {
1412
+         birth = '19' + val.id_card_no.substr(6, 6)
1413
+       } else {
1414
+         birth = val.id_card_no.substr(6, 8)
1415
+       }
1416
+       var birthtwo =
1417
+         birth.substr(0, 4) +
1418
+         '-' +
1419
+         birth.substr(4, 2) +
1420
+         '-' +
1421
+         birth.substr(6, 2)
1422
+
1423
+       var age = jsGetAge(birthtwo, '-')
1424
+       return age
1425
+     }
1426
+   },
1405
     newAdviceGroupObject: function() {
1427
     newAdviceGroupObject: function() {
1406
       return Object.assign(
1428
       return Object.assign(
1407
         {},
1429
         {},

+ 141 - 40
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

69
               </div>
69
               </div>
70
70
71
             </div>
71
             </div>
72
-            <div class="inline_block">
73
-              门诊:
72
+            <div class="inline_block" v-if="record.receive_assessment.condition!=1">
73
+                门诊:
74
+                <div class="under_line" style="width: 30px; text-align: center">
75
+                  <check-box :checked="record.patient.source == 1"></check-box>
76
+                </div>
77
+              </div>
78
+            <div class="inline_block" v-if="record.receive_assessment.condition==1">
79
+              住院:
74
               <div class="under_line" style="width: 30px; text-align: center">
80
               <div class="under_line" style="width: 30px; text-align: center">
75
                 <check-box :checked="record.patient.source == 1"></check-box>
81
                 <check-box :checked="record.patient.source == 1"></check-box>
76
               </div>
82
               </div>
1108
                           <span v-if="record.prescription.anticoagulant == 7"
1114
                           <span v-if="record.prescription.anticoagulant == 7"
1109
                             >&nbsp;低分子肝素钠</span
1115
                             >&nbsp;低分子肝素钠</span
1110
                           >
1116
                           >
1117
+                          <span v-if="record.prescription.anticoagulant == 8"
1118
+                            >&nbsp;依诺肝素</span
1119
+                          >
1120
+                          <span v-if="record.prescription.anticoagulant == 9"
1121
+                            >&nbsp;达肝素</span
1122
+                          >
1123
+                          <span v-if="record.prescription.anticoagulant == 10"
1124
+                            >&nbsp;体外抗凝</span
1125
+                          >
1126
+                          <span v-if="record.prescription.anticoagulant == 11"
1127
+                            >&nbsp;那屈肝素</span
1128
+                          >
1129
+                          <span v-if="record.prescription.anticoagulant == 12"
1130
+                            >&nbsp;无抗凝剂</span
1131
+                          >
1132
+                          <span v-if="record.prescription.anticoagulant == 13"
1133
+                            >&nbsp;那屈肝素钙</span
1134
+                          >
1135
+                          <span v-if="record.prescription.anticoagulant == 14"
1136
+                            >&nbsp;肝素钙注射液</span
1137
+                          >
1138
+                          <span v-if="record.prescription.anticoagulant == 15"
1139
+                            >&nbsp;甲磺酸萘莫司他</span
1140
+                          >
1111
                         </div>
1141
                         </div>
1112
                       </div>
1142
                       </div>
1113
                       <div class="inline_block" style="margin-left: 20px">
1143
                       <div class="inline_block" style="margin-left: 20px">
1318
                               org_id != 9538 &&
1348
                               org_id != 9538 &&
1319
                               org_id != 10121 &&
1349
                               org_id != 10121 &&
1320
                               org_id != 9675 &&
1350
                               org_id != 9675 &&
1321
-                              org_id != 0
1351
+                              org_id != 0 &&
1352
+                              org_id!=10490
1322
                             "
1353
                             "
1323
                           >
1354
                           >
1324
                             电导度<br />(ms/cm)
1355
                             电导度<br />(ms/cm)
1334
                           <td
1365
                           <td
1335
                             width="50"
1366
                             width="50"
1336
                             v-if="
1367
                             v-if="
1337
-                              org_id == 0 || org_id ==  10469
1368
+                              org_id ==  10469
1338
                             "
1369
                             "
1339
                           >
1370
                           >
1340
                             钠浓度<br />(mmol/L)
1371
                             钠浓度<br />(mmol/L)
1341
                           </td>
1372
                           </td>
1342
-                          <td width="50" v-if="org_id != 0 && org_id != 3877 && org_id != 10449">超滤量<br />(ml)</td>
1343
-                          <td width="50" v-if="org_id ==0 || org_id ==3877 || org_id ==10449">累计超滤量<br />(ml)</td>
1373
+                          <td
1374
+                            width="50"
1375
+                            v-if="
1376
+                              org_id ==  10490 || org_id == 0
1377
+                            "
1378
+                          >
1379
+                          置换液的速度<br />(ml/h)
1380
+                          </td>
1381
+                          <td width="50" v-if="org_id != 3877 && org_id != 10449">超滤量<br />(ml)</td>
1382
+                          <td width="50" v-if="org_id ==3877 || org_id ==10449">累计超滤量<br />(ml)</td>
1344
                           <td
1383
                           <td
1345
                             v-if="
1384
                             v-if="
1346
                               record.prescription.mode_id == 2 ||
1385
                               record.prescription.mode_id == 2 ||
1351
                           >
1390
                           >
1352
                             置换量<br />(ml)
1391
                             置换量<br />(ml)
1353
                           </td>
1392
                           </td>
1354
-                          <td v-if="org_id == 3877 || org_id == 0 || org_id == 10449" width="50">滤前压(mmHg)</td>
1393
+                          <td v-if="org_id == 3877  || org_id == 10449" width="50">滤前压(mmHg)</td>
1355
                           <td
1394
                           <td
1356
                             width="50"
1395
                             width="50"
1357
                             v-if="
1396
                             v-if="
1372
                             血容量<br />(L)
1411
                             血容量<br />(L)
1373
                           </td>
1412
                           </td>
1374
 
1413
 
1414
+                          <td
1415
+                            width="50"
1416
+                            v-if="
1417
+                              org_id == 10490 || org_id == 0
1418
+                            "
1419
+                          >
1420
+                          碳酸氢钠<br />(ml)
1421
+                          </td>
1422
+
1375
                           <td width="200">病情变化及处理</td>
1423
                           <td width="200">病情变化及处理</td>
1376
                         </tr>
1424
                         </tr>
1377
 
1425
 
1446
                             }}
1494
                             }}
1447
                           </td>
1495
                           </td>
1448
 
1496
 
1449
-                          <!-- <td v-if="org_id != 10121 && org_id != 9675 && org_id != 0">
1450
-                            {{monitor_record.conductivity? monitor_record.conductivity : ""}}
1451
-                          </td> -->
1497
+                      
1452
                           <td
1498
                           <td
1453
                             v-if="
1499
                             v-if="
1454
                               org_id != 9538 &&
1500
                               org_id != 9538 &&
1455
                               org_id != 10121 &&
1501
                               org_id != 10121 &&
1456
                               org_id != 9675 && 
1502
                               org_id != 9675 && 
1457
-                              org_id!=0
1503
+                              org_id!=0 && org_id!=10490
1458
                              
1504
                              
1459
                             "
1505
                             "
1460
                           >
1506
                           >
1479
 
1525
 
1480
                           <td
1526
                           <td
1481
                             v-if="
1527
                             v-if="
1482
-                              org_id == 0 || org_id == 10469 
1528
+                              org_id == 10469 
1483
                             "
1529
                             "
1484
                           >
1530
                           >
1485
                             {{
1531
                             {{
1489
                             }}
1535
                             }}
1490
                           </td>
1536
                           </td>
1491
 
1537
 
1538
+                          <td
1539
+                            v-if="
1540
+                              org_id == 10490 || org_id == 0 
1541
+                            "
1542
+                          >
1543
+                            {{
1544
+                              monitor_record.replacement_speed
1545
+                                ? monitor_record.replacement_speed
1546
+                                : ""
1547
+                            }}
1548
+                          </td>
1549
+
1492
                           <td v-if="org_id == 9538">
1550
                           <td v-if="org_id == 9538">
1493
                             {{
1551
                             {{
1494
                               monitor_record.sodium_concentration
1552
                               monitor_record.sodium_concentration
1528
                                 : ""
1586
                                 : ""
1529
                             }}
1587
                             }}
1530
                           </td>
1588
                           </td>
1531
-                          <td v-if="org_id == 3877 || org_id == 0 || org_id == 10449">
1589
+                          <td v-if="org_id == 3877  || org_id == 10449">
1532
                             {{
1590
                             {{
1533
                               monitor_record.filter_pressure
1591
                               monitor_record.filter_pressure
1534
                                 ? monitor_record.filter_pressure
1592
                                 ? monitor_record.filter_pressure
1554
                           >
1612
                           >
1555
                             {{ monitor_record.accumulated_blood_volume }}
1613
                             {{ monitor_record.accumulated_blood_volume }}
1556
                           </td>
1614
                           </td>
1615
+                          <td
1616
+                            width="50"
1617
+                            v-if="
1618
+                              org_id == 10490 || org_id == 0
1619
+                            "
1620
+                          >
1621
+                           {{ monitor_record.dicarbonate  }}<br />
1622
+                          </td>
1557
 
1623
 
1558
                           <td style="line-height: 16px; padding: 0px">
1624
                           <td style="line-height: 16px; padding: 0px">
1559
                             <div
1625
                             <div
1604
                           v-for="(monitor_record, s) in record.monitor_records2"
1670
                           v-for="(monitor_record, s) in record.monitor_records2"
1605
                           :key="s"
1671
                           :key="s"
1606
                         >
1672
                         >
1607
-                          <td></td>
1608
-                          <td></td>
1609
-                          <td></td>
1610
-                          <td></td>
1611
-                          <td></td>
1612
-                          <td></td>
1613
-                          <td></td>
1614
-                          <td></td>
1615
-                          <td></td>
1616
-                          <td></td>
1617
-                          <td
1618
-                            v-if="
1619
-                              org_id == 9919 || org_id == 9538 || org_id == 9675
1620
-                            "
1621
-                          ></td>
1622
-                          <td v-if="org_id == 9538 || org_id == 9675"></td>
1673
+                        <td></td>
1674
+                        <td></td>
1675
+                        <td></td>
1676
+                        <td></td>
1677
+                        <td></td>
1678
+                        <td></td>
1679
+                        <td></td>
1680
+                        <td></td>
1681
+                        <td></td>
1682
+                        <td></td>
1683
+                        <td v-if="org_id == 9671 || org_id == 9919"></td>
1684
+                        <td
1685
+                          v-if="
1686
+                            prescription.mode_id == 2 ||
1687
+                            prescription.mode_id == 5 ||
1688
+                            prescription.mode_id == 12
1689
+                          "
1690
+                          width="50"
1691
+                        ></td>
1692
+                        <td v-if="org_id == 9919||org_id == 9538 || org_id == 9671"></td>
1693
+                        <td v-if="org_id == 9538"></td>
1694
+                        <td v-if="org_id == 10490 || org_id == 0"></td>
1695
+                         
1623
                           <td style="line-height: 16px; padding: 0px">
1696
                           <td style="line-height: 16px; padding: 0px">
1624
                             <div
1697
                             <div
1625
                               style="
1698
                               style="
1994
                 </div>
2067
                 </div>
1995
2068
1996
               </div>
2069
               </div>
1997
-              <div class="inline_block">
2070
+              <div class="inline_block" v-if="record.receive_assessment.condition!=1">
1998
                 门诊:
2071
                 门诊:
1999
                 <div class="under_line" style="width: 30px; text-align: center">
2072
                 <div class="under_line" style="width: 30px; text-align: center">
2000
                   <check-box :checked="record.patient.source == 1"></check-box>
2073
                   <check-box :checked="record.patient.source == 1"></check-box>
2001
                 </div>
2074
                 </div>
2002
               </div>
2075
               </div>
2076
+              <div class="inline_block" v-if="record.receive_assessment.condition==1">
2077
+                住院:
2078
+                <div class="under_line" style="width: 30px; text-align: center">
2079
+                  <check-box :checked="record.patient.source == 1"></check-box>
2080
+                </div>
2081
+              </div>
2003
               <div class="inline_block">
2082
               <div class="inline_block">
2004
                 病区:
2083
                 病区:
2005
                 <div class="under_line" style="width: 50px; text-align: center">
2084
                 <div class="under_line" style="width: 50px; text-align: center">
3439
         return record[key] == target_value;
3518
         return record[key] == target_value;
3440
       }
3519
       }
3441
     },
3520
     },
3442
-    getAge: function (val) {
3443
-      if (val.age == 0) {
3444
-        if (val.birthday == 0) {
3445
-          return "";
3446
-        }
3447
-        return jsGetAge(uParseTime(val.birthday, "{y}-{m}-{d}"), "-");
3448
-      } else {
3449
-        return val.age;
3450
-      }
3451
-    },
3521
+    // getAge: function (val) {
3522
+    //   if (val.age == 0) {
3523
+    //     if (val.birthday == 0) {
3524
+    //       return "";
3525
+    //     }
3526
+    //     return jsGetAge(uParseTime(val.birthday, "{y}-{m}-{d}"), "-");
3527
+    //   } else {
3528
+    //     return val.age;
3529
+    //   }
3530
+    // },
3531
+    getAge: function(val) {
3532
+     
3533
+     if (val.id_card_no) {
3534
+       var thisLen = val.id_card_no.length
3535
+
3536
+       var birth = ''
3537
+       if (thisLen == 15) {
3538
+         birth = '19' + val.id_card_no.substr(6, 6)
3539
+       } else {
3540
+         birth = val.id_card_no.substr(6, 8)
3541
+       }
3542
+       var birthtwo =
3543
+         birth.substr(0, 4) +
3544
+         '-' +
3545
+         birth.substr(4, 2) +
3546
+         '-' +
3547
+         birth.substr(6, 2)
3548
+
3549
+       var age = jsGetAge(birthtwo, '-')
3550
+       return age
3551
+     }
3552
+   },
3452
     newAdviceGroupObject: function () {
3553
     newAdviceGroupObject: function () {
3453
       return Object.assign(
3554
       return Object.assign(
3454
         {},
3555
         {},

+ 56 - 5
src/xt_pages/dialysis/batch_print/batch_print_order_thirteen.vue View File

200
                     </div>
200
                     </div>
201
                     <div class="inline_block" style="margin-right:30px;">
201
                     <div class="inline_block" style="margin-right:30px;">
202
                         透析液配方
202
                         透析液配方
203
-                        <div class="inline_block under_line" style="width:150px;text-align: center;">
203
+                        <div class="inline_block under_line" style="width:100px;text-align: center;">
204
                             {{ record.prescription.dialysate_formulation ? dialysateFormulationName(record.prescription.dialysate_formulation) : ''}}
204
                             {{ record.prescription.dialysate_formulation ? dialysateFormulationName(record.prescription.dialysate_formulation) : ''}}
205
                         </div>
205
                         </div>
206
                     </div>
206
                     </div>
207
+                    <div class="inline_block" style="margin-right:30px;">
208
+                      通路形成时间
209
+                      <div class="inline_block under_line" style="width:100px;text-align: left;">
210
+                        {{getTimeOne(record.assessment_before_dislysis.pathway_formation_time) }}
211
+                         
212
+                      </div>
213
+                  </div>
207
                 </div>
214
                 </div>
208
                 <div class="row">
215
                 <div class="row">
209
                     血管通路
216
                     血管通路
236
                     </div>
243
                     </div>
237
                 </div>
244
                 </div>
238
                 <div class="row">
245
                 <div class="row">
239
-                  <div class="inline_block" style="margin-right:30px;">
246
+                  <div class="inline_block" style="margin-right:10px;">
240
                       导管
247
                       导管
241
-                      <div class="inline_block under_line" style="width:200px;text-align: left;">
248
+                      <div class="inline_block under_line" style="width:900px;text-align: left;">
242
                           {{ record.assessment_before_dislysis.catheter ? record.assessment_before_dislysis.catheter : ''}}
249
                           {{ record.assessment_before_dislysis.catheter ? record.assessment_before_dislysis.catheter : ''}}
243
                       </div>
250
                       </div>
244
                   </div>
251
                   </div>
245
-                  <div class="inline_block" style="margin-right:30px;">
252
+                </div>
253
+                <div class="row">
254
+                 <div class="inline_block" style="margin-right:10px;">
246
                       内瘘
255
                       内瘘
247
-                      <div class="inline_block under_line" style="width:200px;text-align: left;">
256
+                      <div class="inline_block under_line" style="width:900px;text-align: left;">
248
                           {{ record.assessment_before_dislysis.internal_fistula ? record.assessment_before_dislysis.internal_fistula : ''}}
257
                           {{ record.assessment_before_dislysis.internal_fistula ? record.assessment_before_dislysis.internal_fistula : ''}}
249
                       </div>
258
                       </div>
250
                   </div>
259
                   </div>
251
                 </div>
260
                 </div>
261
+                <!-- <div class="row"> -->
262
+                  <!-- <div class="inline_block" style="margin-right:30px;">
263
+                    导管评估项目
264
+                      <div class="inline_block under_line" style="width:200px;text-align: left;">
265
+                          {{ record.assessment_before_dislysis.catheter_evaluation_program ? record.assessment_before_dislysis.catheter_evaluation_program : ''}}
266
+                      </div>
267
+                  </div>
268
+                  <div class="inline_block" style="margin-right:30px;">
269
+                    置管部位皮肤
270
+                      <div class="inline_block under_line" style="width:100px;text-align: left;">
271
+                          {{ record.assessment_before_dislysis.skin_site_catheterization ? record.assessment_before_dislysis.skin_site_catheterization : ''}}
272
+                      </div>
273
+                  </div>
274
+
275
+                  <div class="inline_block" style="margin-right:30px;">
276
+                    是否通畅
277
+                      <div class="inline_block under_line" style="width:100px;text-align: left;">
278
+                        <span v-if="record.assessment_before_dislysis.whether_unobstructed ==0"></span>
279
+                         <span v-if="record.assessment_before_dislysis.whether_unobstructed ==1">是</span>
280
+                         <span v-if="record.assessment_before_dislysis.whether_unobstructed ==2">否</span>
281
+                      </div>
282
+                  </div> -->
283
+                  <!-- <div class="inline_block" style="margin-right:30px;">
284
+                    留置必要
285
+                      <div class="inline_block under_line" style="width:100px;text-align: left;">
286
+                        <span v-if="record.assessment_before_dislysis.lien_necessary ==0"></span>
287
+                         <span v-if="record.assessment_before_dislysis.lien_necessary ==1">是</span>
288
+                         <span v-if="record.assessment_before_dislysis.lien_necessary ==2">否</span>
289
+                         
290
+                      </div>
291
+                  </div> -->
292
+                <!-- </div> -->
252
                 <div class="row">
293
                 <div class="row">
253
                     抗凝药物
294
                     抗凝药物
254
                     <div class="inline_block under_line" style="width:92%;text-align: left;">
295
                     <div class="inline_block under_line" style="width:92%;text-align: left;">
1010
         )
1051
         )
1011
       }
1052
       }
1012
     },
1053
     },
1054
+    getTimeOne(val) {
1055
+        if(val < 0){
1056
+          return ""
1057
+        }
1058
+        if(val == ""){
1059
+        return ""
1060
+        }else {
1061
+        return uParseTime(val, '{y}-{m}-{d}')
1062
+        }
1063
+     },
1013
     getNewAge(UUserCard) {
1064
     getNewAge(UUserCard) {
1014
       if (UUserCard != null && UUserCard != '') {
1065
       if (UUserCard != null && UUserCard != '') {
1015
         // 获取年龄
1066
         // 获取年龄

+ 3 - 1
src/xt_pages/dialysis/batch_print/batch_print_order_thirtyTwo.vue View File

72
                         <td width="10">第</td>
72
                         <td width="10">第</td>
73
                         <td width="50">
73
                         <td width="50">
74
                             <div class="under-line">
74
                             <div class="under-line">
75
-                            {{ record.patient.total_dialysis + record.patient.user_sys_before_count }}
75
+                            <!-- {{ record.patient.total_dialysis + record.patient.user_sys_before_count }} -->
76
+
77
+                             {{ record.Count }}
76
                             </div>
78
                             </div>
77
                         </td>
79
                         </td>
78
                         <td width="80">次透析</td>
80
                         <td width="80">次透析</td>

+ 5 - 0
src/xt_pages/dialysis/details/DialysisPrescription.vue View File

606
           <span class="content">{{this.prescription.treatment_remark}}</span>
606
           <span class="content">{{this.prescription.treatment_remark}}</span>
607
         </li>
607
         </li>
608
 
608
 
609
+        <li v-if="isShow('加糖')">
610
+          <label>加糖: </label>
611
+          <span class="content">{{this.prescription.chaptalization}}</span>
612
+        </li>
613
+
609
        
614
        
610
       </ul>
615
       </ul>
611
     </div>
616
     </div>

+ 14 - 5
src/xt_pages/dialysis/details/NavIgation.vue View File

131
       ref="treatmentSummary"
131
       ref="treatmentSummary"
132
       :patient="patient"
132
       :patient="patient"
133
       :treatment_summary="treatment_summary"
133
       :treatment_summary="treatment_summary"
134
+      :prescription="prescription"
135
+      :predialysis_evaluation="predialysis_evaluation"
136
+      :doctor_advices="doctor_advices"
137
+      :dialysis_order="dialysis_order"
138
+      :monitors="monitor_records"
139
+      :assessment_after_dislysis="assessment_after_dislysis"
134
     ></treatment-summary-dialog>
140
     ></treatment-summary-dialog>
135
 
141
 
136
     <doctor-advice-dialog
142
     <doctor-advice-dialog
579
       default:()=>{
585
       default:()=>{
580
         return [];
586
         return [];
581
       } 
587
       } 
588
+    },
589
+    record_date:{
590
+      type:String
582
     }
591
     }
583
   },
592
   },
584
   methods: {
593
   methods: {
668
       this.$refs.assessment_after_dislysis.show(this.assessment_after_dislysis,this.last_assessment_after_dislysis);
677
       this.$refs.assessment_after_dislysis.show(this.assessment_after_dislysis,this.last_assessment_after_dislysis);
669
     },
678
     },
670
     showDoctorAdviceDialog: function() {
679
     showDoctorAdviceDialog: function() {
671
-      console.log("!!!!!!temp_schedual",this.temp_schedual)
680
+      
672
       this.$refs.doctor_advice.show(this.his_is_open,this.is_advice_open);
681
       this.$refs.doctor_advice.show(this.his_is_open,this.is_advice_open);
673
     },
682
     },
674
     showComputerDialog: function() {
683
     showComputerDialog: function() {
678
       this.$refs.finish_dialog.show(this.dialysis_order);
687
       this.$refs.finish_dialog.show(this.dialysis_order);
679
     },
688
     },
680
     showPrescription: function() {
689
     showPrescription: function() {
681
-      console.log("prescirpiton+++++++++++",this.prescription)
690
+     
682
       this.$refs.prescription.show(this.prescription,this.schedual,this.last_dialysis_prescribe,this.his_is_open,this.is_advice_open,this.admin_users);
691
       this.$refs.prescription.show(this.prescription,this.schedual,this.last_dialysis_prescribe,this.his_is_open,this.is_advice_open,this.admin_users);
683
     },
692
     },
684
     showAccepts: function() {
693
     showAccepts: function() {
685
       this.$refs.accepts.show(this.receiver_treatment_access);
694
       this.$refs.accepts.show(this.receiver_treatment_access);
686
     },
695
     },
687
     showAssessmentBefore: function() {
696
     showAssessmentBefore: function() {
688
-      console.log(this.last_predialysis_evaluation)
689
-
690
-      this.$refs.assessmentBefore.show(this.predialysis_evaluation,this.last_dryWeight_dislysis,this.last_predialysis_evaluation,this.lastAssessment);
697
+     
698
+      console.log("透前评估进入23232323我我哦",this.record_date)
699
+      this.$refs.assessmentBefore.show(this.predialysis_evaluation,this.last_dryWeight_dislysis,this.last_predialysis_evaluation,this.lastAssessment,this.record_date);
691
     },
700
     },
692
     showDoubleCheck: function() {
701
     showDoubleCheck: function() {
693
 
702
 

+ 2 - 2
src/xt_pages/dialysis/details/assessmentAfter.vue View File

193
         <li v-if="isShow('透析中进食')">
193
         <li v-if="isShow('透析中进食')">
194
           <label>透析中进食: </label>
194
           <label>透析中进食: </label>
195
           <span class="content" >{{ this.record.dialysis_during ? this.record.dialysis_during : ""  }}</span>
195
           <span class="content" >{{ this.record.dialysis_during ? this.record.dialysis_during : ""  }}</span>
196
-          <span class="unit" v-if="this.$store.getters.xt_user.template_info.template_id != 36">{{ this.record.dialysis_during ? "ml" : "" }}</span>
197
-          <span class="unit" v-if="this.$store.getters.xt_user.template_info.template_id == 36">{{ this.record.dialysis_during ? "g" : "" }}</span>
196
+          <span class="unit" v-if="this.$store.getters.xt_user.template_info.template_id != 36 && this.$store.getters.xt_user.template_info.template_id != 6">{{ this.record.dialysis_during ? "ml" : "" }}</span>
197
+          <span class="unit" v-if="this.$store.getters.xt_user.template_info.template_id == 36 || this.$store.getters.xt_user.template_info.template_id == 6">{{ this.record.dialysis_during ? "g" : "" }}</span>
198
         </li>
198
         </li>
199
       </ul>
199
       </ul>
200
       <ul>
200
       <ul>

+ 7 - 0
src/xt_pages/dialysis/details/assessmentBefore.vue View File

421
           <span class="unit"></span>
421
           <span class="unit"></span>
422
         </li>
422
         </li>
423
 
423
 
424
+        <li v-if="isShow('透前症状')">
425
+          <label>透前症状: </label>
426
+          <span class="content">{{this.record.befor_symptoms}}</span>
427
+          <span class="unit"></span>
428
+        </li>
429
+
430
+
424
       </ul>
431
       </ul>
425
     </div>
432
     </div>
426
     <div class="note">
433
     <div class="note">

+ 5 - 5
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

29
           <el-col :span="8" v-if="isShow('实际超滤量')">
29
           <el-col :span="8" v-if="isShow('实际超滤量')">
30
             <el-form-item
30
             <el-form-item
31
               label="实际超滤量(ml): " :prop="isName('实际超滤量')" :rules="isCheckmust('实际超滤量')"
31
               label="实际超滤量(ml): " :prop="isName('实际超滤量')" :rules="isCheckmust('实际超滤量')"
32
-              v-if=" this.template_id == 6 || this.template_id == 9 || this.template_id == 10 || this.template_id == 11  || this.template_id == 17 || this.template_id == 20 || this.template_id == 21 || this.template_id == 22 || this.template_id == 23 || this.template_id == 24 || this.template_id == 26 || this.template_id == 28 || this.template_id == 27 || this.template_id == 29 || this.template_id == 30 || this.template_id == 31 || this.template_id == 32 || this.template_id == 34 || this.template_id == 36 || this.template_id == 38 || this.template_id == 43 || this.template_id == 44 || this.template_id == 47 || this.template_id == 56 || this.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10307 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10387 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10441 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410 ||  this.$store.getters.xt_user.template_info.org_id == 10485"  >
32
+              v-if=" this.template_id == 6 || this.template_id == 9 || this.template_id == 10 || this.template_id == 11  || this.template_id == 17 || this.template_id == 20 || this.template_id == 21 || this.template_id == 22 || this.template_id == 23 || this.template_id == 24 || this.template_id == 26 || this.template_id == 28 || this.template_id == 27 || this.template_id == 29 || this.template_id == 30 || this.template_id == 31 || this.template_id == 32 || this.template_id == 34 || this.template_id == 36 || this.template_id == 38 || this.template_id == 43 || this.template_id == 44 || this.template_id == 47 || this.template_id == 56 || this.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10307 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10387 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10441 || this.$store.getters.xt_user.template_info.org_id == 10445 || this.$store.getters.xt_user.template_info.org_id == 10410"  >
33
               <el-input v-model="form.actual_ultrafiltration"></el-input>
33
               <el-input v-model="form.actual_ultrafiltration"></el-input>
34
             </el-form-item>
34
             </el-form-item>
35
             <el-form-item label="实际超滤量(L): " v-else :prop="isName('实际超滤量')" :rules="isCheckmust('实际超滤量')">
35
             <el-form-item label="实际超滤量(L): " v-else :prop="isName('实际超滤量')" :rules="isCheckmust('实际超滤量')">
382
         </el-col>
382
         </el-col>
383
 
383
 
384
         <el-col :span="8" v-if="isShow('透析中进食')">
384
         <el-col :span="8" v-if="isShow('透析中进食')">
385
-          <el-form-item label="透析中进食(ml): " v-if="template_id != 36" :prop="isName('透析中进食')" :rules="isCheckmust('透析中进食')">
385
+          <el-form-item label="透析中进食(ml): " v-if="template_id != 36 && template_id!=6" :prop="isName('透析中进食')" :rules="isCheckmust('透析中进食')">
386
             <el-input v-model="form.dialysis_during"></el-input>
386
             <el-input v-model="form.dialysis_during"></el-input>
387
           </el-form-item>
387
           </el-form-item>
388
-          <el-form-item label="透析中进食(g): " v-if="template_id == 36" :prop="isName('透析中进食')" :rules="isCheckmust('透析中进食')" >
388
+          <el-form-item label="透析中进食(g): " v-if="template_id == 36 || template_id == 6" :prop="isName('透析中进食')" :rules="isCheckmust('透析中进食')" >
389
             <el-input v-model="form.dialysis_during"></el-input>
389
             <el-input v-model="form.dialysis_during"></el-input>
390
           </el-form-item>
390
           </el-form-item>
391
         </el-col>
391
         </el-col>
856
           this.form['internal_fistula_tremor_ac'] = ''
856
           this.form['internal_fistula_tremor_ac'] = ''
857
         }
857
         }
858
         if (this.assessment_after_dislysis['patient_gose'] == 0) {
858
         if (this.assessment_after_dislysis['patient_gose'] == 0) {
859
-          this.form['patient_gose'] = ''
859
+          this.form['patient_gose'] = 0
860
         }
860
         }
861
         if (this.assessment_after_dislysis['weight_after'] == 0) {
861
         if (this.assessment_after_dislysis['weight_after'] == 0) {
862
           this.form['weight_after'] = ''
862
           this.form['weight_after'] = ''
1082
           data['puncture_point_oozing_blood'] = this.form.puncture_point_oozing_blood ? parseFloat(this.form.puncture_point_oozing_blood) : 0
1082
           data['puncture_point_oozing_blood'] = this.form.puncture_point_oozing_blood ? parseFloat(this.form.puncture_point_oozing_blood) : 0
1083
           data['puncture_point_haematoma'] = this.form.puncture_point_haematoma ? parseFloat(this.form.puncture_point_haematoma) : 0
1083
           data['puncture_point_haematoma'] = this.form.puncture_point_haematoma ? parseFloat(this.form.puncture_point_haematoma) : 0
1084
           data['internal_fistula_tremor_ac'] = this.form.internal_fistula_tremor_ac ? parseFloat(this.form.internal_fistula_tremor_ac) : 0
1084
           data['internal_fistula_tremor_ac'] = this.form.internal_fistula_tremor_ac ? parseFloat(this.form.internal_fistula_tremor_ac) : 0
1085
-          data['patient_gose'] = this.form.patient_gose ? parseFloat(this.form.patient_gose) : ' '
1085
+          data['patient_gose'] = this.form.patient_gose ? parseFloat(this.form.patient_gose) : 0
1086
           data['inpatient_department'] = this.form.inpatient_department
1086
           data['inpatient_department'] = this.form.inpatient_department
1087
           data['observation_content'] = this.form.observation_content
1087
           data['observation_content'] = this.form.observation_content
1088
           data['observation_content_other'] = this.form.observation_content_other
1088
           data['observation_content_other'] = this.form.observation_content_other

+ 78 - 122
src/xt_pages/dialysis/details/dialog/DoctorAdviceDialog.vue View File

223
         :cell-class-name="adviceNameShow"
223
         :cell-class-name="adviceNameShow"
224
         :modal-append-to-body="false"
224
         :modal-append-to-body="false"
225
         highlight-current-row
225
         highlight-current-row
226
-
226
+        
227
       >
227
       >
228
       <!-- @selection-change="handleSelectionChange" -->
228
       <!-- @selection-change="handleSelectionChange" -->
229
         <!-- <el-table-column type="selection"  width="55"></el-table-column> -->
229
         <!-- <el-table-column type="selection"  width="55"></el-table-column> -->
257
             <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
257
             <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
258
               <span class="el-dropdown-link">
258
               <span class="el-dropdown-link">
259
                 &emsp;{{ getAdviceContent(scope.row, 2)}}
259
                 &emsp;{{ getAdviceContent(scope.row, 2)}}
260
+               
260
                 <i class="el-icon-arrow-down el-icon--right"></i>
261
                 <i class="el-icon-arrow-down el-icon--right"></i>
261
               </span>
262
               </span>
262
               <el-dropdown-menu slot="dropdown">
263
               <el-dropdown-menu slot="dropdown">
290
           </template>
291
           </template>
291
         </el-table-column>
292
         </el-table-column>
292
         <el-table-column
293
         <el-table-column
293
-          v-if="template_id != 6 && org_id!=10223 && org_id!=10445"
294
+          v-if="template_id != 6 && org_id!=10223 && org_id!=10445 && org_id!=0"
294
           prop="checker"
295
           prop="checker"
295
           min-width="30px"
296
           min-width="30px"
296
           align="center"
297
           align="center"
304
         </el-table-column>
305
         </el-table-column>
305
       </el-table>
306
       </el-table>
306
 
307
 
307
-
308
+     
308
 
309
 
309
       <el-table
310
       <el-table
310
         v-if="his_is_open  == 1 || is_advice_open == 1"
311
         v-if="his_is_open  == 1 || is_advice_open == 1"
359
             <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
360
             <el-dropdown trigger="click" v-if="scope.row.parent_id > 0">
360
               <span class="el-dropdown-link">
361
               <span class="el-dropdown-link">
361
                 &emsp;{{ getAdviceContent(scope.row, 2)}}
362
                 &emsp;{{ getAdviceContent(scope.row, 2)}}
363
+                 
362
                 <i class="el-icon-arrow-down el-icon--right"></i>
364
                 <i class="el-icon-arrow-down el-icon--right"></i>
363
               </span>
365
               </span>
364
               <el-dropdown-menu slot="dropdown">
366
               <el-dropdown-menu slot="dropdown">
606
       v-on:add-new-order="addNewOrder"
608
       v-on:add-new-order="addNewOrder"
607
       :admin_users="admin_users"
609
       :admin_users="admin_users"
608
     ></edit-group-advice>
610
     ></edit-group-advice>
609
-
610
-
611
-      <el-dialog
612
-          title="提示"
613
-          :visible.sync="infoDialogVisible"
614
-          width="30%">
615
-          <span>
616
-           <el-form>
617
-             <el-row>
618
-               <span>申请日期:</span>
619
-                <span>
620
-                    <el-date-picker
621
-                      type="datetime"
622
-                      format="yyyy-MM-dd HH:mm"
623
-                      value-format="yyyy-MM-dd HH:mm"
624
-                      placeholder="选择时间"
625
-                      v-model="selected_date"
626
-                  ></el-date-picker>
627
-                </span>
628
-             </el-row>
629
-             <el-row>
630
-               <span>备注:</span>
631
-                <span>
632
-                   <el-input v-model="remark" style="width:200px"></el-input>
633
-                </span>
634
-             </el-row>
635
-           </el-form>
636
-
637
-          </span>
638
-          <span slot="footer" class="dialog-footer">
639
-            <el-button @click="infoDialogVisible = false">取 消</el-button>
640
-            <el-button type="primary" @click="saveInformation">确 定</el-button>
641
-          </span>
642
-        </el-dialog>
643
   </div>
611
   </div>
644
 </template>
612
 </template>
645
 
613
 
815
         src_type:"",
783
         src_type:"",
816
         org_id:0,
784
         org_id:0,
817
         schedulePatient:{},
785
         schedulePatient:{},
818
-        infoDialogVisible:false,
819
-        selected_date:"",
820
-        remark:""
786
+        tempArrOne:[],
821
       }
787
       }
822
     },
788
     },
823
     watch: {
789
     watch: {
832
         this.form['dialysis_order_id'] = this.dialysis_order.id
798
         this.form['dialysis_order_id'] = this.dialysis_order.id
833
       },
799
       },
834
 
800
 
801
+      'doctor_advices': function() {
802
+      
803
+        this.handleSpanTempArrOne();
804
+      },
805
+     
835
     },
806
     },
836
     methods: {
807
     methods: {
808
+      handleSpanTempArrOne() {
809
+          this.tempArrOne = [];
810
+         
811
+          for (let i = 0; i < this.doctor_advices.length; i++) {
812
+            if (i === 0) {
813
+              this.tempArrOne.push(1);
814
+              this.pos = 0;
815
+            } else {
816
+              // 判断当前元素与上一个元素是否相同
817
+              if (
818
+                this.doctor_advices[i].groupno ===
819
+                this.doctor_advices[i - 1].groupno
820
+              ) {
821
+                this.tempArrOne[this.pos] += 1;
822
+                this.tempArrOne.push(0);
823
+              } else {
824
+                this.tempArrOne.push(1);
825
+                this.pos = i;
826
+              }
827
+            }
828
+          }
829
+      },
837
       handleSelectionChange(){
830
       handleSelectionChange(){
838
 
831
 
839
       },
832
       },
840
-
833
+     
834
+    
841
       //调试
835
       //调试
842
       lili(index,row){
836
       lili(index,row){
843
         // console.log("==index==",index)
837
         // console.log("==index==",index)
921
               response => {
915
               response => {
922
                 if (response.data.state == 0) {
916
                 if (response.data.state == 0) {
923
                   this.$message.error(response.data.msg);
917
                   this.$message.error(response.data.msg);
924
-                  if(response.data.code == 600000008){
925
-                     this.infoDialogVisible = true
926
-                   }
927
                   return false;
918
                   return false;
928
                 } else {
919
                 } else {
929
                   this.$notify({
920
                   this.$notify({
958
           return ''
949
           return ''
959
         }
950
         }
960
       },
951
       },
952
+     
961
       submitEditAdvice() {
953
       submitEditAdvice() {
962
         // console.log()
954
         // console.log()
963
         console.log("保存22222222222222")
955
         console.log("保存22222222222222")
983
           response => {
975
           response => {
984
             if (response.data.state == 0) {
976
             if (response.data.state == 0) {
985
               this.$message.error(response.data.msg)
977
               this.$message.error(response.data.msg)
986
-              if(response.data.code == 600000008){
987
-               this.infoDialogVisible = true
988
-              }
989
               return false
978
               return false
990
             } else {
979
             } else {
991
               this.$notify({
980
               this.$notify({
1294
         ExecDoctorAdvice(this.patient.id, this.currentRow.id, this.execTime, mode,this.currentRow.origin).then(response => {
1283
         ExecDoctorAdvice(this.patient.id, this.currentRow.id, this.execTime, mode,this.currentRow.origin).then(response => {
1295
             if (response.data.state == 0) {
1284
             if (response.data.state == 0) {
1296
               this.$message.error(response.data.msg)
1285
               this.$message.error(response.data.msg)
1297
-             if(response.data.code == 600000008){
1298
-               this.infoDialogVisible = true
1299
-             }
1300
               this.exceLoading = false
1286
               this.exceLoading = false
1301
               return false
1287
               return false
1302
             } else {
1288
             } else {
1391
             this.loading = false
1377
             this.loading = false
1392
             if (response.data.state == 0) {
1378
             if (response.data.state == 0) {
1393
               this.$message.error(response.data.msg)
1379
               this.$message.error(response.data.msg)
1394
-              if(response.data.code == 600000008){
1395
-               this.infoDialogVisible = true
1396
-              }
1397
               return false
1380
               return false
1398
             } else {
1381
             } else {
1399
               this.$notify({
1382
               this.$notify({
1667
               response => {
1650
               response => {
1668
                 if (response.data.state == 0) {
1651
                 if (response.data.state == 0) {
1669
                   this.$message.error(response.data.msg)
1652
                   this.$message.error(response.data.msg)
1670
-                  if(response.data.code == 600000008){
1671
-                    this.infoDialogVisible = true
1672
-                  }
1653
+
1673
                   this.deleLoading = false
1654
                   this.deleLoading = false
1674
                   return false
1655
                   return false
1675
                 } else {
1656
                 } else {
1841
             DeleteGroupAdvice(groupno, mode).then(response => {
1822
             DeleteGroupAdvice(groupno, mode).then(response => {
1842
               if (response.data.state == 0) {
1823
               if (response.data.state == 0) {
1843
                 this.$message.error(response.data.msg)
1824
                 this.$message.error(response.data.msg)
1844
-                if(response.data.code == 600000008){
1845
-                 this.infoDialogVisible = true
1846
-                }
1847
                 return false
1825
                 return false
1848
               } else {
1826
               } else {
1849
                 this.$notify({
1827
                 this.$notify({
1892
               this.deleLoading = false
1870
               this.deleLoading = false
1893
               if (response.data.state == 0) {
1871
               if (response.data.state == 0) {
1894
                 this.$message.error(response.data.msg)
1872
                 this.$message.error(response.data.msg)
1895
-                if(response.data.code == 600000008){
1896
-                   this.infoDialogVisible = true
1897
-                }
1898
                 return false
1873
                 return false
1899
               } else {
1874
               } else {
1900
                 this.$notify({
1875
                 this.$notify({
1936
             DeleteDoctorAdvice(this.currentRow.id, mode).then(response => {
1911
             DeleteDoctorAdvice(this.currentRow.id, mode).then(response => {
1937
               this.deleLoading = false
1912
               this.deleLoading = false
1938
               if (response.data.state == 0) {
1913
               if (response.data.state == 0) {
1939
-                 if(response.data.code == 600000008){
1940
-                  this.infoDialogVisible = true
1941
-                 }
1942
                 this.$message.error(response.data.msg)
1914
                 this.$message.error(response.data.msg)
1943
                 return false
1915
                 return false
1944
               } else {
1916
               } else {
2154
         return true
2126
         return true
2155
       }
2127
       }
2156
       ,
2128
       ,
2157
-      mergeSpan({ row, column, rowIndex, columnIndex }) {
2158
-        if (columnIndex != 2) {
2159
-          const _row = this.tempArr[rowIndex]
2160
-          const _col = _row > 0 ? 1 : 0
2161
-          return {
2162
-            rowspan: _row,
2163
-            colspan: _col
2164
-          }
2165
-        }
2166
-      }
2167
-      ,
2129
+    
2130
+      
2168
       handleSpanTempArr() {
2131
       handleSpanTempArr() {
2169
         this.tempArr = []
2132
         this.tempArr = []
2170
 
2133
 
2327
         // });
2290
         // });
2328
       },
2291
       },
2329
       objectSpanMethod({ row, column, rowIndex, columnIndex }) {
2292
       objectSpanMethod({ row, column, rowIndex, columnIndex }) {
2293
+        console.log("hhhhhhhhhh",this.tempArrOne)
2294
+        //合并单元格
2295
+        if (columnIndex === 0 || columnIndex === 1 ) {
2296
+          const _row = this.tempArrOne[rowIndex];
2297
+          const _col = _row > 0 ? 1 : 0;
2298
+          console.log("_row====",_row)
2299
+          console.log("_row----------",_col)
2300
+          return {
2301
+            rowspan: _row,
2302
+            colspan: _col
2303
+          };
2304
+        }
2305
+        // if (columnIndex === 0) {
2306
+        //   if (rowIndex % 2 === 0) {
2307
+        //     return {
2308
+        //       rowspan: 2,
2309
+        //       colspan: 1
2310
+        //     }
2311
+        //   } else {
2312
+        //     return {
2313
+        //       rowspan: 0,
2314
+        //       colspan: 0
2315
+        //     }
2316
+        //   }
2317
+        // }
2330
 
2318
 
2331
-        if (columnIndex === 0) {
2332
-          if (rowIndex % 2 === 0) {
2333
-            return {
2334
-              rowspan: 2,
2335
-              colspan: 1
2336
-            }
2337
-          } else {
2338
-            return {
2339
-              rowspan: 0,
2340
-              colspan: 0
2341
-            }
2342
-          }
2343
-        }
2344
-
2345
-        if (columnIndex === 1) {
2346
-          if (rowIndex % 2 === 0) {
2347
-            return {
2348
-              rowspan: 2,
2349
-              colspan: 1
2350
-            }
2351
-          } else {
2352
-            return {
2353
-              rowspan: 0,
2354
-              colspan: 0
2355
-            }
2356
-          }
2357
-        }
2319
+        // if (columnIndex === 1) {
2320
+        //   if (rowIndex % 2 === 0) {
2321
+        //     return {
2322
+        //       rowspan: 2,
2323
+        //       colspan: 1
2324
+        //     }
2325
+        //   } else {
2326
+        //     return {
2327
+        //       rowspan: 0,
2328
+        //       colspan: 0
2329
+        //     }
2330
+        //   }
2331
+        // }
2358
       }
2332
       }
2359
       ,
2333
       ,
2360
       GetLastOrNextDoctorAdvice(params) {
2334
       GetLastOrNextDoctorAdvice(params) {
2657
          }
2631
          }
2658
          console.log("nam e23233232322323wo",name)
2632
          console.log("nam e23233232322323wo",name)
2659
          return name
2633
          return name
2660
-      },
2661
-
2662
-     saveInformation(){
2663
-        var params = {
2664
-          selected_date:this.selected_date,
2665
-          patient_id:this.$route.query.patient_id,
2666
-          record_date:this.$route.query.date,
2667
-          module:2,
2668
-          remark:this.remark,
2669
-        }
2670
-        saveInformation(params).then(response=>{
2671
-           if(response.data.state == 1){
2672
-             var information = response.data.data.information
2673
-             this.$message.success("审核成功!")
2674
-             this.infoDialogVisible = false
2675
-           }
2676
-        })
2677
       }
2634
       }
2678
-
2679
     },
2635
     },
2680
     created() {
2636
     created() {
2681
-
2637
+     
2682
       var date = this.$route.query && this.$route.query.date
2638
       var date = this.$route.query && this.$route.query.date
2683
       this.record_date = uParseTime(date, '{y}-{m}-{d}')
2639
       this.record_date = uParseTime(date, '{y}-{m}-{d}')
2684
       this.form.advice_date = this.record_date
2640
       this.form.advice_date = this.record_date

+ 19 - 9
src/xt_pages/dialysis/details/dialog/acceptsTreatmentDialog.vue View File

1
 <template>
1
 <template>
2
+  <div>
2
   <el-dialog
3
   <el-dialog
3
     title="接诊评估"
4
     title="接诊评估"
4
     class="newDialog"
5
     class="newDialog"
433
       infoDialogVisible:false,
434
       infoDialogVisible:false,
434
       selected_date:"",
435
       selected_date:"",
435
       remark:"",
436
       remark:"",
437
+      arr:[],
438
+   
436
     };
439
     };
437
   },
440
   },
438
   methods: {
441
   methods: {
505
 
508
 
506
     handleComfirm: function (formName) {
509
     handleComfirm: function (formName) {
507
       // var arr = [];
510
       // var arr = [];
508
-      for (let i = 0; i < this.precaution_arr.length; i++) {
509
-        for (let j = 0; j < this.precautionTwo.length; j++) {
510
-          if (this.precaution_arr[i].name == this.precautionTwo[j]) {
511
-            this.arr.push(this.precaution_arr[i].id);
512
-          }
513
-        }
511
+
512
+      if(this.precaution_arr!=null){
513
+        for (let i = 0; i < this.precaution_arr.length; i++) {
514
+               for (let j = 0; j < this.precautionTwo.length; j++) {
515
+                 if (this.precaution_arr[i].name == this.precautionTwo[j]) {
516
+                   this.arr.push(this.precaution_arr[i].id);
517
+                 }
518
+               }
519
+             }
520
+         if(this.arr!=null && this.arr.length > 0){
521
+          var obj = this.arr.join(",");
522
+          this.receiveTreatmentAsses.precaution = obj;
523
+         }
524
+            
514
       }
525
       }
515
-      // this.precautionchange()
516
-      var obj = this.arr.join(",");
517
-      this.receiveTreatmentAsses.precaution = obj;
526
+
527
+
518
       let ParamsQuery = this.receiveTreatmentAsses;
528
       let ParamsQuery = this.receiveTreatmentAsses;
519
 
529
 
520
       console.log("ParamsQuery", ParamsQuery);
530
       console.log("ParamsQuery", ParamsQuery);

+ 1 - 1
src/xt_pages/dialysis/details/dialog/adviceDialog/AddGroupAdvice.vue View File

1559
         }
1559
         }
1560
       }
1560
       }
1561
       
1561
       
1562
-      if(this.$store.getters.xt_user.org.id == 9671 || this.$store.getters.xt_user.org.id == 9675 || this.$store.getters.xt_user.org.id == 10340){
1562
+      if(this.$store.getters.xt_user.org.id == 9671 || this.$store.getters.xt_user.org.id == 9675 || this.$store.getters.xt_user.org.id == 10340 || this.$store.getters.xt_user.org.id == 10517){
1563
          var date = new Date()
1563
          var date = new Date()
1564
           var year = date.getFullYear()
1564
           var year = date.getFullYear()
1565
           var month = date.getMonth() + 1
1565
           var month = date.getMonth() + 1

+ 204 - 14
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue View File

416
             </el-form-item>
416
             </el-form-item>
417
           </el-col>
417
           </el-col>
418
 
418
 
419
+        
420
+
419
           <el-col :span="8">
421
           <el-col :span="8">
420
             <el-form-item label="前次透析后症状:" :prop="isName('前次透析后症状')"
422
             <el-form-item label="前次透析后症状:" :prop="isName('前次透析后症状')"
421
               :rules="isCheckmust('前次透析后症状')" v-if="isShow('前次透析后症状')">
423
               :rules="isCheckmust('前次透析后症状')" v-if="isShow('前次透析后症状')">
624
               <el-input v-model="body_weight_before" readonly></el-input>
626
               <el-input v-model="body_weight_before" readonly></el-input>
625
             </el-form-item>
627
             </el-form-item>
626
           </el-col>
628
           </el-col>
629
+
630
+          <el-col :span="8">
631
+          
632
+            <el-form-item label="导管评估项目: " :prop="isName('导管评估项目')"
633
+              :rules="isCheckmust('导管评估项目')" v-if="isShow('导管评估项目')">
634
+              <el-input v-model="assessmentBeforeDislysis.catheter_evaluation_program" readonly
635
+                        @focus="showInnerDialog('22')"></el-input>
636
+            </el-form-item>
637
+          
638
+          </el-col>
639
+
640
+          <el-col :span="8">
641
+            <el-form-item label="置管部位皮肤:" :prop="isName('置管部位皮肤')"
642
+              :rules="isCheckmust('置管部位皮肤')" v-if="isShow('置管部位皮肤')">
643
+           
644
+              <el-input v-model="assessmentBeforeDislysis.skin_site_catheterization" readonly
645
+                        @focus="showInnerDialog('23')"></el-input>
646
+            </el-form-item>
647
+          </el-col>
627
          
648
          
649
+          <el-col :span="8">
650
+            <el-form-item label="是否通畅:" :prop="isName('是否通畅')"
651
+              :rules="isCheckmust('是否通畅')" v-if="isShow('是否通畅')">
652
+              <el-select v-model="assessmentBeforeDislysis.whether_unobstructed" @change="changeThrombus">
653
+                <el-option :key="0" label="请选择" :value="0"></el-option>
654
+                <el-option label="是" value="1"></el-option>
655
+                <el-option label="否" value="2"></el-option>
656
+              </el-select>
657
+            </el-form-item>
658
+          </el-col>
628
         
659
         
629
- 
630
-         
631
-          <el-col :span="24">
632
-            <el-form-item label="备注: " :prop="isName('备注')"
633
-              :rules="isCheckmust('备注')">
634
-              <el-input type="textarea" v-model="assessmentBeforeDislysis.remark" :rows="5"></el-input>
660
+          <el-col :span="8">
661
+            <el-form-item label="留置必要:" :prop="isName('留置必要')"
662
+              :rules="isCheckmust('留置必要')" v-if="isShow('留置必要')">
663
+              <el-select v-model="assessmentBeforeDislysis.lien_necessary" @change="changeThrombus">
664
+                <el-option :key="0" label="请选择" :value="0"></el-option>
665
+                <el-option label="是" value="1"></el-option>
666
+                <el-option label="否" value="2"></el-option>
667
+              </el-select>
668
+            </el-form-item>
669
+          </el-col>
670
+
671
+          <el-col :span="8">
672
+            <el-form-item label="通路形成时间:" :prop="isName('通路形成时间')"
673
+              :rules="isCheckmust('通路形成时间')" v-if="isShow('通路形成时间')">
674
+              <el-date-picker
675
+              v-model="assessmentBeforeDislysis.pathway_formation_time"
676
+              type="date"
677
+              style="width:200px"
678
+              format="yyyy-MM-dd"
679
+              value-format="yyyy-MM-dd"
680
+              placeholder="通路形成时间">
681
+              </el-date-picker>
635
             </el-form-item>
682
             </el-form-item>
636
           </el-col>
683
           </el-col>
637
          
684
          
638
-      
685
+        
639
         </el-row>
686
         </el-row>
687
+        <el-row :gutter="20">
688
+          <el-col :span="24" v-if="isShow('透前症状')">
689
+              <el-form-item
690
+                label="透前症状:"
691
+                :prop="isName('透前症状')"
692
+                :rules="isCheckmust('透前症状')"
693
+              >
694
+                <el-select @change="dialysisSummarySelectChange" v-model="value2">
695
+                  <el-option
696
+                    v-for="(item, index) in summary"
697
+                    :label="item.text"
698
+                    :value="item.value"
699
+                    :key="index"
700
+                  ></el-option>
701
+                </el-select>
702
+              </el-form-item>
703
+            </el-col>
704
+            <el-col v-if="isShow('透前症状')">
705
+              <el-form-item
706
+                :prop="isName('透前症状')"
707
+                :rules="isCheckmust('透前症状')"
708
+              >
709
+                <el-input
710
+                  type="textarea"
711
+                  v-model="assessmentBeforeDislysis.befor_symptoms"
712
+                  :rows="4"
713
+                ></el-input>
714
+              </el-form-item>
715
+            </el-col>
716
+          
717
+              
718
+            
719
+              <el-col :span="24">
720
+                <el-form-item label="备注: " :prop="isName('备注')"
721
+                  :rules="isCheckmust('备注')">
722
+                  <el-input type="textarea" v-model="assessmentBeforeDislysis.remark" :rows="5"></el-input>
723
+                </el-form-item>
724
+              </el-col>
725
+            
726
+          
727
+            </el-row>
640
 
728
 
641
 
729
 
642
       </el-form>
730
       </el-form>
748
   import { parseTime } from '@/utils'
836
   import { parseTime } from '@/utils'
749
 
837
 
750
   import request from '@/utils/request'
838
   import request from '@/utils/request'
751
-
839
+  const moment = require('moment')
752
   export default {
840
   export default {
753
     components: {
841
     components: {
754
       multiSelectBox
842
       multiSelectBox
866
           age:"",
954
           age:"",
867
           his_department:"",
955
           his_department:"",
868
           his_bed:"",
956
           his_bed:"",
869
-          point_puncture:""
957
+          point_puncture:"",
958
+          catheter_evaluation_program:"",
959
+          skin_site_catheterization:"",
960
+          pathway_formation_time:"",
961
+          lien_necessary:"",
962
+          befor_symptoms:"",
870
         },
963
         },
871
 
964
 
872
         InnerDialogProps: {
965
         InnerDialogProps: {
887
         point_punctures:[],
980
         point_punctures:[],
888
         infoDialogVisible:false,
981
         infoDialogVisible:false,
889
         selected_date:"",
982
         selected_date:"",
890
-        remark:""
891
-
983
+        remark:"",
984
+        catheter_evaluation_program_list:[],
985
+        skin_site_catheterization_list:[],
986
+        summary:[],
987
+        value2:""
892
       }
988
       }
893
     },
989
     },
894
     props: {
990
     props: {
994
         return false
1090
         return false
995
       },
1091
       },
996
 
1092
 
997
-      show(assessment, lastDryWeightDislysis,last_predialysis_evaluation) {
1093
+      show(assessment, lastDryWeightDislysis,last_predialysis_evaluation,lastAssessment,record_date) {
998
         console.log("dryWeightList",this.dryWeightList)
1094
         console.log("dryWeightList",this.dryWeightList)
999
         console.log("doclist",this.docList)
1095
         console.log("doclist",this.docList)
1000
         let filedList = store.getters.xt_user.fileds;
1096
         let filedList = store.getters.xt_user.fileds;
1001
         console.log(filedList,'filedList')
1097
         console.log(filedList,'filedList')
1002
         this.lastPredialysisEvaluation = last_predialysis_evaluation
1098
         this.lastPredialysisEvaluation = last_predialysis_evaluation
1003
         console.log("获取上次数据",this.lastPredialysisEvaluation, this.$store.getters.xt_user.org.id )
1099
         console.log("获取上次数据",this.lastPredialysisEvaluation, this.$store.getters.xt_user.org.id )
1100
+
1101
+        if(record_date!=null && record_date!=undefined){
1102
+           this.record_date = record_date
1103
+        }
1104
+        console.log("日期23333333333我",this.record_date)
1004
         if(this.lastPredialysisEvaluation != null) {
1105
         if(this.lastPredialysisEvaluation != null) {
1005
         // if(this.lastPredialysisEvaluation.remark == "" && this.$store.getters.xt_user.org.id == 10307){
1106
         // if(this.lastPredialysisEvaluation.remark == "" && this.$store.getters.xt_user.org.id == 10307){
1006
         //     console.log("2o2o3232o23o2o3o23")
1107
         //     console.log("2o2o3232o23o2o3o23")
1042
          
1143
          
1043
         }
1144
         }
1044
 
1145
 
1146
+        this.assessmentBeforeDislysis.pathway_formation_time = moment(new Date()).format('YYYY-MM-DD')
1147
+        console.log(" this.assessmentBeforeDislysis.pathway_formation_time", moment(new Date()).format('YYYY-MM-DD'))
1148
+        console.log("hhahhahahah",assessment)
1149
+        if(assessment!=null){
1150
+          this.assessmentBeforeDislysis.pathway_formation_time =  this.getTimeOne(assessment.pathway_formation_time)
1151
+          if(assessment.whether_unobstructed >0){
1152
+            this.assessmentBeforeDislysis.whether_unobstructed = assessment.whether_unobstructed.toString()
1153
+          } 
1154
+          if(assessment.lien_necessary>0){
1155
+            this.assessmentBeforeDislysis.lien_necessary = assessment.lien_necessary.toString()
1156
+          }
1157
+        }
1158
+      
1159
+
1160
+        
1161
+         
1162
+        
1163
+
1045
 
1164
 
1046
         this.assessment = assessment
1165
         this.assessment = assessment
1047
         this.getPermission()
1166
         this.getPermission()
1313
             this.InnerDialogProps.isShowTextArea = false
1432
             this.InnerDialogProps.isShowTextArea = false
1314
 
1433
 
1315
             break
1434
             break
1435
+
1436
+            case '22': // 导管评估项目
1437
+
1438
+              this.InnerDialogProps.values = this.catheter_evaluation_program_list
1439
+              this.InnerDialogProps.titles = '导管评估项目'
1440
+              this.InnerDialogProps.type = 'catheter_evaluation_program'
1441
+              this.InnerDialogProps.selected = this.assessmentBeforeDislysis.catheter_evaluation_program
1442
+              this.InnerDialogProps.isShowTextArea = false
1443
+
1444
+            break
1445
+
1446
+            case '23': // 置管部位皮肤
1447
+
1448
+              this.InnerDialogProps.values = this.skin_site_catheterization_list
1449
+              this.InnerDialogProps.titles = '置管部位皮肤'
1450
+              this.InnerDialogProps.type = 'skin_site_catheterization'
1451
+              this.InnerDialogProps.selected = this.assessmentBeforeDislysis.skin_site_catheterization
1452
+              this.InnerDialogProps.isShowTextArea = false
1453
+
1454
+            break
1316
          
1455
          
1317
         }
1456
         }
1318
       },
1457
       },
1386
            case 'point_puncture':
1525
            case 'point_puncture':
1387
             this.assessmentBeforeDislysis.point_puncture = val.value.join(',')
1526
             this.assessmentBeforeDislysis.point_puncture = val.value.join(',')
1388
             break
1527
             break
1528
+           case 'catheter_evaluation_program':
1529
+            this.assessmentBeforeDislysis.catheter_evaluation_program = val.value.join(',')
1530
+            break
1531
+          case 'skin_site_catheterization':
1532
+            this.assessmentBeforeDislysis.skin_site_catheterization = val.value.join(',')
1533
+            break
1534
+            
1389
         }
1535
         }
1390
       },
1536
       },
1391
       innerDialogCancle: function() {
1537
       innerDialogCancle: function() {
1392
         this.InnerDialogProps.visibility = false
1538
         this.InnerDialogProps.visibility = false
1393
       }, 
1539
       }, 
1394
       handleComfirm(formName) {
1540
       handleComfirm(formName) {
1541
+        console.log("提交日期",this.record_date)
1395
         var arr = this.assessmentBeforeDislysis
1542
         var arr = this.assessmentBeforeDislysis
1396
         for (let i = 0; i < this.machineType.length; i++) {
1543
         for (let i = 0; i < this.machineType.length; i++) {
1397
           if (arr.machine_type == this.machineType[i].id) {
1544
           if (arr.machine_type == this.machineType[i].id) {
1420
           }
1567
           }
1421
         }
1568
         }
1422
          console.log("params",ParamsQuery)
1569
          console.log("params",ParamsQuery)
1570
+
1571
+         ParamsQuery.whether_unobstructed = parseInt(ParamsQuery.whether_unobstructed)
1572
+         ParamsQuery.lien_necessary =  parseInt(ParamsQuery.lien_necessary)
1423
          
1573
          
1424
         postAssessmentBeforeDislysis(ParamsQuery).then(response => {
1574
         postAssessmentBeforeDislysis(ParamsQuery).then(response => {
1425
           
1575
           
1579
              this.infoDialogVisible = false
1729
              this.infoDialogVisible = false
1580
            }
1730
            }
1581
         })
1731
         })
1732
+      },
1733
+      getTimeOne(val) {
1734
+        if(val == ""){
1735
+        return ""
1736
+        }else {
1737
+        return uParseTime(val, '{y}-{m}-{d}')
1738
+        }
1739
+     },
1740
+     dialysisSummarySelectChange: function (values) {
1741
+   
1742
+      if (this.assessmentBeforeDislysis.befor_symptoms == "") {
1743
+        this.assessmentBeforeDislysis.befor_symptoms = values;
1744
+      } else {
1745
+       
1746
+        if (this.assessmentBeforeDislysis.befor_symptoms.indexOf(values) == -1) {
1747
+          if (
1748
+            this.assessmentBeforeDislysis.befor_symptoms
1749
+              .charAt(this.assessmentBeforeDislysis.befor_symptoms.length - 1)
1750
+              .indexOf("。") == -1
1751
+          ) {
1752
+            this.assessmentBeforeDislysis.befor_symptoms =
1753
+            this.assessmentBeforeDislysis.befor_symptoms+ "," + values;
1754
+          } else {
1755
+            this.assessmentBeforeDislysis.befor_symptoms =
1756
+            this.assessmentBeforeDislysis.befor_symptoms+ "," + values;
1757
+            this.assessmentBeforeDislysis.befor_symptoms =
1758
+            this.assessmentBeforeDislysis.befor_symptoms + values;
1759
+          }
1760
+        }
1582
       }
1761
       }
1762
+    },
1583
       
1763
       
1584
     },
1764
     },
1585
     created() {
1765
     created() {
1615
       console.log("针眼",this.pinholings)
1795
       console.log("针眼",this.pinholings)
1616
       this.catheter_maintenancelist = getDataConfig('hemodialysis','catheter_maintenance')
1796
       this.catheter_maintenancelist = getDataConfig('hemodialysis','catheter_maintenance')
1617
       console.log("导管维护",this.catheter_maintenancelist)
1797
       console.log("导管维护",this.catheter_maintenancelist)
1798
+
1799
+      this.catheter_evaluation_program_list = getDataConfig('hemodialysis','catheter_evaluation_program')
1800
+
1801
+      this.skin_site_catheterization_list = getDataConfig('hemodialysis','skin_site_catheterization')
1618
        
1802
        
1619
       console.log("predialysis_evaluation2332323323222323",this.predialysis_evaluation)
1803
       console.log("predialysis_evaluation2332323323222323",this.predialysis_evaluation)
1620
 
1804
 
1621
       this.point_punctures = getDataConfig('hemodialysis','point_puncture')
1805
       this.point_punctures = getDataConfig('hemodialysis','point_puncture')
1806
+
1807
+      this.summary = getDataConfig("befor_symptoms", "befor_symptoms");
1808
+      
1809
+      console.log("hhh32h323h23h23h23h23h23h",getDataConfig("befor_symptoms", "befor_symptoms"))
1810
+      
1622
       // this.weight_adjust.weight = this.dry_weight.dry_weight
1811
       // this.weight_adjust.weight = this.dry_weight.dry_weight
1623
 
1812
 
1624
       // if(this.predialysis_evaluation.id == 0){
1813
       // if(this.predialysis_evaluation.id == 0){
1639
 
1828
 
1640
       },
1829
       },
1641
       'predialysis_evaluation.id': function() {
1830
       'predialysis_evaluation.id': function() {
1642
-         
1831
+        console.log("hhahahahhaah",this.predialysis_evaluation)
1643
        if(this.predialysis_evaluation.thromubus_type == 1){
1832
        if(this.predialysis_evaluation.thromubus_type == 1){
1644
              this.predialysis_evaluation.thromubus_type = this.predialysis_evaluation.thromubus_type.toString()
1833
              this.predialysis_evaluation.thromubus_type = this.predialysis_evaluation.thromubus_type.toString()
1645
              this.thrombuShow = true
1834
              this.thrombuShow = true
1646
         }
1835
         }
1647
-
1836
+       
1648
         if (this.predialysis_evaluation.id > 0) {
1837
         if (this.predialysis_evaluation.id > 0) {
1649
           for (var index in this.assessmentBeforeDislysis) {
1838
           for (var index in this.assessmentBeforeDislysis) {
1650
             this.assessmentBeforeDislysis[index] = this.predialysis_evaluation[index]
1839
             this.assessmentBeforeDislysis[index] = this.predialysis_evaluation[index]
1693
           if (this.predialysis_evaluation['pulse_frequency'] == 0) {
1882
           if (this.predialysis_evaluation['pulse_frequency'] == 0) {
1694
             this.assessmentBeforeDislysis['pulse_frequency'] = ''
1883
             this.assessmentBeforeDislysis['pulse_frequency'] = ''
1695
           }
1884
           }
1885
+          
1696
         }
1886
         }
1697
       },
1887
       },
1698
       'assessmentBeforeDislysis.weight_before': {
1888
       'assessmentBeforeDislysis.weight_before': {

+ 78 - 58
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

10
         >
10
         >
11
             <el-button style="position: absolute;left: 12%;top: 2%" @click="handlePatientInfo">{{ patient.name }}</el-button>
11
             <el-button style="position: absolute;left: 12%;top: 2%" @click="handlePatientInfo">{{ patient.name }}</el-button>
12
             <span style="position: absolute;left: 22%;top: 3%">
12
             <span style="position: absolute;left: 22%;top: 3%">
13
-              透前体重: --kg
13
+              透前体重:{{predialysis&&predialysis.weight_before?predialysis.weight_before:"" }} kg
14
             </span>
14
             </span>
15
             <span style="position: absolute;left: 35%;top: 3%">
15
             <span style="position: absolute;left: 35%;top: 3%">
16
-              干体重:--kg
16
+              干体重:{{predialysis&&predialysis.dry_weight?predialysis.dry_weight:""}}kg
17
             </span>
17
             </span>
18
+            <!-- <span style="position: absolute;left: 48%;top: 3%">
19
+              衣物重:{{predialysis&&predialysis.additional_weight?predialysis.additional_weight:""}}kg
20
+            </span> -->
18
             <span style="position: absolute;left: 48%;top: 3%">
21
             <span style="position: absolute;left: 48%;top: 3%">
19
-              衣物重:--kg
22
+              上次透后体重:{{last_record&&last_record.weight_after?last_record.weight_after:""}}kg
20
             </span>
23
             </span>
21
             <div class="warnTxt" v-if="showTxt != ''">{{ showTxt }}</div>
24
             <div class="warnTxt" v-if="showTxt != ''">{{ showTxt }}</div>
22
             <el-form
25
             <el-form
137
                         </el-form-item>
140
                         </el-form-item>
138
                     </el-col>
141
                     </el-col>
139
 
142
 
143
+                    <el-col :span="8"
144
+                            v-if="isShows('加糖')">
145
+                        <el-form-item label="加糖:" prop="prescription_water" :rules="isCheckmust('加糖')">
146
+                            <el-input v-model="dialysisPrescription.chaptalization"
147
+                            ></el-input>
148
+                        </el-form-item>
149
+                    </el-col>
150
+
140
                    <el-col :span="8" v-if="isShows('带水上机')">
151
                    <el-col :span="8" v-if="isShows('带水上机')">
141
                         <el-form-item label="带水上机:" prop="water_machine" :rules="isCheckmust('带水上机')">
152
                         <el-form-item label="带水上机:" prop="water_machine" :rules="isCheckmust('带水上机')">
142
                            <el-select v-model="dialysisPrescription.water_machine">
153
                            <el-select v-model="dialysisPrescription.water_machine">
1627
           sodium_bicarbonate_flow:"",
1638
           sodium_bicarbonate_flow:"",
1628
           prescription_water:"",
1639
           prescription_water:"",
1629
           dialysis_strainer:"",
1640
           dialysis_strainer:"",
1641
+          chaptalization:"",
1630
         },
1642
         },
1631
 
1643
 
1632
         anticoagulant: {
1644
         anticoagulant: {
2427
           if (minites < 10) {
2439
           if (minites < 10) {
2428
             minites = '0' + minites
2440
             minites = '0' + minites
2429
           }
2441
           }
2430
-          if (this.$store.getters.xt_user.org.id == 10016 || this.$store.getters.xt_user.org.id == 10121 || this.$store.getters.xt_user.org.id == 4 || this.$store.getters.xt_user.org.id == 10013 || this.$store.getters.xt_user.org.id == 10014 ) {
2442
+          if (this.$store.getters.xt_user.org.id == 10016 || this.$store.getters.xt_user.org.id == 10121 || this.$store.getters.xt_user.org.id == 4 || this.$store.getters.xt_user.org.id == 10013 || this.$store.getters.xt_user.org.id == 10014 ||  this.$store.getters.xt_user.org.id == 9970) {
2431
             this.start_time = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
2443
             this.start_time = year + '-' + month + '-' + day + ' ' + hours + ':' + minites
2432
           }else if(this.$store.getters.xt_user.org.id == 10234 || this.$store.getters.xt_user.org.id == 9990 || this.$store.getters.xt_user.org.id==10432){
2444
           }else if(this.$store.getters.xt_user.org.id == 10234 || this.$store.getters.xt_user.org.id == 9990 || this.$store.getters.xt_user.org.id==10432){
2433
             if (schedual.schedule_type == 1) {
2445
             if (schedual.schedule_type == 1) {
2485
             } else if (schedual.schedule_type == 3) {
2497
             } else if (schedual.schedule_type == 3) {
2486
               this.start_time = year + '-' + month + '-' + day + ' ' + '15:00'
2498
               this.start_time = year + '-' + month + '-' + day + ' ' + '15:00'
2487
             }
2499
             }
2500
+           }else if(this.$store.getters.xt_user.org.id == 10517){
2501
+              if (schedual.schedule_type == 1) {
2502
+              this.start_time = year + '-' + month + '-' + day + ' ' + '7:00'
2503
+            } else if (schedual.schedule_type == 2) {
2504
+              this.start_time = year + '-' + month + '-' + day + ' ' + '11:00'
2505
+            } else if (schedual.schedule_type == 3) {
2506
+              this.start_time = year + '-' + month + '-' + day + ' ' + '15:00'
2507
+            }
2488
            } else {
2508
            } else {
2489
             if (schedual.schedule_type == 1) {
2509
             if (schedual.schedule_type == 1) {
2490
               this.start_time = year + '-' + month + '-' + day + ' ' + '07:00'
2510
               this.start_time = year + '-' + month + '-' + day + ' ' + '07:00'
2703
               this.dialysisPrescription.anticoagulant_shouji = '0'
2723
               this.dialysisPrescription.anticoagulant_shouji = '0'
2704
               this.dialysisPrescription.anticoagulant_zongliang = '0'
2724
               this.dialysisPrescription.anticoagulant_zongliang = '0'
2705
             }
2725
             }
2706
-            if (this.$store.getters.xt_user.template_info.template_id == 6) {
2707
-              if (this.dialysisPrescription.mode_id == 2) {
2708
-                if (
2709
-                  this.dialysisPrescription.displace_liqui_part == 0 ||
2710
-                  this.dialysisPrescription.displace_liqui_part == -2 ||
2711
-                  this.dialysisPrescription.displace_liqui_value == 0 ||
2712
-                  this.dialysisPrescription.displace_liqui_value == ''
2713
-                  || this.dialysisPrescription.replacement_total == 0 ||
2714
-                  this.dialysisPrescription.replacement_total == '' ||
2715
-                  this.dialysisPrescription.displace_speed == 0 ||
2716
-                  this.dialysisPrescription.displace_speed == ''
2717
-                ) {
2718
-                  this.$message.error('HDF模式下置换液和置换液总量不能为空!')
2719
-                  return
2720
-                }
2721
-              }
2722
-
2723
-            }
2726
+            // if (this.$store.getters.xt_user.template_info.template_id == 6) {
2727
+            //   if (this.dialysisPrescription.mode_id == 2) {
2728
+            //     if (
2729
+            //       this.dialysisPrescription.displace_liqui_part == 0 ||
2730
+            //       this.dialysisPrescription.displace_liqui_part == -2 ||
2731
+            //       this.dialysisPrescription.displace_liqui_value == 0 ||
2732
+            //       this.dialysisPrescription.displace_liqui_value == ''
2733
+            //       || this.dialysisPrescription.replacement_total == 0 ||
2734
+            //       this.dialysisPrescription.replacement_total == '' ||
2735
+            //       this.dialysisPrescription.displace_speed == 0 ||
2736
+            //       this.dialysisPrescription.displace_speed == ''
2737
+            //     ) {
2738
+            //       this.$message.error('HDF模式下置换液和置换液总量不能为空!')
2739
+            //       return
2740
+            //     }
2741
+            //   }
2742
+
2743
+            // }
2724
             if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12){
2744
             if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12){
2725
               this.dialysisPrescription.displace_liqui_part = 0
2745
               this.dialysisPrescription.displace_liqui_part = 0
2726
               this.dialysisPrescription.displace_liqui_value = 0
2746
               this.dialysisPrescription.displace_liqui_value = 0
3212
                 this.dialysisPrescription.anticoagulant_shouji = '0'
3232
                 this.dialysisPrescription.anticoagulant_shouji = '0'
3213
                 this.dialysisPrescription.anticoagulant_zongliang = '0'
3233
                 this.dialysisPrescription.anticoagulant_zongliang = '0'
3214
               }
3234
               }
3215
-              if (this.$store.getters.xt_user.template_info.template_id == 6) {
3216
-                if (this.dialysisPrescription.mode_id == 2) {
3217
-                  if (
3218
-                    this.dialysisPrescription.displace_liqui_part == 0 ||
3219
-                    this.dialysisPrescription.displace_liqui_part == -2 ||
3220
-                    this.dialysisPrescription.displace_liqui_value == 0 ||
3221
-                    this.dialysisPrescription.displace_liqui_value == ''
3222
-                    || this.dialysisPrescription.replacement_total == 0 ||
3223
-                    this.dialysisPrescription.replacement_total == ''||
3224
-                    this.dialysisPrescription.displace_speed == 0 ||
3225
-                    this.dialysisPrescription.displace_speed == ''
3226
-                  ) {
3227
-                    this.$message.error('HDF模式下置换液和置换液总量不能为空!')
3228
-                    return
3229
-                  }
3230
-                }
3231
-                if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12){
3232
-                  this.dialysisPrescription.displace_liqui_part == 0
3233
-                  this.dialysisPrescription.displace_liqui_value == 0
3234
-                  this.dialysisPrescription.replacement_total == 0
3235
-                  this.dialysisPrescription.displace_speed == 0
3236
-                  console.log('this.dialysisPrescription.displace_liqui_part',this.dialysisPrescription.displace_liqui_part);
3237
-                  console.log('this.dialysisPrescription.replacement_total',this.dialysisPrescription.replacement_total);
3238
-                  // this.dialysisPrescription.displace_liqui_part = 0
3239
-                  // this.dialysisPrescription.displace_liqui_value = 0
3240
-                  // this.dialysisPrescription.replacement_total = 0
3241
-                  // this.dialysisPrescription.displace_speed = 0
3242
-                }
3243
-              }
3235
+              // if (this.$store.getters.xt_user.template_info.template_id == 6) {
3236
+              //   if (this.dialysisPrescription.mode_id == 2) {
3237
+              //     if (
3238
+              //       this.dialysisPrescription.displace_liqui_part == 0 ||
3239
+              //       this.dialysisPrescription.displace_liqui_part == -2 ||
3240
+              //       this.dialysisPrescription.displace_liqui_value == 0 ||
3241
+              //       this.dialysisPrescription.displace_liqui_value == ''
3242
+              //       || this.dialysisPrescription.replacement_total == 0 ||
3243
+              //       this.dialysisPrescription.replacement_total == ''||
3244
+              //       this.dialysisPrescription.displace_speed == 0 ||
3245
+              //       this.dialysisPrescription.displace_speed == ''
3246
+              //     ) {
3247
+              //       this.$message.error('HDF模式下置换液和置换液总量不能为空!')
3248
+              //       return
3249
+              //     }
3250
+              //   }
3251
+              //   if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12){
3252
+              //     this.dialysisPrescription.displace_liqui_part == 0
3253
+              //     this.dialysisPrescription.displace_liqui_value == 0
3254
+              //     this.dialysisPrescription.replacement_total == 0
3255
+              //     this.dialysisPrescription.displace_speed == 0
3256
+              //     console.log('this.dialysisPrescription.displace_liqui_part',this.dialysisPrescription.displace_liqui_part);
3257
+              //     console.log('this.dialysisPrescription.replacement_total',this.dialysisPrescription.replacement_total);
3258
+              //     // this.dialysisPrescription.displace_liqui_part = 0
3259
+              //     // this.dialysisPrescription.displace_liqui_value = 0
3260
+              //     // this.dialysisPrescription.replacement_total = 0
3261
+              //     // this.dialysisPrescription.displace_speed = 0
3262
+              //   }
3263
+              // }
3244
 
3264
 
3245
           this.is_pre = 2
3265
           this.is_pre = 2
3246
 
3266
 
3601
                             advice_doctor: this.waitUploadAdvices[0].advice_doctor,
3621
                             advice_doctor: this.waitUploadAdvices[0].advice_doctor,
3602
                             advice_type: this.waitUploadAdvices[0].advice_type,
3622
                             advice_type: this.waitUploadAdvices[0].advice_type,
3603
                             parent_id: this.patient_id,
3623
                             parent_id: this.patient_id,
3604
-                            // start_time: uParseTime(this.$route.query.date, '{y}-{m}-{d} {h}{i}'),
3605
-                            start_time:
3606
-                              uParseTime(this.$route.query.date, '{y}-{m}-{d}') +
3607
-                              ' ' +
3608
-                              hour +
3609
-                              ':' +
3610
-                              minute,
3624
+                            start_time: uParseTime(this.$route.query.date, '{y}-{m}-{d} {h}{i}'),
3625
+                            // start_time:
3626
+                            //   uParseTime(this.$route.query.date, '{y}-{m}-{d}') +
3627
+                            //   ' ' +
3628
+                            //   hour +
3629
+                            //   ':' +
3630
+                            //   minute,
3611
 
3631
 
3612
                             remark: ''
3632
                             remark: ''
3613
                           }
3633
                           }

+ 4 - 1
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue View File

536
               ((template_id == 6 &&
536
               ((template_id == 6 &&
537
                 org_id != 9919 &&
537
                 org_id != 9919 &&
538
                 org_id != 10191 &&
538
                 org_id != 10191 &&
539
+                org_id!=10478 &&
539
                 template_id != 43 &&
540
                 template_id != 43 &&
540
                 template_id != 47) ||
541
                 template_id != 47) ||
541
                 org_id == 9779 ||
542
                 org_id == 9779 ||
568
             width="100"
569
             width="100"
569
             v-if="
570
             v-if="
570
               isShow('置换量') &&
571
               isShow('置换量') &&
571
-              (template_id != 6 || org_id == 9919 || org_id == 10191) &&
572
+              (template_id != 6 || org_id == 9919 || org_id == 10191 || org_id == 10478) &&
572
               template_id != 9779 &&
573
               template_id != 9779 &&
573
               template_id != 11 &&
574
               template_id != 11 &&
574
               template_id != 20 &&
575
               template_id != 20 &&
2403
         this.form.filter_pressure = monitor.filter_pressure
2404
         this.form.filter_pressure = monitor.filter_pressure
2404
         ? monitor.filter_pressure
2405
         ? monitor.filter_pressure
2405
         : "";
2406
         : "";
2407
+        this.form.replacement_speed = monitor.replacement_speed?monitor.replacement_speed:""
2408
+        this.form.dicarbonate = monitor.dicarbonate?monitor.dicarbonate:""
2406
         // 设置三个下拉框的值,直接调用事件偷懒
2409
         // 设置三个下拉框的值,直接调用事件偷懒
2407
         this.symptomTextareaBlur();
2410
         this.symptomTextareaBlur();
2408
         this.disposeTextareaBlur();
2411
         this.disposeTextareaBlur();

+ 259 - 2
src/xt_pages/dialysis/details/dialog/treatmentSummaryDialog.vue View File

59
           </el-form-item>
59
           </el-form-item>
60
         </el-col>
60
         </el-col>
61
       </el-row>
61
       </el-row>
62
+      <el-button type="primary" size="small" @click="autoClick" style="margin-top: 5px;margin-bottom: 5px;" v-if="org_id ==9671 || org_id==10440 || org_id == 10495">自动生成</el-button>
62
       <el-row :gutter="20">
63
       <el-row :gutter="20">
64
+
63
         <el-col v-if="isShow('透析小结')">
65
         <el-col v-if="isShow('透析小结')">
64
           <el-form-item
66
           <el-form-item
65
             :prop="isName('透析小结')"
67
             :prop="isName('透析小结')"
219
         return { id: 0 };
221
         return { id: 0 };
220
       },
222
       },
221
     },
223
     },
224
+    prescription:{
225
+      type:Object,
226
+      default: () => {
227
+        return { id: 0 };
228
+      },
229
+    },
230
+    predialysis_evaluation:{
231
+      type:Object,
232
+      default: () => {
233
+        return { id: 0 };
234
+      },
235
+    },
236
+    doctor_advices:{
237
+      type:Array,
238
+      default: () => {
239
+        return { id: 0 };
240
+      },
241
+    },
242
+    dialysis_order:{
243
+      type:Object,
244
+      default: () => {
245
+        return { id: 0 };
246
+      },
247
+    },
248
+    monitors:{
249
+      type:Array,
250
+      default: () => {
251
+        return { id: 0 };
252
+      },
253
+    },
254
+    assessment_after_dislysis:{
255
+      type:Object,
256
+      default: () => {
257
+        return { id: 0 };
258
+      },
259
+    }
222
   },
260
   },
223
   data() {
261
   data() {
224
     return {
262
     return {
254
           return time.getTime() > Date.now()
292
           return time.getTime() > Date.now()
255
         }
293
         }
256
       },
294
       },
257
-      remark:""
295
+      remark:"",
296
+      org_id:0,
258
     };
297
     };
259
   },
298
   },
260
   methods: {
299
   methods: {
497
              this.infoDialogVisible = false
536
              this.infoDialogVisible = false
498
            }
537
            }
499
         })
538
         })
500
-     }
539
+     },
540
+     autoClick(){
541
+      var str_one = ""
542
+      if(this.dialysis_order!=null){
543
+        if(this.dialysis_order.puncture_nurse_id >0){
544
+          str_one = "护士穿刺成功!"
545
+        }
546
+      }
547
+    
548
+      var total =0 
549
+      if(this.predialysis_evaluation!=null){
550
+        total = (this.predialysis_evaluation.weight_before - this.predialysis_evaluation.dry_weight).toFixed(1)
551
+      }
552
+  
553
+
554
+      var monitor_one =[]
555
+      var monitor_two = []
556
+      var monitor_three = []
557
+
558
+      if(this.monitors!=null && this.monitors.length > 0){
559
+        var monitor_one =  this.monitors.sort(function (a,b) {
560
+     	     return b.systolic_bp - a.systolic_bp
561
+        })
562
+        var monitor_two =  this.monitors.sort(function (a,b) {
563
+           return b.diastolic_bp - a.diastolic_bp
564
+        })
565
+
566
+        var monitor_three = this.monitors.sort(function (a,b) {
567
+              return b.pulse_frequency - a.pulse_frequency
568
+        })
569
+
570
+      }
571
+  
572
+
573
+    
574
+     
575
+     
576
+     var doc_str = ""
577
+      console.log("医嘱2333333333333",this.predialysis_evaluation)
578
+      if(this.doctor_advices!=null && this.doctor_advices.length > 0){
579
+       
580
+        
581
+        for(let i=0;i<this.doctor_advices.length;i++){
582
+          doc_str +=this.doctor_advices[i].advice_name +" "+this.doctor_advices[i].prescribing_number+this.doctor_advices[i].prescribing_number_unit+" "+this.doctor_advices[i].delivery_way
583
+        }
584
+      }
585
+
586
+      if(this.predialysis_evaluation.blood_access_part_id == -2){
587
+        this.predialysis_evaluation.blood_access_part_id = ""
588
+      }
589
+     
590
+       var str = " 患者今日来我科行血液透析治疗,血管通路选择:"+this.predialysis_evaluation.blood_access_part_id+ " "+this.QueryOperaById(this.predialysis_evaluation.blood_access_part_opera_id) +",透析模式:"+this.getModeId(this.prescription.mode_id)+
591
+       ",透前检查:"+this.predialysis_evaluation.internal_fistula +this.predialysis_evaluation.catheter + str_one +" "+ ",透析器:"+this.prescription.dialyzer_perfusion_apparatus + ",抗凝剂:"+this.GetAnticoagulant(this.prescription.anticoagulant) +",总量:"+this.prescription.anticoagulant_zongliang+"iu"+
592
+      ",透前体重:"+this.predialysis_evaluation.weight_before+"kg"+",间期体重增长:"+total +"kg"+",目标脱水量:"+this.prescription.target_ultrafiltration +"ml" +",血流量:"+this.prescription.blood_flow_volume+"ml/min" + ",透析开始时间:"+this.getTime(this.dialysis_order.start_time) +",透析过程中血压波动,"+"最大收缩压:"+monitor_one[0].systolic_blood_pressure+"mmHg"+",最小收缩压:"+monitor_one[monitor_one.length-1].systolic_blood_pressure
593
+      +"mmHg" +",最小舒张压:" +monitor_two[0].diastolic_blood_pressure+"mmHg" + ",最大舒张压:" + monitor_two[monitor_two.length-1].diastolic_blood_pressure +"mmHg" + ",最大脉搏:"+monitor_three[0].pulse_frequency+"次/分"+",最小脉搏:"+monitor_three[monitor_three.length-1].pulse_frequency+"次/分"+",透析结束时间:"+this.getTime(this.dialysis_order.end_time) +
594
+      ",实际治疗时长:"+ this.assessment_after_dislysis.actual_treatment_hour +"时"+this.assessment_after_dislysis.actual_treatment_minute+"分" +",实际超滤量:"+this.assessment_after_dislysis.actual_ultrafiltration+"ml"+",透后体重:"+this.assessment_after_dislysis.weight_after+"kg"+",透析过程顺利,安全下机" + " "
595
+      +",今日使用药品:"+doc_str +",患者下机后测血压,"+"收缩压:"+this.assessment_after_dislysis.systolic_blood_pressure+"mmHg"+",舒张压:"+this.assessment_after_dislysis.diastolic_blood_pressure+"mmHg"+",脉搏:"+this.assessment_after_dislysis.pulse_frequency +"次/分"
596
+
597
+       console.log("str000000000000000000222o2o2",str)
598
+       this.treatmentSummary.dialysis_summary = ""
599
+       this.treatmentSummary.dialysis_summary = str
600
+    },
601
+    QueryOperaById(val){
602
+       var blood_access_part_opera = getDataConfig('hemodialysis', 'vascular_access_desc')
603
+       var name = ""
604
+       for(let i=0;i<blood_access_part_opera.length;i++){
605
+         if(val == blood_access_part_opera[i].id){
606
+            name = blood_access_part_opera[i].name
607
+         }
608
+       }
609
+       return name
610
+    },
611
+    getModeId(mode_id){
612
+      var mode_name = ""
613
+      if(mode_id == 1){
614
+         mode_name ="HD"
615
+      }
616
+      if(mode_id == 2){
617
+         mode_name ="HDF"
618
+      }
619
+      if(mode_id == 3){
620
+         mode_name ="HD+HP"
621
+      }
622
+      if(mode_id == 4){
623
+         mode_name ="HP"
624
+      }
625
+      if(mode_id == 5){
626
+         mode_name ="HF"
627
+      }
628
+      if(mode_id == 6){
629
+         mode_name ="SCUF"
630
+      }
631
+      if(mode_id == 7){
632
+         mode_name ="IUF"
633
+      }
634
+      if(mode_id == 8){
635
+         mode_name ="HFHD"
636
+      }
637
+      if(mode_id == 9){
638
+         mode_name ="HFHD+HP"
639
+      }
640
+      if(mode_id == 10){
641
+         mode_name ="PHF"
642
+      }
643
+      if(mode_id == 11){
644
+         mode_name ="HFR"
645
+      }
646
+      if(mode_id == 12){
647
+         mode_name ="HDF+HP"
648
+      }
649
+      if(mode_id == 13){
650
+         mode_name ="CRRT"
651
+      }
652
+      if(mode_id == 14){
653
+         mode_name ="腹水回输"
654
+      }
655
+      if(mode_id == 19){
656
+         mode_name ="IUF+HD"
657
+      }
658
+      if(mode_id == 20){
659
+         mode_name ="UF"
660
+      }
661
+      if(mode_id == 21){
662
+         mode_name ="HD+"
663
+      }
664
+      if(mode_id == 22){
665
+         mode_name ="血浆胆红素吸附+HDF"
666
+      }
667
+      if(mode_id == 23){
668
+         mode_name ="血浆胆红素吸附"
669
+      }
670
+      if(mode_id == 24){
671
+         mode_name ="I-HDF"
672
+      }
673
+      if(mode_id == 25){
674
+         mode_name ="HD高通"
675
+      }
676
+      if(mode_id == 26){
677
+         mode_name ="CVVH"
678
+      }
679
+      if(mode_id == 27){
680
+         mode_name ="CVVHD"
681
+      }
682
+      if(mode_id == 28){
683
+         mode_name ="CVVHDF"
684
+      }
685
+      if(mode_id == 29){
686
+         mode_name ="PE"
687
+      }
688
+      if(mode_id == 30){
689
+         mode_name ="血浆胆红素吸附+HP"
690
+      }
691
+      if(mode_id == 31){
692
+         mode_name ="HPD"
693
+      }
694
+      if(mode_id == 32){
695
+         mode_name ="HDP"
696
+      }
697
+      return mode_name
698
+    },
699
+    GetAnticoagulant(id){
700
+      var  anticoagulant_name = ""
701
+      if(id == 1){
702
+       anticoagulant_name = "无肝素"
703
+      }
704
+      if(id == 2){
705
+         anticoagulant_name = "普通肝素"
706
+      }
707
+      if(id == 3){
708
+        anticoagulant_name = "低分子肝素"
709
+      } 
710
+      if(id == 4){
711
+        anticoagulant_name = "阿加曲班"
712
+      } 
713
+
714
+      if(id == 5){
715
+       anticoagulant_name = "枸橼酸钠"
716
+      }
717
+      if(id == 6){
718
+         anticoagulant_name = "低分子肝素钙"
719
+      }
720
+      if(id == 7){
721
+        anticoagulant_name = "低分子肝素钠"
722
+      } 
723
+      if(id == 8){
724
+        anticoagulant_name = "依诺肝素"
725
+      } 
726
+
727
+      if(id == 9){
728
+        anticoagulant_name = "达肝素"
729
+      } 
730
+      if(id == 10){
731
+        anticoagulant_name = "体外抗凝"
732
+      } 
733
+
734
+      if(id == 11){
735
+        anticoagulant_name = "那屈肝素"
736
+      } 
737
+      if(id == 12){
738
+        anticoagulant_name = "无抗凝剂"
739
+      } 
740
+
741
+      if(id == 13){
742
+        anticoagulant_name = "那屈肝素钙"
743
+      } 
744
+      if(id == 14){
745
+        anticoagulant_name = "肝素钙注射液"
746
+      } 
747
+      if(id == 15){
748
+        anticoagulant_name = "甲磺酸萘莫司他"
749
+      } 
750
+
751
+      return anticoagulant_name
752
+    },
753
+    getTime (time) {
754
+     return uParseTime(time, '{y}-{m}-{d} {h}:{i}')
755
+    },
501
   },
756
   },
502
   watch: {
757
   watch: {
503
     isVisibility(val) {},
758
     isVisibility(val) {},
545
         }
800
         }
546
       },
801
       },
547
     },
802
     },
803
+  
548
   },
804
   },
549
   created() {
805
   created() {
550
     this.education = getDataConfig("education", "education");
806
     this.education = getDataConfig("education", "education");
562
       this.record_date = uParseTime(date, "{y}-{m}-{d}");
818
       this.record_date = uParseTime(date, "{y}-{m}-{d}");
563
     }
819
     }
564
     
820
     
821
+    this.org_id = this.$store.getters.xt_user.template_info.org_id
565
   },
822
   },
566
 };
823
 };
567
 </script>
824
 </script>

+ 2 - 2
src/xt_pages/dialysis/details/dialysisMonitoring.vue View File

23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445 || org_id == 10410) " width="92px" > 置换率(ml/min) </th>
23
           <th v-if=" isShow('置换率') && (template_id == 6 || template_id == 10 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46  || template_id == 48 || template_id == 53  || template_id == 54 || template_id == 56 || org_id == 10432 || org_id == 10445 || org_id == 10410) " width="92px" > 置换率(ml/min) </th>
24
           <th v-if=" isShow('置换率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && org_id!=10432 && org_id!=10445 && org_id!=10410" width="92px" > 置换率(L/h)  </th>
24
           <th v-if=" isShow('置换率') && template_id != 6 && template_id != 10 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && org_id!=10432 && org_id!=10445 && org_id!=10410" width="92px" > 置换率(L/h)  </th>
25
           <th v-if=" isShow('置换量') && (template_id == 43)" width="92px"> 置换量(ml/h)  </th>
25
           <th v-if=" isShow('置换量') && (template_id == 43)" width="92px"> 置换量(ml/h)  </th>
26
-          <th v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919 && org_id !=10191) || org_id == 9779 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10432  || this.$store.getters.xt_user.template_info.org_id == 10445 )" width="92px"  > 置换量(ml)  </th>
27
-          <th v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919 || org_id == 10191) && org_id != 9779 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10432  && this.$store.getters.xt_user.template_info.org_id != 10445)" width="92px" > 置换量(L) </th>
26
+          <th v-if=" isShow('置换量') && ((template_id == 6 && org_id != 9919 && org_id !=10191 && org_id!=10478) || org_id == 9779 || template_id == 11 || template_id == 20 || template_id == 26 || template_id == 29 || template_id == 46 || template_id == 48 || template_id == 53 || template_id == 54 || template_id == 56 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10432  || this.$store.getters.xt_user.template_info.org_id == 10445 )" width="92px"  > 置换量(ml)  </th>
27
+          <th v-if=" isShow('置换量') && ((template_id != 6 || org_id == 9919 || org_id == 10191 || org_id == 10478) && org_id != 9779 && template_id != 11 && template_id != 20 && template_id != 26 && template_id != 29 && template_id != 46 && template_id != 48 && template_id != 53 && template_id != 54 && template_id != 56 && this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10432  && this.$store.getters.xt_user.template_info.org_id != 10445)" width="92px" > 置换量(L) </th>
28
           <th v-if=" isShow('SpO₂') && template_id != 6 && template_id != 10 && template_id != 11  " width="92px" > SpO₂(%) </th>
28
           <th v-if=" isShow('SpO₂') && template_id != 6 && template_id != 10 && template_id != 11  " width="92px" > SpO₂(%) </th>
29
           <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
29
           <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
30
           <th v-if="isShow('置换液流量') && template_id != 27" width="92px">置换液流量(ml/h)</th>
30
           <th v-if="isShow('置换液流量') && template_id != 27" width="92px">置换液流量(ml/h)</th>

+ 1 - 0
src/xt_pages/dialysis/details/index.vue View File

676
         :lastOrder="lastOrder"
676
         :lastOrder="lastOrder"
677
         :dryWeightList="dryWeightList"
677
         :dryWeightList="dryWeightList"
678
         :docList="docList"
678
         :docList="docList"
679
+       
679
       >
680
       >
680
       </nav-igation>
681
       </nav-igation>
681
 
682
 

+ 3 - 5
src/xt_pages/dialysis/dialysisPrintOrder.vue View File

112
           org_template_info.template_id == 52 ||
112
           org_template_info.template_id == 52 ||
113
           org_template_info.template_id == 53  ||
113
           org_template_info.template_id == 53  ||
114
           org_template_info.template_id == 64)
114
           org_template_info.template_id == 64)
115
-          && $store.getters.xt_user.org.id != 0
116
         "
115
         "
117
       >
116
       >
118
       <div>
117
       <div>
403
       </template>
402
       </template>
404
       <template
403
       <template
405
         v-if="
404
         v-if="
406
-          org_template_info.template_id == 27 ||
407
-          org_template_info.template_id == 0
405
+          org_template_info.template_id == 27
408
         "
406
         "
409
       >
407
       >
410
         <div>
408
         <div>
971
                                   
969
                                   
972
           <DialysisPrintOrderSix
970
           <DialysisPrintOrderSix
973
             v-bind:childResponse="childResponse"
971
             v-bind:childResponse="childResponse"
974
-            v-if="org_template_info.template_id == 6 && $store.getters.xt_user.org.id!=0"
972
+            v-if="org_template_info.template_id == 6"
975
           >
973
           >
976
           </DialysisPrintOrderSix>
974
           </DialysisPrintOrderSix>
977
 
975
 
1260
 
1258
 
1261
           <DialysisPrintOrderSixtyFive
1259
           <DialysisPrintOrderSixtyFive
1262
               v-bind:childResponse="childResponse"
1260
               v-bind:childResponse="childResponse"
1263
-            v-if="org_template_info.template_id == 65 || $store.getters.xt_user.org.id ==0">
1261
+            v-if="org_template_info.template_id == 65">
1264
 
1262
 
1265
           </DialysisPrintOrderSixtyFive>
1263
           </DialysisPrintOrderSixtyFive>
1266
         </div>
1264
         </div>

+ 35 - 13
src/xt_pages/dialysis/template/DialysisPrintOrderFortyOne.vue View File

1658
       }
1658
       }
1659
       return ''
1659
       return ''
1660
     },
1660
     },
1661
+    // getAge: function(val) {
1662
+    //   if (
1663
+    //     this.org_template_info.template_id == 2 ||
1664
+    //     this.org_template_info.template_id == 0
1665
+    //   ) {
1666
+    //     if (val.age == 0) {
1667
+    //       return jsGetAge(val.birth, '-')
1668
+    //     } else {
1669
+    //       return val.age
1670
+    //     }
1671
+    //   } else {
1672
+    //     return jsGetAge(val.birth, '-')
1673
+    //   }
1674
+    // },
1661
     getAge: function(val) {
1675
     getAge: function(val) {
1662
-      if (
1663
-        this.org_template_info.template_id == 2 ||
1664
-        this.org_template_info.template_id == 0
1665
-      ) {
1666
-        if (val.age == 0) {
1667
-          return jsGetAge(val.birth, '-')
1668
-        } else {
1669
-          return val.age
1670
-        }
1671
-      } else {
1672
-        return jsGetAge(val.birth, '-')
1673
-      }
1674
-    },
1676
+     
1677
+     if (val.id_card_no) {
1678
+       var thisLen = val.id_card_no.length
1679
+
1680
+       var birth = ''
1681
+       if (thisLen == 15) {
1682
+         birth = '19' + val.id_card_no.substr(6, 6)
1683
+       } else {
1684
+         birth = val.id_card_no.substr(6, 8)
1685
+       }
1686
+       var birthtwo =
1687
+         birth.substr(0, 4) +
1688
+         '-' +
1689
+         birth.substr(4, 2) +
1690
+         '-' +
1691
+         birth.substr(6, 2)
1692
+
1693
+       var age = jsGetAge(birthtwo, '-')
1694
+       return age
1695
+     }
1696
+   },
1675
     newAdviceGroupObject: function() {
1697
     newAdviceGroupObject: function() {
1676
       return Object.assign(
1698
       return Object.assign(
1677
         {},
1699
         {},

+ 61 - 21
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

65
             </div>
65
             </div>
66
66
67
           </div>
67
           </div>
68
-          <div class="inline_block">
68
+          <div class="inline_block" v-if="receiverTreatmentAccess.condition!=1">
69
             门诊:
69
             门诊:
70
             <div class="under_line" style="width: 30px; text-align: center">
70
             <div class="under_line" style="width: 30px; text-align: center">
71
               <check-box :checked="patientInfo_source_1"></check-box>
71
               <check-box :checked="patientInfo_source_1"></check-box>
72
             </div>
72
             </div>
73
           </div>
73
           </div>
74
+          <div class="inline_block" v-if="receiverTreatmentAccess.condition==1">
75
+            住院:
76
+            <div class="under_line" style="width: 30px; text-align: center">
77
+              <check-box :checked="receiverTreatmentAccess.condition == 1"></check-box>
78
+            </div>
79
+          </div>
74
           <div class="inline_block">
80
           <div class="inline_block">
75
             病区:
81
             病区:
76
             <div class="under_line" style="width: 50px; text-align: center">
82
             <div class="under_line" style="width: 50px; text-align: center">
1447
                         <td width="60" v-if="org_id == 9671">血温(°C)</td>
1453
                         <td width="60" v-if="org_id == 9671">血温(°C)</td>
1448
                         <td width="60" v-if="org_id!=9836&&org_id!=9919&&org_id!=9671">透析液温度(°C)</td>
1454
                         <td width="60" v-if="org_id!=9836&&org_id!=9919&&org_id!=9671">透析液温度(°C)</td>
1449
                         <td width="50" v-if="org_id != 10121">
1455
                         <td width="50" v-if="org_id != 10121">
1450
-                          <span v-if="org_id != 0 && org_id !=10469"> 电导度<br />(ms/cm)</span> 
1451
-                          <span v-if="org_id == 0 || org_id ==10469"> 钠浓度<br />(mmol/L)</span> 
1456
+                          <span v-if="org_id != 0 && org_id !=10469 && org_id!=10490"> 电导度<br />(ms/cm)</span> 
1457
+                          <span v-if="org_id ==10469"> 钠浓度<br />(mmol/L)</span> 
1458
+                          <span v-if="org_id == 0 || org_id == 10490"> 置换液的速度<br />(ml/h)</span> 
1452
                         </td>
1459
                         </td>
1453
                         <td width="50" v-if="org_id == 10121">SpO₂<br />(%)</td>
1460
                         <td width="50" v-if="org_id == 10121">SpO₂<br />(%)</td>
1454
                         <td width="50" v-if="org_id != 3877 && org_id != 10449 && org_id != 0">超滤量<br />(ml)</td>
1461
                         <td width="50" v-if="org_id != 3877 && org_id != 10449 && org_id != 0">超滤量<br />(ml)</td>
1468
                         <td width="50" v-if="org_id == 9919">在线尿素监测</td>  
1475
                         <td width="50" v-if="org_id == 9919">在线尿素监测</td>  
1469
                         <td width="50" v-if="org_id == 9671">在线尿素监测</td>  
1476
                         <td width="50" v-if="org_id == 9671">在线尿素监测</td>  
1470
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id== 9671">血容量<br />(L)</td>
1477
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id== 9671">血容量<br />(L)</td>
1478
+                        <td width="50" v-if="org_id == 10490 || org_id == 0">碳酸氢钠<br />(ml)</td>
1471
                         <td width="200">病情变化及处理</td>
1479
                         <td width="200">病情变化及处理</td>
1472
                       </tr>
1480
                       </tr>
1473
 
1481
 
1542
 
1550
 
1543
 
1551
 
1544
                         <td v-if="org_id != 9538 &&org_id != 10121">
1552
                         <td v-if="org_id != 9538 &&org_id != 10121">
1545
-                          <span v-if="org_id!=0&&org_id!=10469"> {{ monitor.conductivity ? monitor.conductivity : "" }}</span>
1546
-                          <span v-if="org_id==0||org_id==10469"> {{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}</span>
1547
-                          
1553
+                          <span v-if="org_id!=0&&org_id!=10469 && org_id!=10490"> {{ monitor.conductivity ? monitor.conductivity : "" }}</span>
1554
+                          <span v-if="org_id==10469"> {{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}</span>
1555
+                          <span v-if="org_id==0||org_id==10490"> {{ monitor.replacement_speed ? monitor.replacement_speed : "" }}</span>
1548
                         </td>
1556
                         </td>
1549
 
1557
 
1550
                       
1558
                       
1584
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id == 9671">
1592
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id == 9671">
1585
                           {{ monitor.accumulated_blood_volume }}
1593
                           {{ monitor.accumulated_blood_volume }}
1586
                         </td>
1594
                         </td>
1595
+                        <td width="50" v-if="org_id ==10490 || org_id == 0">
1596
+                          {{ monitor.dicarbonate }}
1597
+                        </td>
1587
                         <td style="line-height: 16px; padding: 0px">
1598
                         <td style="line-height: 16px; padding: 0px">
1588
                           <div
1599
                           <div
1589
                             style="
1600
                             style="
1646
                         ></td>
1657
                         ></td>
1647
                         <td v-if="org_id == 9919||org_id == 9538 || org_id == 9671"></td>
1658
                         <td v-if="org_id == 9919||org_id == 9538 || org_id == 9671"></td>
1648
                         <td v-if="org_id == 9538"></td>
1659
                         <td v-if="org_id == 9538"></td>
1660
+                        <td v-if="org_id == 10490 || org_id == 0"></td>
1649
                         <td style="line-height: 16px; padding: 0px">
1661
                         <td style="line-height: 16px; padding: 0px">
1650
                           <div
1662
                           <div
1651
                             style="
1663
                             style="
1872
               </div>
1884
               </div>
1873
1885
1874
             </div>
1886
             </div>
1875
-            <div class="inline_block">
1876
-              门诊:
1877
-              <div class="under_line" style="width: 30px; text-align: center">
1878
-                <check-box :checked="patientInfo_source_1"></check-box>
1879
-              </div>
1887
+            <div class="inline_block" v-if="receiverTreatmentAccess.condition!=1">
1888
+            门诊:
1889
+            <div class="under_line" style="width: 30px; text-align: center">
1890
+              <check-box :checked="patientInfo_source_1"></check-box>
1880
             </div>
1891
             </div>
1892
+          </div>
1893
+          <div class="inline_block" v-if="receiverTreatmentAccess.condition==1">
1894
+            住院:
1895
+            <div class="under_line" style="width: 30px; text-align: center">
1896
+              <check-box :checked="receiverTreatmentAccess.condition == 1"></check-box>
1897
+            </div>
1898
+          </div>
1881
             <div class="inline_block">
1899
             <div class="inline_block">
1882
               病区:
1900
               病区:
1883
               <div class="under_line" style="width: 50px; text-align: center">
1901
               <div class="under_line" style="width: 50px; text-align: center">
3921
       }
3939
       }
3922
       return "";
3940
       return "";
3923
     },
3941
     },
3924
-    getAge: function (val) {
3925
-      if (
3926
-        this.org_template_info.template_id == 2 ||
3927
-        this.org_template_info.template_id == 0
3928
-      ) {
3929
-        if (val.age == 0) {
3930
-          return jsGetAge(val.birth, "-");
3942
+    // getAge: function (val) {
3943
+    //   if (
3944
+    //     this.org_template_info.template_id == 2 ||
3945
+    //     this.org_template_info.template_id == 0
3946
+    //   ) {
3947
+    //     if (val.age == 0) {
3948
+    //       return jsGetAge(val.birth, "-");
3949
+    //     } else {
3950
+    //       return val.age;
3951
+    //     }
3952
+    //   } else {
3953
+    //     return this.getoldAge();
3954
+    //   }
3955
+    // },
3956
+    getAge: function(val) {
3957
+     
3958
+      if (val.id_card_no) {
3959
+        var thisLen = val.id_card_no.length
3960
+
3961
+        var birth = ''
3962
+        if (thisLen == 15) {
3963
+          birth = '19' + val.id_card_no.substr(6, 6)
3931
         } else {
3964
         } else {
3932
-          return val.age;
3965
+          birth = val.id_card_no.substr(6, 8)
3933
         }
3966
         }
3934
-      } else {
3935
-        return this.getoldAge();
3967
+        var birthtwo =
3968
+          birth.substr(0, 4) +
3969
+          '-' +
3970
+          birth.substr(4, 2) +
3971
+          '-' +
3972
+          birth.substr(6, 2)
3973
+
3974
+        var age = jsGetAge(birthtwo, '-')
3975
+        return age
3936
       }
3976
       }
3937
     },
3977
     },
3938
     newAdviceGroupObject: function () {
3978
     newAdviceGroupObject: function () {

+ 98 - 53
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyfour.vue View File

20
           <h1 style="text-align: center;">血液透析(滤过)记录表单</h1>
20
           <h1 style="text-align: center;">血液透析(滤过)记录表单</h1>
21
           <div>
21
           <div>
22
             <div>
22
             <div>
23
-              <div style="display:inline-block; ;">病历号:</div>
23
+              <div style="display:inline-block; ;">病历号:
24
+                {{patientInfo.record_number?patientInfo.record_number:"" }}
25
+              </div>
24
               <div style="display:inline-block;margin-left: 90px;">
26
               <div style="display:inline-block;margin-left: 90px;">
25
                 姓名:{{ patientInfo.name }}
27
                 姓名:{{ patientInfo.name }}
26
               </div>
28
               </div>
54
                 <td colspan="3" style="border:1px solid black">
56
                 <td colspan="3" style="border:1px solid black">
55
                   <div style="display: inline-block; word-break: break-all;word-wrap: break-word;">
57
                   <div style="display: inline-block; word-break: break-all;word-wrap: break-word;">
56
                     上机前病情:
58
                     上机前病情:
57
-                    {{ predialysis.symptom_before_dialysis ? predialysis.symptom_before_dialysis : "/" }}
59
+                    <!-- {{ predialysis.symptom_before_dialysis ? predialysis.symptom_before_dialysis : "/" }} -->
60
+                    {{ predialysis.befor_symptoms? predialysis.befor_symptoms:"" }}
58
                   </div>
61
                   </div>
59
 
62
 
60
                 </td>
63
                 </td>
63
                 <td colspan="3">
66
                 <td colspan="3">
64
                   <div style="display: inline-block; word-break: break-all;word-wrap: break-word;">
67
                   <div style="display: inline-block; word-break: break-all;word-wrap: break-word;">
65
                     疾病诊断:
68
                     疾病诊断:
66
-                    {{ patientInfo.diagnose }}
69
+                    {{ getDiagnosis(prescriptionInfo.patient_diagnosis) }}
67
                   </div>
70
                   </div>
68
                 </td>
71
                 </td>
69
               </tr>
72
               </tr>
74
                     <span v-else-if="prescription.mode_id == 1">HD</span>
77
                     <span v-else-if="prescription.mode_id == 1">HD</span>
75
                     <span v-else-if="prescription.mode_id == 2">HDF</span>
78
                     <span v-else-if="prescription.mode_id == 2">HDF</span>
76
                     <span v-else-if="prescription.mode_id == 3">HD+HP</span>
79
                     <span v-else-if="prescription.mode_id == 3">HD+HP</span>
77
-                    <span v-else-if="prescription.mode_id == 4">HF</span>
78
-                    <span v-else-if="prescription.mode_id == 5">SCUF</span>
79
-                    <span v-else-if="prescription.mode_id == 6">IUF</span>
80
-                    <span v-else-if="prescription.mode_id == 7">HFHD</span>
81
-                    <span v-else-if="prescription.mode_id == 8">HFHD+HP</span>
82
-                    <span v-else-if="prescription.mode_id == 9">PHF</span>
83
-                    <span v-else-if="prescription.mode_id == 10">HFR</span>
84
-                    <span v-else-if="prescription.mode_id == 11">HDF+HP</span>
85
-                    <span v-else-if="prescription.mode_id == 12">CRRT</span>
86
-                    <span v-else-if="prescription.mode_id == 13">腹水回输</span>
87
-                    <span v-else-if="prescription.mode_id == 14">IUF+HD</span>
88
-                    <span v-else-if="prescription.mode_id == 15">UF</span>
89
-                    <span v-else-if="prescription.mode_id == 16">HD+</span>
90
-                    <span v-else-if="prescription.mode_id == 17">血浆胆红素吸附+HDF</span>
91
-                    <span v-else-if="prescription.mode_id == 18">血浆胆红素吸附</span>
92
-                    <span v-else-if="prescription.mode_id == 19">I-HDF</span>
93
-                    <span v-else-if="prescription.mode_id == 20">HD高通</span>
94
-                    <span v-else-if="prescription.mode_id == 21">CVVH</span>
95
-                    <span v-else-if="prescription.mode_id == 22">CVVHD</span>
96
-                    <span v-else-if="prescription.mode_id == 23">CVVHDF</span>
97
-                    <span v-else-if="prescription.mode_id == 24">PE</span>
98
-                    <span v-else-if="prescription.mode_id == 25">血浆胆红素吸附+HP</span>
99
-                    <span v-else-if="prescription.mode_id == 26">HPD</span>
100
-                    <span v-else-if="prescription.mode_id == 27">HDP</span>
80
+                    <span v-else-if="prescription.mode_id == 4">HP</span>
81
+                    <span v-else-if="prescription.mode_id == 5">HF</span>
82
+                    <span v-else-if="prescription.mode_id == 6">SCUF</span>
83
+                    <span v-else-if="prescription.mode_id == 7">IUF</span>
84
+                    <span v-else-if="prescription.mode_id == 8">HFHD</span>
85
+                    <span v-else-if="prescription.mode_id == 9">HFHD+HP</span>
86
+                    <span v-else-if="prescription.mode_id == 10">PHF</span>
87
+                    <span v-else-if="prescription.mode_id == 11">HFR</span>
88
+                    <span v-else-if="prescription.mode_id == 12">HDF+HP</span>
89
+                    <span v-else-if="prescription.mode_id == 13">CRRT</span>
90
+                  
91
+                    <span v-else-if="prescription.mode_id == 19">IUF+HD</span>
92
+                    <span v-else-if="prescription.mode_id == 20">UF</span>
93
+                    <span v-else-if="prescription.mode_id == 21">HD+</span>
94
+                    <span v-else-if="prescription.mode_id == 22">血浆胆红素吸附+HDF</span>
95
+                    <span v-else-if="prescription.mode_id == 23">血浆胆红素吸附</span>
96
+                    <span v-else-if="prescription.mode_id == 24">I-HDF</span>
97
+                    <span v-else-if="prescription.mode_id == 25">HD高通</span>
98
+                    <span v-else-if="prescription.mode_id == 26">CVVH</span>
99
+                    <span v-else-if="prescription.mode_id == 27">CVVHD</span>
100
+                    <span v-else-if="prescription.mode_id == 28">CVVHDF</span>
101
+                    <span v-else-if="prescription.mode_id == 29">PE</span>
102
+                    <span v-else-if="prescription.mode_id == 30">血浆胆红素吸附+HP</span>
103
+                    <span v-else-if="prescription.mode_id == 31">HPD</span>
104
+                    <span v-else-if="prescription.mode_id == 32">HDP</span>
101
                 </td>
105
                 </td>
102
                 <td>
106
                 <td>
103
                   <span
107
                   <span
378
                             }}
382
                             }}
379
                             </span>
383
                             </span>
380
                         </td >
384
                         </td >
381
-
382
                         <td style=" ">
385
                         <td style=" ">
383
                             <span v-if="getTime(monitor.operate_time) != ''">
386
                             <span v-if="getTime(monitor.operate_time) != ''">
384
                                 &nbsp;{{
387
                                 &nbsp;{{
444
 
447
 
445
                         <!-- <td style=" "> {{ getTime(monitor.operate_time, "{h}:{i}") }}</td> -->
448
                         <!-- <td style=" "> {{ getTime(monitor.operate_time, "{h}:{i}") }}</td> -->
446
                         <td style=" ">
449
                         <td style=" ">
447
-                          <span style="word-break: break-all;word-wrap: break-word;">
448
-
449
-                              {{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{monitor.result}}
450
-                          </span>
450
+                          <!-- <span style="display:inline-block;word-break: break-all;word-wrap: break-word; text-align: left;text-indent:2em;">
451
+                            {{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{monitor.result}}
452
+                          </span> -->
453
+                          <div style="word-break: break-all;word-wrap: break-word; text-align: left;text-indent:2em;">
454
+                            {{ monitor.symptom }} {{ monitor.dispose }} {{monitor.result}}
455
+                          </div>
451
                         </td>
456
                         </td>
452
                         <!-- <td>
457
                         <!-- <td>
453
                           <span v-if="
458
                           <span v-if="
765
       adminUser: [],
770
       adminUser: [],
766
       bloodAccessParOpera: {},
771
       bloodAccessParOpera: {},
767
       lastafterdialysis: {},
772
       lastafterdialysis: {},
768
-      projects:[]
773
+      projects:[],
774
+      prescriptionInfo:{},
775
+      patientDiagnose:[]
769
     };
776
     };
770
   },
777
   },
771
   computed: {},
778
   computed: {},
886
         // this.receiverTreatmentAccess =
893
         // this.receiverTreatmentAccess =
887
         //     response.data.data.receiverTreatmentAccess;
894
         //     response.data.data.receiverTreatmentAccess;
888
         this.assessmentafter = response.data.data.assessmentAfterDislysis;
895
         this.assessmentafter = response.data.data.assessmentAfterDislysis;
889
-
896
+        this.prescriptionInfo = response.data.data.prescriptionInfo
897
+        this.patientDiagnose = response.data.data.patientDiagnose
890
         // this.sick_condition_arr.forEach((o) => {
898
         // this.sick_condition_arr.forEach((o) => {
891
         //     if (this.receiverTreatmentAccess.sick_condition == o.id) {
899
         //     if (this.receiverTreatmentAccess.sick_condition == o.id) {
892
         //     this.sick_condition = o.name;
900
         //     this.sick_condition = o.name;
986
           }
994
           }
987
         });
995
         });
988
         this.projects = projects;
996
         this.projects = projects;
997
+
989
         if (this.doctor_advices.length + this.projects.length <= 6) {
998
         if (this.doctor_advices.length + this.projects.length <= 6) {
990
           var nl = 6 - (this.doctor_advices.length + this.projects.length);
999
           var nl = 6 - (this.doctor_advices.length + this.projects.length);
991
           this.print_length = 6;
1000
           this.print_length = 6;
1004
         console.log("advices",this.advices)
1013
         console.log("advices",this.advices)
1005
         console.log("this.projects", this.projects);
1014
         console.log("this.projects", this.projects);
1006
 
1015
 
1007
-        var objProject = {advice_name:"",start_time:"",single_dose:"",single_dose_unit:"",}
1016
+        // var objProject = {advice_name:"",start_time:"",single_dose:"",single_dose_unit:"",}
1008
         if(this.projects!=null && this.projects.length >0){
1017
         if(this.projects!=null && this.projects.length >0){
1009
            for(let i=0;i<this.projects.length;i++){
1018
            for(let i=0;i<this.projects.length;i++){
1010
-              if(this.projects[i].project_id ==  7620){
1011
-                 objProject.advice_name = this.projects[i].project.project_name
1012
-                 objProject.start_time = this.projects[i].start_time
1013
-                 objProject.single_dose = this.projects[i].single_dose
1014
-                 objProject.single_dose_unit = this.projects[i].unit
1015
-                 objProject.execution_time = this.projects[i].execution_time
1016
-                 objProject.execution_staff= this.projects[i].execution_staff
1017
-              }
1019
+             if(this.projects[i].type== 2){
1020
+              this.projects[i].advice_name = this.projects[i].project.project_name
1021
+              this.projects[i].start_time = this.projects[i].start_time
1022
+              this.projects[i].single_dose = this.projects[i].single_dose
1023
+              this.projects[i].single_dose_unit = this.projects[i].unit
1024
+              this.projects[i].execution_time = this.projects[i].execution_time
1025
+              this.projects[i].execution_staff= this.projects[i].execution_staff 
1026
+              this.advices.push(this.projects[i])
1027
+             }
1028
+             
1018
            }
1029
            }
1019
         }
1030
         }
1020
-        this.advices.push(objProject)
1031
+        
1021
 
1032
 
1022
         var tableAdvice = this.advices;
1033
         var tableAdvice = this.advices;
1023
 
1034
 
1098
           this.advices = tableAdvice;
1109
           this.advices = tableAdvice;
1099
         }
1110
         }
1100
 
1111
 
1112
+        console.log("advices-----------------",this.advices)
1113
+
1101
  
1114
  
1102
          
1115
          
1103
 
1116
 
1164
       }
1177
       }
1165
       return ''
1178
       return ''
1166
     },
1179
     },
1180
+    // getAge: function (val) {
1181
+    //   if (
1182
+    //     this.org_template_info.template_id == 2 ||
1183
+    //     this.org_template_info.template_id == 0
1184
+    //   ) {
1185
+    //     if (val.age == 0) {
1186
+    //       return jsGetAge(val.birth, "-");
1187
+    //     } else {
1188
+    //       return val.age;
1189
+    //     }
1190
+    //   } else {
1191
+    //     return jsGetAge(val.birth, "-");
1192
+    //   }
1193
+    // },
1167
     getAge: function (val) {
1194
     getAge: function (val) {
1168
-      if (
1169
-        this.org_template_info.template_id == 2 ||
1170
-        this.org_template_info.template_id == 0
1171
-      ) {
1172
-        if (val.age == 0) {
1173
-          return jsGetAge(val.birth, "-");
1195
+      if(val!=undefined){
1196
+        var thisLen = val.id_card_no.length;
1197
+        var birth = "";
1198
+        if (thisLen == 15) {
1199
+          birth = "19" + val.id_card_no.substr(6, 6);
1174
         } else {
1200
         } else {
1175
-          return val.age;
1201
+          birth = val.id_card_no.substr(6, 8);
1176
         }
1202
         }
1177
-      } else {
1178
-        return jsGetAge(val.birth, "-");
1203
+        var birthtwo =
1204
+          birth.substr(0, 4) +
1205
+          "-" +
1206
+          birth.substr(4, 2) +
1207
+          "-" +
1208
+          birth.substr(6, 2);
1209
+
1210
+        var age = jsGetAge(birthtwo, "-");
1211
+        return age;
1179
       }
1212
       }
1213
+    
1180
     },
1214
     },
1215
+   
1216
+    getDiagnosis(id) {
1217
+      let arr = id.split(',')
1218
+      var name = ''
1219
+      for (let i = 0; i < this.patientDiagnose.length; i++) {
1220
+        if (arr.indexOf(String(this.patientDiagnose[i].id)) > -1) {
1221
+          name += this.patientDiagnose[i].class_name + ' '
1222
+        }
1223
+      }
1224
+      return name
1225
+    }
1181
   },
1226
   },
1182
   created() {
1227
   created() {
1183
     var bloodAccessParOpera = getDataConfig(
1228
     var bloodAccessParOpera = getDataConfig(

+ 48 - 3
src/xt_pages/dialysis/template/DialysisPrintOrderThirteen.vue View File

129
             </div>
129
             </div>
130
             <div class="inline_block" style="margin-right:30px;">
130
             <div class="inline_block" style="margin-right:30px;">
131
               透析液配方
131
               透析液配方
132
-              <div class="inline_block under_line" style="width:150px;text-align: center;">
132
+              <div class="inline_block under_line" style="width:100px;text-align: center;">
133
                   {{ prescription.dialysate_formulation_name ? prescription.dialysate_formulation_name : ''}}
133
                   {{ prescription.dialysate_formulation_name ? prescription.dialysate_formulation_name : ''}}
134
               </div>
134
               </div>
135
             </div>
135
             </div>
136
+           
137
+            <div class="inline_block" style="margin-right:30px;">
138
+              通路形成时间
139
+              <div class="inline_block under_line" style="width:100px;text-align: center;">
140
+                {{getTimeOne(predialysis.pathway_formation_time) }}
141
+              </div>
142
+            </div>
143
+          
144
+         
136
         </div>
145
         </div>
137
         <div class="row">
146
         <div class="row">
138
           血管通路
147
           血管通路
162
             <label-box :isChecked="predialysis.blood_access_part_id.indexOf('其他')>-1?true:false" showValue="其他"></label-box>
171
             <label-box :isChecked="predialysis.blood_access_part_id.indexOf('其他')>-1?true:false" showValue="其他"></label-box>
163
             &nbsp;
172
             &nbsp;
164
           </div>
173
           </div>
174
+        
165
         </div>
175
         </div>
166
         <div class="row">
176
         <div class="row">
167
           导管
177
           导管
168
-          <div class="inline_block under_line" style="width:200px;text-align: left;">
178
+          <div class="inline_block under_line" style="width:95%;text-align: left;">
169
             {{ predialysis.catheter ? predialysis.catheter : "" }}
179
             {{ predialysis.catheter ? predialysis.catheter : "" }}
170
           </div>
180
           </div>
181
+        
182
+         
183
+        </div>
184
+        <div class="row">
171
           内瘘
185
           内瘘
172
-          <div class="inline_block under_line" style="width:200px;text-align: left;">
186
+          <div class="inline_block under_line" style="width:95%;text-align: left;">
173
             {{ predialysis.internal_fistula ? predialysis.internal_fistula : "" }}
187
             {{ predialysis.internal_fistula ? predialysis.internal_fistula : "" }}
174
           </div>
188
           </div>
175
         </div>
189
         </div>
190
+        <div class="row">
191
+          <!-- 导管评估项目
192
+          <div class="inline_block under_line" style="width:200px;text-align: left;">
193
+            {{ predialysis.catheter_evaluation_program ? predialysis.catheter_evaluation_program : "" }}
194
+          </div>
195
+          置管部位皮肤
196
+          <div class="inline_block under_line" style="width:200px;text-align: left;">
197
+            {{ predialysis.skin_site_catheterization ? predialysis.skin_site_catheterization : "" }}
198
+          </div>
199
+          是否通畅
200
+          <div class="inline_block under_line" style="width:100px;text-align: left;">
201
+             <span v-if="predialysis.whether_unobstructed ==1">是</span>
202
+             <span v-if="predialysis.whether_unobstructed ==2">否</span>
203
+          </div> -->
204
+          <!-- 留置必要
205
+          <div class="inline_block under_line" style="width:100px;text-align: left;">
206
+            <span v-if="predialysis.lien_necessary ==1">是</span>
207
+            <span v-if="predialysis.lien_necessary ==2">否</span>
208
+          </div> -->
209
+        </div>
176
         <div class="row">
210
         <div class="row">
177
           抗凝药物
211
           抗凝药物
178
           <div class="inline_block under_line" style="width:92%;text-align: left;">
212
           <div class="inline_block under_line" style="width:92%;text-align: left;">
913
       }
947
       }
914
       return ''
948
       return ''
915
     },
949
     },
950
+
951
+    getTimeOne(val) {
952
+        if(val < 0){
953
+          return ""
954
+        }
955
+        if(val == ""){
956
+        return ""
957
+        }else {
958
+        return uParseTime(val, '{y}-{m}-{d}')
959
+        }
960
+     },
916
     printThisPage() {
961
     printThisPage() {
917
       var ptime = Math.round(new Date().getTime() / 1000)
962
       var ptime = Math.round(new Date().getTime() / 1000)
918
       this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
963
       this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')

+ 24 - 3
src/xt_pages/dialysis/template/DialysisPrintOrderTwentySeven.vue View File

2276
       }
2276
       }
2277
       return ''
2277
       return ''
2278
     },
2278
     },
2279
+    // getAge: function(val) {
2280
+    //   if (val.birthday != 0) {
2281
+    //     return jsGetAge(val.birth, '-')
2282
+    //   }
2283
+    //   return ''
2284
+    // },
2279
     getAge: function(val) {
2285
     getAge: function(val) {
2280
-      if (val.birthday != 0) {
2281
-        return jsGetAge(val.birth, '-')
2286
+      if (val.id_card_no == undefined) {
2287
+        return false
2282
       }
2288
       }
2283
-      return ''
2289
+      var thisLen = val.id_card_no.length
2290
+      var birth = ''
2291
+      if (thisLen == 15) {
2292
+        birth = '19' + val.id_card_no.substr(6, 6)
2293
+      } else {
2294
+        birth = val.id_card_no.substr(6, 8)
2295
+      }
2296
+      var birthtwo =
2297
+        birth.substr(0, 4) +
2298
+        '-' +
2299
+        birth.substr(4, 2) +
2300
+        '-' +
2301
+        birth.substr(6, 2)
2302
+
2303
+      var age = jsGetAge(birthtwo, '-')
2304
+      return age
2284
     },
2305
     },
2285
     checkIdCardNo(val) {
2306
     checkIdCardNo(val) {
2286
       var thisLen = val.length
2307
       var thisLen = val.length

+ 73 - 20
src/xt_pages/hospitalStation/chargeDetailManagement.vue View File

114
                 type="primary">上传费用明细
114
                 type="primary">上传费用明细
115
             </el-button>
115
             </el-button>
116
 
116
 
117
+            <el-button
118
+              v-if="( this.hisPatientInfo.balance_accounts_type == 2 && this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 0 )"
119
+              size="small"
120
+              @click="open(1)"
121
+              type="primary">上传费用明细
122
+            </el-button>
123
+
117
 
124
 
118
             <el-button
125
             <el-button
119
                 v-if="( this.hisPatientInfo.balance_accounts_type != 2  && this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 0)"
126
                 v-if="( this.hisPatientInfo.balance_accounts_type != 2  && this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 0)"
122
             >撤销明细
129
             >撤销明细
123
             </el-button>
130
             </el-button>
124
 
131
 
132
+            <el-button
133
+              v-if="( this.hisPatientInfo.balance_accounts_type == 2  && this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 0)"
134
+
135
+              size="small" @click="open(2)" type="primary"
136
+            >撤销明细
137
+            </el-button>
138
+
125
           </div>
139
           </div>
126
 
140
 
127
         </div>
141
         </div>
833
           }).catch(() => {
847
           }).catch(() => {
834
           })
848
           })
835
         } else {
849
         } else {
836
-          settle_accounts_type = 2
837
-          var that = this
838
-          this.$confirm('该操作会撤销此次入院后所有处方明细,是否继续操作?', '撤销明细', {
839
-            confirmButtonText: '确 定',
840
-            cancelButtonText: '取 消',
841
-            type: 'warning'
842
-          }).then(() => {
843
 
850
 
844
-            let params = {
845
-              'settle_accounts_type': settle_accounts_type,
846
-              'patient_id': that.hisPatientInfo.patient_id,
847
-              'his_patient_id': that.hisPatientInfo.id,
848
-              'record_time': that.record_date,
849
-              'order_id': that.order.id,
850
-              'admin_user_id': that.$store.getters.xt_user.user.id
851
-            }
852
-            axios.get('http://127.0.0.1:9532/zh/api/refunddetail', {
853
-              params: params
854
-            })
851
+          if (this.hisPatientInfo.balance_accounts_type != 2) {
852
+            settle_accounts_type = 2
853
+            var that = this
854
+            this.$confirm('该操作会撤销此次入院后所有处方明细,是否继续操作?', '撤销明细', {
855
+              confirmButtonText: '确 定',
856
+              cancelButtonText: '取 消',
857
+              type: 'warning'
858
+            }).then(() => {
859
+
860
+              let params = {
861
+                'settle_accounts_type': settle_accounts_type,
862
+                'patient_id': that.hisPatientInfo.patient_id,
863
+                'his_patient_id': that.hisPatientInfo.id,
864
+                'record_time': that.record_date,
865
+                'order_id': that.order.id,
866
+                'admin_user_id': that.$store.getters.xt_user.user.id
867
+              }
868
+              axios.get('http://127.0.0.1:9532/zh/api/refunddetail', {
869
+                params: params
870
+              })
855
                 .then(function(response) {
871
                 .then(function(response) {
856
                   if (response.data.state == 0) {
872
                   if (response.data.state == 0) {
857
                     that.$message.error(response.data.msg)
873
                     that.$message.error(response.data.msg)
878
                 .catch(function(error) {
894
                 .catch(function(error) {
879
                 })
895
                 })
880
 
896
 
881
-          }).catch(() => {
882
-          })
897
+            }).catch(() => {
898
+            })
899
+
900
+          }else{
901
+            settle_accounts_type = 2
902
+            var that = this
903
+            this.$confirm('该操作会撤销此次入院后所有处方明细,是否继续操作?', '撤销明细', {
904
+              confirmButtonText: '确 定',
905
+              cancelButtonText: '取 消',
906
+              type: 'warning'
907
+            }).then(() => {
908
+              let params = {
909
+                'settle_accounts_type': settle_accounts_type,
910
+                'patient_id': that.hisPatientInfo.patient_id,
911
+                'his_patient_id': that.hisPatientInfo.id,
912
+                'record_time': that.record_date,
913
+                'admin_user_id': that.$store.getters.xt_user.user.id
914
+              }
915
+              refundDetail(params).then(response => {
916
+                if (response.data.state == 0) {
917
+                  this.loading = false
918
+                  this.$message.error(response.data.msg)
919
+                  return false
920
+                } else {
921
+                  that.$message.success('撤销明细成功')
922
+                  that.radio = 1
923
+                  that.getPatientList()
924
+                }
925
+              })
926
+
927
+
928
+
929
+            }).catch(() => {
930
+            })
931
+
932
+
933
+          }
934
+
935
+
883
 
936
 
884
         }
937
         }
885
 
938
 

+ 3 - 1
src/xt_pages/hospitalStation/components/deskPrescription.vue View File

2303
                 record_date: this.record_date,
2303
                 record_date: this.record_date,
2304
                 his_patient_id: this.hisPatientInfo.id,
2304
                 his_patient_id: this.hisPatientInfo.id,
2305
                 reg_type: this.register_type,
2305
                 reg_type: this.register_type,
2306
+                patient_diagnose:""
2306
               }
2307
               }
2307
 
2308
 
2308
               for (let i = 0; i < this.prescriptions.length; i++) {
2309
               for (let i = 0; i < this.prescriptions.length; i++) {
2725
                 record_date: this.end_time,
2726
                 record_date: this.end_time,
2726
                 his_patient_id: this.hisPatientInfo.id,
2727
                 his_patient_id: this.hisPatientInfo.id,
2727
                 reg_type: this.register_type,
2728
                 reg_type: this.register_type,
2728
-                p_type: 1
2729
+                p_type: 1,
2730
+                patient_diagnose:""
2729
               }
2731
               }
2730
 
2732
 
2731
               var month_prescriptions = this.deepClone(this.month_prescriptions)
2733
               var month_prescriptions = this.deepClone(this.month_prescriptions)

+ 1 - 0
src/xt_pages/hospitalStation/components/dialysisIndex.vue View File

63
           :stockType="stockType"
63
           :stockType="stockType"
64
           :mode_id="mode_id"
64
           :mode_id="mode_id"
65
           :is_advice_open="is_advice_open"
65
           :is_advice_open="is_advice_open"
66
+          :record_date="date"
66
         >
67
         >
67
         </nav-igation>
68
         </nav-igation>
68
 
69
 

File diff suppressed because it is too large
+ 3570 - 3544
src/xt_pages/hospitalStation/doctorDesk.vue


File diff suppressed because it is too large
+ 552 - 449
src/xt_pages/hospitalStation/hospitalBatchStatementPrint.vue


+ 34 - 1
src/xt_pages/management/components/UserForm.vue View File

979
                 </td>
979
                 </td>
980
 
980
 
981
                 <td style="text-align:center;font-size:15px;height:30px">
981
                 <td style="text-align:center;font-size:15px;height:30px">
982
-                  {{ item.user_name }}
982
+                  <!-- {{ item.user_name }} -->
983
+
984
+                  <span v-if="setAdminUserES(item.admin_user_id?item.admin_user_id:item.admin_user_id) == ''">
985
+                     {{ item.user_name }}
986
+                  </span>
987
+                  <span v-else>
988
+                      <img style="height:30px;" :src="setAdminUserES(item.admin_user_id?item.admin_user_id:item.admin_user_id)" alt="" srcset="">
989
+                  </span>
983
                 </td>
990
                 </td>
984
               </tr>
991
               </tr>
985
             </table>
992
             </table>
1202
       four: true,
1209
       four: true,
1203
       showone: false,
1210
       showone: false,
1204
       org_id:0,
1211
       org_id:0,
1212
+      operators: [],
1213
+      operatorMaps:{},
1205
     };
1214
     };
1206
   },
1215
   },
1207
   methods: {
1216
   methods: {
1568
         if (response.data.state === 1) {
1577
         if (response.data.state === 1) {
1569
           var approle = response.data.data.approle;
1578
           var approle = response.data.data.approle;
1570
           this.autograph = approle;
1579
           this.autograph = approle;
1580
+          this.operators =  response.data.data.operators
1581
+          if (this.operators.length > 0) {
1582
+              var operatorsLen = this.operators.length;
1583
+              for (var index = 0; index < operatorsLen; index++) {
1584
+                this.$set(
1585
+                  this.operatorMaps,
1586
+                  this.operators[index].id,
1587
+                  this.operators[index]
1588
+                );
1589
+              }
1590
+            }
1571
         }
1591
         }
1572
       });
1592
       });
1573
     },
1593
     },
2596
       formatJson(filterVal, jsonData) {
2616
       formatJson(filterVal, jsonData) {
2597
         return jsonData.map(v => filterVal.map(j => v[j]));
2617
         return jsonData.map(v => filterVal.map(j => v[j]));
2598
       },
2618
       },
2619
+      setAdminUserES(id) {
2620
+           
2621
+           if (id === 0) {
2622
+           return ''
2623
+           }
2624
+           var user_name = ""
2625
+           for(let i=0;i<this.operators.length;i++){
2626
+              if(id == this.operators[i].admin_user_id){
2627
+                 user_name = this.operators[i].url
2628
+              }
2629
+           }
2630
+           return user_name
2631
+       },
2599
     },
2632
     },
2600
   created() {
2633
   created() {
2601
     this.getAllSubregion();
2634
     this.getAllSubregion();

+ 2 - 4
src/xt_pages/management/components/WaterForm.vue View File

152
          <el-row>
152
          <el-row>
153
             <el-col :span="8">
153
             <el-col :span="8">
154
                 <el-form-item label="精密过滤器(MPa):"  class="st">
154
                 <el-form-item label="精密过滤器(MPa):"  class="st">
155
-                    <el-input  v-model.number="form.ultrafilter"  style="width:100px" oninput="value=value.replace(/[^\d^\.]/g, '')"></el-input>
155
+                    <el-input  v-model="form.ultrafilter"  style="width:100px"></el-input>
156
                 </el-form-item>
156
                 </el-form-item>
157
             </el-col>
157
             </el-col>
158
          </el-row>
158
          </el-row>
164
          <el-row>
164
          <el-row>
165
             <el-col :span="8">
165
             <el-col :span="8">
166
                 <el-form-item label="硬度监测(mg/l):"  class="st">
166
                 <el-form-item label="硬度监测(mg/l):"  class="st">
167
-                    <el-input  v-model="form.hardness_monitoring" style="width:100px"
168
-                    oninput="value=value.replace(/[^\d.]/g, '').replace(/\.{2,}/g, '.').replace('.', '$#$').replace(/\./g, '').replace('$#$', '.').replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3').replace(/^\./g, '')"
169
-                     ></el-input>
167
+                    <el-input  v-model="form.hardness_monitoring" style="width:100px"></el-input>
170
                 </el-form-item>
168
                 </el-form-item>
171
             </el-col>
169
             </el-col>
172
             <el-col :span="8">
170
             <el-col :span="8">

+ 40 - 7
src/xt_pages/management/components/WaterFormList.vue View File

152
           <el-table-column label="水质监测" align="center" min-width="110px">
152
           <el-table-column label="水质监测" align="center" min-width="110px">
153
             <el-table-column label="硬度" align="center" min-width="110px">
153
             <el-table-column label="硬度" align="center" min-width="110px">
154
               <template slot-scope="scope">
154
               <template slot-scope="scope">
155
-                {{ scope.row.hardness_monitoring?scope.row.hardness_monitoring:"" }}
155
+                {{ scope.row.hardness_monitoring?scope.row.hardness_monitoring:0 }}
156
               </template>
156
               </template>
157
             </el-table-column>
157
             </el-table-column>
158
             <el-table-column label="总氯" align="center" min-width="110px">
158
             <el-table-column label="总氯" align="center" min-width="110px">
196
             <el-table-column label="记录人" align="center" min-width="110px">
196
             <el-table-column label="记录人" align="center" min-width="110px">
197
               <template slot-scope="scope">
197
               <template slot-scope="scope">
198
                  {{ getDocName(scope.row.admin_user_id) }}
198
                  {{ getDocName(scope.row.admin_user_id) }}
199
+                
199
               </template>
200
               </template>
200
             </el-table-column>
201
             </el-table-column>
201
 
202
 
397
          <el-row>
398
          <el-row>
398
             <el-col :span="8">
399
             <el-col :span="8">
399
                 <el-form-item label="精密过滤器(MPa):"  class="st">
400
                 <el-form-item label="精密过滤器(MPa):"  class="st">
400
-                    <el-input  v-model="form.ultrafilter" style="width:100px" type="number"></el-input>
401
+                    <el-input  v-model="form.ultrafilter" style="width:100px"></el-input>
401
                 </el-form-item>
402
                 </el-form-item>
402
             </el-col>
403
             </el-col>
403
          </el-row>
404
          </el-row>
735
                 <td
736
                 <td
736
                   style="text-align:center;width:60px;font-size:15px"
737
                   style="text-align:center;width:60px;font-size:15px"
737
                 >
738
                 >
738
-                {{ item.hardness_monitoring }}
739
+                {{ item.hardness_monitoring?item.hardness_monitoring:0 }}
739
                 </td>
740
                 </td>
740
                 <td
741
                 <td
741
                   style="text-align:center;width:60px;font-size:15px"
742
                   style="text-align:center;width:60px;font-size:15px"
776
                 </td>
777
                 </td>
777
 
778
 
778
                 <td style="text-align:center;width:70px;font-size:15px">
779
                 <td style="text-align:center;width:70px;font-size:15px">
779
-                  {{ getDocName(item.admin_user_id) }}
780
+                  <!-- {{ getDocName(item.admin_user_id) }} -->
781
+
782
+                  <span v-if="setAdminUserES(item.admin_user_id?item.admin_user_id:item.admin_user_id) == ''">
783
+                     {{getDocName(item.admin_user_id)}}
784
+                 </span>
785
+                  <span v-else>
786
+                      <img style="height:30px;" :src="setAdminUserES(item.admin_user_id?item.admin_user_id:item.admin_user_id)" alt="" srcset="">
787
+                  </span>
780
                 </td>
788
                 </td>
781
 
789
 
782
 
790
 
878
            nurseList:[],
886
            nurseList:[],
879
            selectCulture: [],
887
            selectCulture: [],
880
            hiddenShow:false,
888
            hiddenShow:false,
889
+           operators: [],
890
+           operatorMaps:{},
881
         }
891
         }
882
       },
892
       },
883
       methods:{
893
       methods:{
905
                var total = response.data.data.total
915
                var total = response.data.data.total
906
                this.total = total
916
                this.total = total
907
                this.adminRole = response.data.data.adminRole
917
                this.adminRole = response.data.data.adminRole
908
-
918
+               this.operators = response.data.data.operators
919
+               if (this.operators.length > 0) {
920
+                var operatorsLen = this.operators.length
921
+                for (var index = 0; index < operatorsLen; index++) {
922
+                this.$set(
923
+                    this.operatorMaps,
924
+                    this.operators[index].id,
925
+                    this.operators[index]
926
+                )
927
+               }
928
+              }
909
 
929
 
910
              }
930
              }
911
           })
931
           })
1047
             this.form.snd_tank = detail.snd_tank?detail.snd_tank:""
1067
             this.form.snd_tank = detail.snd_tank?detail.snd_tank:""
1048
             this.form.resin_tank = detail.resin_tank?detail.resin_tank:""
1068
             this.form.resin_tank = detail.resin_tank?detail.resin_tank:""
1049
             this.form.ultrafilter = detail.ultrafilter?detail.ultrafilter:""
1069
             this.form.ultrafilter = detail.ultrafilter?detail.ultrafilter:""
1050
-            this.form.hardness_monitoring = detail.hardness_monitoring?detail.hardness_monitoring:""
1070
+            this.form.hardness_monitoring = detail.hardness_monitoring?detail.hardness_monitoring:0
1051
             this.form.total_chlorine_detection= detail.total_chlorine_detection?detail.total_chlorine_detection:""
1071
             this.form.total_chlorine_detection= detail.total_chlorine_detection?detail.total_chlorine_detection:""
1052
             this.form.ph_detection = detail.ph_detection?detail.ph_detection:""
1072
             this.form.ph_detection = detail.ph_detection?detail.ph_detection:""
1053
             this.form.concentration_of_peroxyacetic_acid = detail.concentration_of_peroxyacetic_acid?detail.concentration_of_peroxyacetic_acid:""
1073
             this.form.concentration_of_peroxyacetic_acid = detail.concentration_of_peroxyacetic_acid?detail.concentration_of_peroxyacetic_acid:""
1336
         formatJson(filterVal, jsonData) {
1356
         formatJson(filterVal, jsonData) {
1337
           return jsonData.map(v => filterVal.map(j => v[j]));
1357
           return jsonData.map(v => filterVal.map(j => v[j]));
1338
         },
1358
         },
1359
+        setAdminUserES(id) {
1360
+           
1361
+           if (id === 0) {
1362
+           return ''
1363
+           }
1364
+           var user_name = ""
1365
+           for(let i=0;i<this.operators.length;i++){
1366
+              if(id == this.operators[i].admin_user_id){
1367
+                 user_name = this.operators[i].url
1368
+              }
1369
+           }
1370
+         
1371
+          return user_name
1372
+       },
1339
       },
1373
       },
1340
       created(){
1374
       created(){
1341
-        console.log("list+++++++++++++++++++++++")
1342
         this.getlist()
1375
         this.getlist()
1343
       }
1376
       }
1344
     }
1377
     }

+ 20 - 1
src/xt_pages/management/index.vue View File

30
           @click="seahcerMacherInfo()"
30
           @click="seahcerMacherInfo()"
31
           >搜索</el-button
31
           >搜索</el-button
32
         >
32
         >
33
+
34
+        <!-- <el-button
35
+          class="filter-item"
36
+          type="primary"
37
+          icon="el-icon-search"
38
+          size="small"
39
+          @click="Auto()"
40
+          >自动生成</el-button
41
+        > -->
33
       </div>
42
       </div>
34
 
43
 
35
       <div class="cell clearfix">
44
       <div class="cell clearfix">
169
 
178
 
170
 <script>
179
 <script>
171
 import BreadCrumb from "../components/bread-crumb";
180
 import BreadCrumb from "../components/bread-crumb";
172
-import { getAllMachineInfo, getAllSubregion,getUserMachTotalCount,deleteManageMent } from "@/api/manage";
181
+import { getAllMachineInfo, getAllSubregion,getUserMachTotalCount,deleteManageMent,getInformationManaList } from "@/api/manage";
173
 import ManageForm from "./components/ManageForm";
182
 import ManageForm from "./components/ManageForm";
174
 
183
 
175
 export default {
184
 export default {
397
           })
406
           })
398
         }
407
         }
399
       
408
       
409
+    },
410
+
411
+    Auto(){
412
+       
413
+      getInformationManaList().then(response=>{
414
+        if(response.data.state == 1){
415
+          var list = response.data.data.list
416
+          this.$message.success("保存成功!")
417
+        }
418
+      })
400
     }
419
     }
401
   },
420
   },
402
   created() {
421
   created() {

+ 13 - 13
src/xt_pages/outpatientCharges/components/chargeDialog.vue View File

291
           return
291
           return
292
         }
292
         }
293
         console.log("val",val)
293
         console.log("val",val)
294
-        if (parseFloat(this.form.tmp_decimal) > parseFloat(this.form.private_price)){
295
-          // alert("押金不得大于自费金额")
296
-          this.$message.error("押金不得大于自费金额");
297
-          this.form.tmp_decimal = ""
298
-          this.form.pay_price = this.tmp_pay
299
-          return
300
-        }
294
+        // if (parseFloat(this.form.tmp_decimal) > parseFloat(this.form.private_price)){
295
+        //   // alert("押金不得大于自费金额")
296
+        //   this.$message.error("押金不得大于自费金额");
297
+        //   this.form.tmp_decimal = ""
298
+        //   this.form.pay_price = this.tmp_pay
299
+        //   return
300
+        // }
301
         // this.form.private_price = parseFloat(this.form.tmp_decimal) + parseFloat(this.form.pay_price)
301
         // this.form.private_price = parseFloat(this.form.tmp_decimal) + parseFloat(this.form.pay_price)
302
 
302
 
303
         this.form.pay_price = ((parseFloat(this.form.private_price)*10000 - parseFloat(this.form.tmp_decimal)*10000)/10000).toFixed(2)
303
         this.form.pay_price = ((parseFloat(this.form.private_price)*10000 - parseFloat(this.form.tmp_decimal)*10000)/10000).toFixed(2)
314
         }else {
314
         }else {
315
           //储存临时押金
315
           //储存临时押金
316
           this.tmp_pay = this.form.pay_price
316
           this.tmp_pay = this.form.pay_price
317
-          if (parseFloat(this.form.tmp_decimal) > parseFloat(this.form.private_price)){
318
-            this.form.tmp_decimal = 0
319
-                // alert("押金不得大于自费金额")
320
-            this.$message.error("押金不得大于自费金额");
321
-            return
322
-          }
317
+          // if (parseFloat(this.form.tmp_decimal) > parseFloat(this.form.private_price)){
318
+          //   this.form.tmp_decimal = 0
319
+          //       // alert("押金不得大于自费金额")
320
+          //   // this.$message.error("押金不得大于自费金额");
321
+          //   return
322
+          // }
323
           // this.form.private_price = parseFloat(this.form.tmp_decimal) + parseFloat(this.form.pay_price)
323
           // this.form.private_price = parseFloat(this.form.tmp_decimal) + parseFloat(this.form.pay_price)
324
           this.tmp_pay = this.form.pay_price
324
           this.tmp_pay = this.form.pay_price
325
           this.form.pay_price = ((parseFloat(this.form.private_price)*10000 - parseFloat(this.form.tmp_decimal)*10000)/10000).toFixed(2)
325
           this.form.pay_price = ((parseFloat(this.form.private_price)*10000 - parseFloat(this.form.tmp_decimal)*10000)/10000).toFixed(2)

+ 1 - 2
src/xt_pages/outpatientCharges/components/registerDialog.vue View File

634
           'certificates':this.form.certificates,
634
           'certificates':this.form.certificates,
635
         }
635
         }
636
 
636
 
637
-        if ((this.$store.getters.xt_user.org_id == 10387 && this.form.id_card_type ==  4) || (this.$store.getters.xt_user.org_id == 4 && this.form.id_card_type ==  4) || (this.$store.getters.xt_user.org_id == 10318 && this.form.id_card_type ==  4) ){
637
+        if ((this.$store.getters.xt_user.org_id == 10387 && this.form.id_card_type ==  4) || (this.$store.getters.xt_user.org_id == 4 && this.form.id_card_type ==  4)) {
638
           try {
638
           try {
639
             //检测当前浏览器是否支持websocket模式
639
             //检测当前浏览器是否支持websocket模式
640
             window.WebSocket = window.WebSocket || window.MozWebSocket;
640
             window.WebSocket = window.WebSocket || window.MozWebSocket;
712
                       that.form.phone = patient.phone
712
                       that.form.phone = patient.phone
713
                       that.form.id_card = patient.id_card_no
713
                       that.form.id_card = patient.id_card_no
714
                       that.form.social_type = parseInt(response.data.data.insutype)
714
                       that.form.social_type = parseInt(response.data.data.insutype)
715
-
716
                     }
715
                     }
717
                     that.$message({ message: '读卡成功', type: 'success' })
716
                     that.$message({ message: '读卡成功', type: 'success' })
718
                   }
717
                   }

+ 6 - 4
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

3658
           "admin_user_id":this.$store.getters.xt_user.user.id,
3658
           "admin_user_id":this.$store.getters.xt_user.user.id,
3659
           'his_patient_id': this.hisPatientInfo.id,
3659
           'his_patient_id': this.hisPatientInfo.id,
3660
         }
3660
         }
3661
-        if ((this.$store.getters.xt_user.org_id == 10387) || (this.$store.getters.xt_user.org_id == 10318)){
3661
+        if ((this.$store.getters.xt_user.org_id == 10387)){
3662
           try {
3662
           try {
3663
             //检测当前浏览器是否支持websocket模式
3663
             //检测当前浏览器是否支持websocket模式
3664
             window.WebSocket = window.WebSocket || window.MozWebSocket;
3664
             window.WebSocket = window.WebSocket || window.MozWebSocket;
3671
             this.ws.onopen = function(event){
3671
             this.ws.onopen = function(event){
3672
               if (that.$store.getters.xt_user.org_id == 10387){
3672
               if (that.$store.getters.xt_user.org_id == 10387){
3673
                 that.ws.send("{\"url\":\"http://10.93.33.243:20001/localcfc/api/hsecfc/localQrCodeQuery\",\"indata\":{\"data\":{\"businessType\":\"01301\",\"deviceType\":\"\",\"officeId\":\"32760\",\"officeName\":\"肾内科\",\"operatorId\":\"admin\",\"operatorName\":\"罗佳菊\",\"orgId\":\"H43082200408\"},\"orgId\":\"H43082200408\",\"transType\":\"ec.query\"}}");
3673
                 that.ws.send("{\"url\":\"http://10.93.33.243:20001/localcfc/api/hsecfc/localQrCodeQuery\",\"indata\":{\"data\":{\"businessType\":\"01301\",\"deviceType\":\"\",\"officeId\":\"32760\",\"officeName\":\"肾内科\",\"operatorId\":\"admin\",\"operatorName\":\"罗佳菊\",\"orgId\":\"H43082200408\"},\"orgId\":\"H43082200408\",\"transType\":\"ec.query\"}}");
3674
-              }else if(that.$store.getters.xt_user.org_id == 10318){
3675
-                that.ws.send("{\"url\":\"http://igb.hsa.gdgov.cn/prd_nation_eccode/prd_eccode/localcfc/api/hsecfc/localQrCodeQuery\",\"indata\":{\"data\":{\"businessType\":\"01301\",\"deviceType\":\"\",\"officeId\":\"32760\",\"officeName\":\"肾内科\",\"operatorId\":\"admin\",\"operatorName\":\"邹刘阳\",\"orgId\":\"H44011701749\"},\"orgId\":\"H44011701749\",\"transType\":\"ec.query\"}}");
3676
-              }else if(that.$store.getters.xt_user.org_id == 4){
3674
+              }
3675
+              // else if(that.$store.getters.xt_user.org_id == 10318){
3676
+              //   that.ws.send("{\"url\":\"http://igb.hsa.gdgov.cn/prd_nation_eccode/prd_eccode/localcfc/api/hsecfc/localQrCodeQuery\",\"indata\":{\"data\":{\"businessType\":\"01301\",\"deviceType\":\"\",\"officeId\":\"32760\",\"officeName\":\"肾内科\",\"operatorId\":\"admin\",\"operatorName\":\"邹刘阳\",\"orgId\":\"H44011701749\"},\"orgId\":\"H44011701749\",\"transType\":\"ec.query\"}}");
3677
+              // }
3678
+              else if(that.$store.getters.xt_user.org_id == 4){
3677
                 that.ws.send("{\"url\":\"http://igb.hsa.gdgov.cn/prd_nation_eccode/prd_eccode/localcfc/api/hsecfc/localQrCodeQuery\",\"indata\":{\"data\":{\"businessType\":\"01301\",\"deviceType\":\"\",\"officeId\":\"32760\",\"officeName\":\"肾内科\",\"operatorId\":\"admin\",\"operatorName\":\"邹刘阳\",\"orgId\":\"H44011701749\"},\"orgId\":\"H44011701749\",\"transType\":\"ec.query\"}}");
3679
                 that.ws.send("{\"url\":\"http://igb.hsa.gdgov.cn/prd_nation_eccode/prd_eccode/localcfc/api/hsecfc/localQrCodeQuery\",\"indata\":{\"data\":{\"businessType\":\"01301\",\"deviceType\":\"\",\"officeId\":\"32760\",\"officeName\":\"肾内科\",\"operatorId\":\"admin\",\"operatorName\":\"邹刘阳\",\"orgId\":\"H44011701749\"},\"orgId\":\"H44011701749\",\"transType\":\"ec.query\"}}");
3678
               }
3680
               }
3679
             };
3681
             };

+ 71 - 6
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

60
                   </el-form-item>
60
                   </el-form-item>
61
 
61
 
62
 
62
 
63
+                
64
+
65
+
63
                   <el-form-item label="过敏病史: " prop="name" label-position="right">
66
                   <el-form-item label="过敏病史: " prop="name" label-position="right">
64
                       <el-autocomplete
67
                       <el-autocomplete
65
                               style="width:100%;"
68
                               style="width:100%;"
69
                               placeholder="请输入内容"
72
                               placeholder="请输入内容"
70
                       ></el-autocomplete>
73
                       ></el-autocomplete>
71
                   </el-form-item>
74
                   </el-form-item>
75
+
76
+
77
+                  <el-form-item label="疾病诊断:" prop="name" label-position="right" style="width:66.6%;" v-if="org_id==3877 || org_id ==10485 || org_id == 0 ">
78
+
79
+                    <el-select style="width:100%;" v-model="patient_diagnose" placeholder="" multiple filterable>
80
+                        <el-option
81
+                                v-for="(item,index) in patient_diagnoses"
82
+                                :key="index"
83
+                                :label="item.class_name"
84
+                                :value="item.id">
85
+                        </el-option>
86
+                    </el-select>
87
+                  </el-form-item>
72
               </el-form>
88
               </el-form>
73
               <div class="tabsBox">
89
               <div class="tabsBox">
74
 
90
 
520
       default: function() {
536
       default: function() {
521
         return []
537
         return []
522
       }
538
       }
523
-    }
539
+    },
540
+    patient_diagnoses:Array,
524
   },
541
   },
525
   components: {
542
   components: {
526
     DayPrescriptionTable,
543
     DayPrescriptionTable,
644
       sick: [],
661
       sick: [],
645
       diagnoses: [],
662
       diagnoses: [],
646
       diagnose: [],
663
       diagnose: [],
664
+      patient_diagnose:[],
665
+      patient_diagnose_list:[],
647
       state1: '',
666
       state1: '',
648
       curTotal: 0,
667
       curTotal: 0,
649
       prescription_id: 0,
668
       prescription_id: 0,
665
           }
684
           }
666
         }
685
         }
667
       },
686
       },
668
-      hisList: []
687
+      hisList: [],
688
+      patient_diagnose:[]
669
 
689
 
670
     }
690
     }
671
   },
691
   },
1893
       this.teamList = []
1913
       this.teamList = []
1894
 
1914
 
1895
     },
1915
     },
1896
-    setData(data, info, admin_info, doctors, department, hisPatientInfo, month_data, last_info,sick,diagnoses) {
1916
+    setData(data, info, admin_info, doctors, department, hisPatientInfo, month_data, last_info,sick,diagnoses,patient_diagnose) {
1897
       console.log("诊断23333333333333",this.diagnose)
1917
       console.log("诊断23333333333333",this.diagnose)
1898
       this.sick = sick
1918
       this.sick = sick
1899
       this.diagnoses = diagnoses
1919
       this.diagnoses = diagnoses
1900
       this.department = department
1920
       this.department = department
1901
       this.curMonthPrescriptions = {}
1921
       this.curMonthPrescriptions = {}
1902
       this.curPrescriptions = {}
1922
       this.curPrescriptions = {}
1923
+      this.patient_diagnose = patient_diagnose
1903
       // this.$refs.tabProjectTeam.clearSelection()
1924
       // this.$refs.tabProjectTeam.clearSelection()
1904
 
1925
 
1905
       for (let i = 0; i < doctors.length; i++) {
1926
       for (let i = 0; i < doctors.length; i++) {
2056
         }
2077
         }
2057
 
2078
 
2058
       }
2079
       }
2080
+      
2081
+      // console.log("info233333333333333333333",info.id)
2082
+      // console.log("LAST_INFO2323232323WO",last_info.patient_diagnosis)
2083
+      this.patient_diagnose = []
2084
+      if(info.id == 0){
2085
+        if (last_info.patient_diagnosis.length == 0) {
2086
+          this.patient_diagnose = []
2087
+        } else {
2088
+          for (let i = 0; i < last_info.patient_diagnosis.split(",").length; i++) {
2089
+            if(last_info.patient_diagnosis.split(',')[i].length > 0) {
2090
+              this.patient_diagnose.push(parseInt(last_info.patient_diagnosis.split(',')[i]))
2091
+            }
2092
+          }
2093
+        }
2094
+      }
2095
+
2096
+      if(info.id > 0){
2097
+       
2098
+        if (info.patient_diagnosis.length == 0) {
2099
+          this.patient_diagnose = []
2100
+        } else {
2101
+          this.patient_diagnose = []
2102
+          for (let i = 0; i < info.patient_diagnosis.split(",").length; i++) {
2103
+           
2104
+            if(info.patient_diagnosis.split(',')[i].length > 0) {
2105
+              this.patient_diagnose.push(parseInt(info.patient_diagnosis.split(',')[i]))
2106
+            }
2107
+
2108
+          }
2109
+
2110
+        }
2111
+        console.log("hhahahahah",this.patient_diagnose)
2112
+      }
2059
 
2113
 
2060
       this.state1 = info.sick_type
2114
       this.state1 = info.sick_type
2061
       if (this.state1 == 0 || this.state1 == '') {
2115
       if (this.state1 == 0 || this.state1 == '') {
2316
 
2370
 
2317
 
2371
 
2318
             this.$emit('editKeepLoad', true)
2372
             this.$emit('editKeepLoad', true)
2373
+            var str = ""
2374
+            if(this.patient_diagnoses!=""){
2375
+              str =this.patient_diagnose.join(',')
2376
+            }
2319
             let params = {
2377
             let params = {
2320
               p_type: 2,
2378
               p_type: 2,
2321
               patient_id: this.patientInfo.id,
2379
               patient_id: this.patientInfo.id,
2327
               record_date: this.record_date,
2385
               record_date: this.record_date,
2328
               his_patient_id: this.hisPatientInfo.id,
2386
               his_patient_id: this.hisPatientInfo.id,
2329
               reg_type: this.register_type,
2387
               reg_type: this.register_type,
2388
+              patient_diagnose:str
2330
             }
2389
             }
2331
-
2390
+            
2332
             for (let i = 0; i < this.prescriptions.length; i++) {
2391
             for (let i = 0; i < this.prescriptions.length; i++) {
2333
               if (this.prescriptions[i].advices.length > 0 && this.prescriptions[i].project.length == 0) {
2392
               if (this.prescriptions[i].advices.length > 0 && this.prescriptions[i].project.length == 0) {
2334
                 this.prescriptions[i]['type'] = 1
2393
                 this.prescriptions[i]['type'] = 1
2656
 
2715
 
2657
                 if(project_arr.length > 0){
2716
                 if(project_arr.length > 0){
2658
                     let objInfo = {};
2717
                     let objInfo = {};
2718
+
2659
                     project_arr.forEach((item, index) => {
2719
                     project_arr.forEach((item, index) => {
2660
                     let { project_id } = item.project_id;
2720
                     let { project_id } = item.project_id;
2661
                     if (!objInfo[project_id]) {
2721
                     if (!objInfo[project_id]) {
2737
             this.$message.error('科室不能为空')
2797
             this.$message.error('科室不能为空')
2738
             return
2798
             return
2739
           }
2799
           }
2740
-
2800
+          
2801
+          var str = ""
2802
+          if(patient_diagnose!=""){
2803
+             str = this.patient_diagnose.join(',')
2804
+          }
2741
           if (index == 1) {
2805
           if (index == 1) {
2742
             let params = {
2806
             let params = {
2743
               patient_id: this.patientInfo.id,
2807
               patient_id: this.patientInfo.id,
2749
               record_date: this.end_time,
2813
               record_date: this.end_time,
2750
               his_patient_id: this.hisPatientInfo.id,
2814
               his_patient_id: this.hisPatientInfo.id,
2751
               reg_type: this.register_type,
2815
               reg_type: this.register_type,
2752
-              p_type: 2
2816
+              p_type: 2,
2817
+              patient_diagnose:str
2753
             }
2818
             }
2754
 
2819
 
2755
             var month_prescriptions = this.deepClone(this.month_prescriptions)
2820
             var month_prescriptions = this.deepClone(this.month_prescriptions)

+ 1 - 0
src/xt_pages/outpatientDoctorStation/components/dialysisIndex.vue View File

63
           :lastAssessment="lastAssessment"
63
           :lastAssessment="lastAssessment"
64
           :stockType="stockType"
64
           :stockType="stockType"
65
           :mode_id="mode_id"
65
           :mode_id="mode_id"
66
+          :record_date="date"
66
         >
67
         >
67
         </nav-igation>
68
         </nav-igation>
68
 
69
 

+ 52 - 19
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

136
 
136
 
137
             <!-- <el-button size="small" ref="button_four"  @click="open(5)" type="primary" :disabled='prescriptions && prescriptions[0].advices && prescriptions[0].project ? prescriptions[0].advices.length == 0 && prescriptions[0].project.length == 0 : false'>存模板</el-button> -->
137
             <!-- <el-button size="small" ref="button_four"  @click="open(5)" type="primary" :disabled='prescriptions && prescriptions[0].advices && prescriptions[0].project ? prescriptions[0].advices.length == 0 && prescriptions[0].project.length == 0 : false'>存模板</el-button> -->
138
           </div>
138
           </div>
139
-          
140
           <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子病历'">
139
           <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子病历'">
141
             <el-button size="small" @click="opentwo(1)" type="primary">保存</el-button>
140
             <el-button size="small" @click="opentwo(1)" type="primary">保存</el-button>
142
             <el-button size="small" @click="opentwo(2)" type="primary">打印</el-button>
141
             <el-button size="small" @click="opentwo(2)" type="primary">打印</el-button>
166
                            :org_id="org_id"
165
                            :org_id="org_id"
167
                            ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo"
166
                            ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo"
168
                            v-on:getSunziValue = "getSunziValue"
167
                            v-on:getSunziValue = "getSunziValue"
169
-                           :hisPatientInfo="hisPatientInfo" @event1="changetwo($event)" @editKeepLoad="editKeepLoad"
168
+                           :hisPatientInfo="hisPatientInfo" :patient_diagnoses="patient_diagnoses" @event1="changetwo($event)" @editKeepLoad="editKeepLoad"
170
                            v-if="titleType == '电子处方'" style="flex:1;"></desk-prescription>
169
                            v-if="titleType == '电子处方'" style="flex:1;"></desk-prescription>
171
 
170
 
172
 
171
 
608
       printList:[],
607
       printList:[],
609
       printDate:'',
608
       printDate:'',
610
       anticoagulants_confit:null,
609
       anticoagulants_confit:null,
610
+      patient_diagnoses:[]
611
     }
611
     }
612
   },
612
   },
613
 
613
 
1442
             this.diagnoses = []
1442
             this.diagnoses = []
1443
           }
1443
           }
1444
 
1444
 
1445
+          var patientDiagnose = response.data.data.patientDiagnose
1446
+
1447
+          if(patientDiagnose!=null && patientDiagnose.length >0){
1448
+            this.patient_diagnoses = []
1449
+            this.patient_diagnoses = patientDiagnose.sort(this.compare('sort'))
1450
+          }else{
1451
+            this.patient_diagnoses = []
1452
+          }
1453
+
1445
           this.additions = response.data.data.additions
1454
           this.additions = response.data.data.additions
1446
 
1455
 
1447
         }
1456
         }
1460
         'record_date': this.record_date,
1469
         'record_date': this.record_date,
1461
         'type': this.radio,
1470
         'type': this.radio,
1462
         'sch_type': this.schedule_type
1471
         'sch_type': this.schedule_type
1463
-
1464
       }
1472
       }
1473
+      
1465
       this.un_cure_data = []
1474
       this.un_cure_data = []
1466
       this.cure_data = []
1475
       this.cure_data = []
1467
       this.all_data = []
1476
       this.all_data = []
1756
               // }
1765
               // }
1757
 
1766
 
1758
               var preTime = nowTime
1767
               var preTime = nowTime
1759
-
1760
-              if (this.$store.getters.xt_user.org.id != 9919){
1768
+              if ( this.org_id != 0 && this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485){
1761
                 if (prescription.pre_time == 0) {
1769
                 if (prescription.pre_time == 0) {
1762
                   if (this.schedule.schedule_type == 1) {
1770
                   if (this.schedule.schedule_type == 1) {
1763
                     preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
1771
                     preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
1770
                 } else {
1778
                 } else {
1771
                   preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
1779
                   preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
1772
                 }
1780
                 }
1781
+              }else{
1782
+                if (prescription.pre_time == 0) {
1783
+                  preTime = nowTime
1784
+                } else {
1785
+                  preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
1786
+                }
1773
               }
1787
               }
1774
               console.log("is_medicine")
1788
               console.log("is_medicine")
1775
               console.log(is_medicine)
1789
               console.log(is_medicine)
1908
                   tempProject.push(obj)
1922
                   tempProject.push(obj)
1909
                 }
1923
                 }
1910
                 var preTime = nowTime
1924
                 var preTime = nowTime
1911
-                if (this.$store.getters.xt_user.org.id != 9919) {
1925
+                if (this.org_id != 0 && this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485) {
1912
                   if (this.schedule.schedule_type == 1) {
1926
                   if (this.schedule.schedule_type == 1) {
1913
                      preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
1927
                      preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
1914
                   } else if (this.schedule.schedule_type == 2) {
1928
                   } else if (this.schedule.schedule_type == 2) {
1962
             }
1976
             }
1963
           }
1977
           }
1964
           console.log('~~~~~00000222222',this.prescriptions)
1978
           console.log('~~~~~00000222222',this.prescriptions)
1965
-          this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis)
1979
+          this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis,this.patient_diagnoses)
1966
         }
1980
         }
1967
       })
1981
       })
1968
 
1982
 
2033
                 // this.setMonthPrescription(month_prescriptions)
2047
                 // this.setMonthPrescription(month_prescriptions)
2034
 
2048
 
2035
                 this.patientInfo = response.data.data.xt_info
2049
                 this.patientInfo = response.data.data.xt_info
2036
-                console.log("patientInfo++++++++++++++++",this.patientInfo)
2050
+
2037
                 this.hisPatientInfo = response.data.data.his_info
2051
                 this.hisPatientInfo = response.data.data.his_info
2038
                 this.case_history = response.data.data.case_history
2052
                 this.case_history = response.data.data.case_history
2039
 
2053
 
2218
                     // }
2232
                     // }
2219
 
2233
 
2220
                     var preTime = nowTime
2234
                     var preTime = nowTime
2221
-                    if (this.$store.getters.xt_user.org.id != 9919) {
2235
+                    if (this.org_id != 0 && this.$store.getters.xt_user.org.id != 9919 && this.$store.getters.xt_user.org.id != 10485 ) {
2222
                       if (prescription.pre_time == 0) {
2236
                       if (prescription.pre_time == 0) {
2223
                         if (this.schedule.schedule_type == 1) {
2237
                         if (this.schedule.schedule_type == 1) {
2224
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
2238
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
2230
                       } else {
2244
                       } else {
2231
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
2245
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
2232
                       }
2246
                       }
2247
+                    }else{
2248
+                      if (prescription.pre_time == 0) {
2249
+                        preTime = nowTime
2250
+                      } else {
2251
+                        preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
2252
+                      }
2233
                     }
2253
                     }
2234
 
2254
 
2235
 
2255
 
2370
 
2390
 
2371
                       var preTime = nowTime
2391
                       var preTime = nowTime
2372
                       // var preTime = ''
2392
                       // var preTime = ''
2373
-                      if(this.org_id != 9919 ) {
2393
+                      if(this.org_id != 0 && this.org_id !=  9919 && this.org_id !=  10485) {
2374
                         if (this.schedule.schedule_type == 1) {
2394
                         if (this.schedule.schedule_type == 1) {
2375
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
2395
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
2376
                         } else if (this.schedule.schedule_type == 2) {
2396
                         } else if (this.schedule.schedule_type == 2) {
2543
                     //   }
2563
                     //   }
2544
                   }
2564
                   }
2545
                 }
2565
                 }
2546
-                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis)
2566
+                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis,this.patient_diagnoses)
2547
                 this.$refs.child.watchSign = 0
2567
                 this.$refs.child.watchSign = 0
2548
               }
2568
               }
2549
             })
2569
             })
3066
                     // }
3086
                     // }
3067
                   }
3087
                   }
3068
                 }
3088
                 }
3069
-                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis)
3089
+                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis,this.patient_diagnoses)
3070
                 this.$refs.child.watchSign = 0
3090
                 this.$refs.child.watchSign = 0
3071
               }
3091
               }
3072
             })
3092
             })
3580
                   // }
3600
                   // }
3581
                 }
3601
                 }
3582
               }
3602
               }
3583
-              this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis)
3603
+              this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis,this.patient_diagnoses)
3584
               this.$refs.child.watchSign = 0
3604
               this.$refs.child.watchSign = 0
3585
             }
3605
             }
3586
           })
3606
           })
3876
 
3896
 
3877
                     var preTime = nowTime
3897
                     var preTime = nowTime
3878
 
3898
 
3879
-                    if(this.org_id != 9919 ) {
3899
+                    if(this.org_id != 0 && this.org_id != 9919 && this.org_id  != 10485 ) {
3880
                       if (prescription.pre_time == 0) {
3900
                       if (prescription.pre_time == 0) {
3881
                         if (this.schedule.schedule_type == 1) {
3901
                         if (this.schedule.schedule_type == 1) {
3882
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
3902
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
3888
                       } else {
3908
                       } else {
3889
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
3909
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
3890
                       }
3910
                       }
3911
+                    }else{
3912
+                      if (prescription.pre_time == 0) {
3913
+                        preTime = nowTime
3914
+                      } else {
3915
+                        preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
3916
+                      }
3891
                     }
3917
                     }
3892
 
3918
 
3893
                     let index = i + 1
3919
                     let index = i + 1
4024
 
4050
 
4025
                       // var preTime = nowTime
4051
                       // var preTime = nowTime
4026
                       var preTime = nowTime
4052
                       var preTime = nowTime
4027
-                      if(this.org_id != 9919 ) {
4053
+                      if( this.org_id != 0 && this.org_id != 9919 &&  this.org_id != 10485) {
4028
                         if (this.schedule.schedule_type == 1) {
4054
                         if (this.schedule.schedule_type == 1) {
4029
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
4055
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
4030
                         } else if (this.schedule.schedule_type == 2) {
4056
                         } else if (this.schedule.schedule_type == 2) {
4197
                     // }
4223
                     // }
4198
                   }
4224
                   }
4199
                 }
4225
                 }
4200
-                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis)
4226
+                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis,this.patient_diagnoses)
4201
               }
4227
               }
4202
             })
4228
             })
4203
 
4229
 
4507
 
4533
 
4508
                     var preTime = nowTime
4534
                     var preTime = nowTime
4509
 
4535
 
4510
-                    if(this.org_id != 9919) {
4536
+                    if(this.org_id != 0 && this.org_id != 9919 && this.org_id != 10485) {
4511
                       if (prescription.pre_time == 0) {
4537
                       if (prescription.pre_time == 0) {
4512
                         // preTime = nowTime
4538
                         // preTime = nowTime
4513
                         if (this.schedule.schedule_type == 1) {
4539
                         if (this.schedule.schedule_type == 1) {
4520
                       } else {
4546
                       } else {
4521
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
4547
                         preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
4522
                       }
4548
                       }
4549
+                    }else{
4550
+                      if (prescription.pre_time == 0) {
4551
+                        preTime = nowTime
4552
+
4553
+                      } else {
4554
+                        preTime = this.getTime(prescription.pre_time, '{y}-{m}-{d} {h}:{i}')
4555
+                      }
4523
                     }
4556
                     }
4524
 
4557
 
4525
                     let index = i + 1
4558
                     let index = i + 1
4657
 
4690
 
4658
                       var preTime = nowTime
4691
                       var preTime = nowTime
4659
                       // var preTime = ''
4692
                       // var preTime = ''
4660
-                      if(this.org_id != 9919 ) {
4693
+                      if(this.org_id != 0 && this.org_id != 9919  && this.org_id != 10485) {
4661
                         if (this.schedule.schedule_type == 1) {
4694
                         if (this.schedule.schedule_type == 1) {
4662
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
4695
                           preTime = nowYear + '-' + (nowMonth < 10 ? '0' + nowMonth : nowMonth) + '-' + (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + '7:00'
4663
                         } else if (this.schedule.schedule_type == 2) {
4696
                         } else if (this.schedule.schedule_type == 2) {
4713
 
4746
 
4714
                   }
4747
                   }
4715
                 }
4748
                 }
4716
-                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis)
4749
+                this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions, this.last_info, this.sick, this.diagnosis,this.patient_diagnoses)
4717
               }
4750
               }
4718
             })
4751
             })
4719
           } else {
4752
           } else {

+ 13 - 12
src/xt_pages/qcd/basicInformationAnalysis.vue View File

762
       }
762
       }
763
     },
763
     },
764
     selectLapseTo(state) {
764
     selectLapseTo(state) {
765
+      console.log("statt---23-322323",state)
765
       this.stateType = state;
766
       this.stateType = state;
766
       this.listQuery.state = state;
767
       this.listQuery.state = state;
767
       //获取本月当前机构的透析模式
768
       //获取本月当前机构的透析模式
1338
     },
1339
     },
1339
     selectSource(source) {
1340
     selectSource(source) {
1340
       this.sourceType = source
1341
       this.sourceType = source
1341
-      this.getDialysisModeType(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1342
-      this.getTotalLapseCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1343
-      this.getTotalSexCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1344
-      this.getTotalInfectiousCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1345
-      this.getTotalAgeCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1346
-      this.getTotalDialysisCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1342
+      this.getDialysisModeType(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1343
+      this.getTotalLapseCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1344
+      this.getTotalSexCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1345
+      this.getTotalInfectiousCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1346
+      this.getTotalAgeCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1347
+      this.getTotalDialysisCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1347
       this.getRolloutCount(this.lapsetoType,this.sourceType)
1348
       this.getRolloutCount(this.lapsetoType,this.sourceType)
1348
     },
1349
     },
1349
     selectLapseOne(lapseto) {
1350
     selectLapseOne(lapseto) {
1350
       console.log("lapseto22222",lapseto)
1351
       console.log("lapseto22222",lapseto)
1351
       this.lapsetoType = lapseto
1352
       this.lapsetoType = lapseto
1352
-      this.getDialysisModeType(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1353
-      this.getTotalLapseCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1354
-      this.getTotalSexCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1355
-      this.getTotalInfectiousCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1356
-      this.getTotalAgeCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1357
-      this.getTotalDialysisCount(this.startDate,this.endDate,this.lapsetoType,this.sourceType)
1353
+      this.getDialysisModeType(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1354
+      this.getTotalLapseCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1355
+      this.getTotalSexCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1356
+      this.getTotalInfectiousCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1357
+      this.getTotalAgeCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1358
+      this.getTotalDialysisCount(this.listQuery.start_time,this.list.listQuery.end_time,this.lapsetoType,this.sourceType)
1358
       this.getRolloutCount(this.lapsetoType,this.sourceType)
1359
       this.getRolloutCount(this.lapsetoType,this.sourceType)
1359
     },
1360
     },
1360
   },
1361
   },

+ 8 - 0
src/xt_pages/stock/drugs/drugStockInOrder.vue View File

175
           </template>
175
           </template>
176
         </el-table-column>
176
         </el-table-column>
177
 
177
 
178
+        <el-table-column label="审核人" align="center"  v-if="org_id == 3877 || org_id == 10318">
179
+          <template slot-scope="scope">
180
+            {{ getXuserName(scope.row.checker) }}
181
+          </template>
182
+        </el-table-column>
183
+
178
         <el-table-column label="入库方式" align="center">
184
         <el-table-column label="入库方式" align="center">
179
           <template slot-scope="scope">
185
           <template slot-scope="scope">
180
             <span v-if="scope.row.is_sys == 13">调拨入库</span>
186
             <span v-if="scope.row.is_sys == 13">调拨入库</span>
472
   name: "drugStockInOrder",
478
   name: "drugStockInOrder",
473
   components: { BreadCrumb },
479
   components: { BreadCrumb },
474
   created() {
480
   created() {
481
+    this.org_id = this.$store.getters.xt_user.org.id
475
     if (this.$route.path == "/Pharmacy/drugs/stock/in") {
482
     if (this.$route.path == "/Pharmacy/drugs/stock/in") {
476
       this.crumbs = [
483
       this.crumbs = [
477
         { path: false, name: "药品管理" },
484
         { path: false, name: "药品管理" },
552
         { id: 2, name: "未审核" },
559
         { id: 2, name: "未审核" },
553
       ],
560
       ],
554
       exportLoding:false,
561
       exportLoding:false,
562
+      org_id:0
555
     };
563
     };
556
   },
564
   },
557
 
565
 

+ 1 - 1
src/xt_pages/stock/drugs/drugStockInOrderDetailPrint.vue View File

59
               <td style="line-height:18px">{{ item.batch_number }}</td>
59
               <td style="line-height:18px">{{ item.batch_number }}</td>
60
               <td style="line-height:18px">{{ getTime(item.product_date,'{y}-{m}-{d}')}}</td>
60
               <td style="line-height:18px">{{ getTime(item.product_date,'{y}-{m}-{d}')}}</td>
61
               <td style="line-height:18px">{{ getTime(item.expiry_date,'{y}-{m}-{d}')}}</td>
61
               <td style="line-height:18px">{{ getTime(item.expiry_date,'{y}-{m}-{d}')}}</td>
62
-              <td style="line-height:18px">{{ getTime(it.ctime,'{y}-{m}-{d}')}}</td>
62
+              <td style="line-height:18px">{{ getTime(it.warehousing_time,'{y}-{m}-{d}')}}</td>
63
               <td style="line-height:18px">正常<br>入库</td>
63
               <td style="line-height:18px">正常<br>入库</td>
64
               <td style="line-height:18px">合格</td>
64
               <td style="line-height:18px">合格</td>
65
             </tr>
65
             </tr>

+ 8 - 1
src/xt_pages/stock/stockInOrder.vue View File

161
           </template>
161
           </template>
162
         </el-table-column>
162
         </el-table-column>
163
 
163
 
164
+        <el-table-column label="审核人" align="center" v-if="org_id == 3877 || org_id == 10318">
165
+          <template slot-scope="scope">
166
+            {{ getXuserName(scope.row.checker) }}
167
+          </template>
168
+        </el-table-column>
169
+
164
         <el-table-column label="入库方式" align="center">
170
         <el-table-column label="入库方式" align="center">
165
           <template slot-scope="scope">
171
           <template slot-scope="scope">
166
             <span v-if="scope.row.is_sys == 12">调拨入库</span>
172
             <span v-if="scope.row.is_sys == 12">调拨入库</span>
771
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
777
       (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
772
       "-" +
778
       "-" +
773
       (nowDay < 10 ? "0" + nowDay : nowDay);
779
       (nowDay < 10 ? "0" + nowDay : nowDay);
774
-
780
+    this.org_id = this.$store.getters.xt_user.org.id
775
     this.GetWarehouse();
781
     this.GetWarehouse();
776
     this.GetConfigInfo();
782
     this.GetConfigInfo();
777
     this.fetchAllAdminUsers();
783
     this.fetchAllAdminUsers();
887
       ],
893
       ],
888
       check_id: 0,
894
       check_id: 0,
889
       exportLoding:false,
895
       exportLoding:false,
896
+      org_id:0
890
     };
897
     };
891
 
898
 
892
 
899
 

+ 388 - 387
src/xt_pages/stock/stockInOrderDetailPrint.vue View File

1
 <template>
1
 <template>
2
-    <div class="main-contain">
3
-        <div class="position">
4
-        <bread-crumb :crumbs="crumbs"></bread-crumb>
5
-        <el-row style="float:right;">
6
-            <el-col :span="24">
7
-            <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
8
-            </el-col>
9
-        </el-row>
10
-        </div>
11
-        <div class="app-container" style="background-color: white;">
12
-            <div id="print_content">
13
-                <div class="print_main_content" v-for="(it,index) in warehousingInfo" :key="index">
14
-                    <div class="order_title_panl">
15
-                        <div style="font-size:22px;font-weight:bold;">{{ orgName }}</div>
16
-                        <span style="font-weight:500;font-size:18px;">耗材入库登记单</span>
2
+  <div class="main-contain">
3
+      <div class="position">
4
+      <bread-crumb :crumbs="crumbs"></bread-crumb>
5
+      <el-row style="float:right;">
6
+          <el-col :span="24">
7
+          <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
8
+          </el-col>
9
+      </el-row>
10
+      </div>
11
+      <div class="app-container" style="background-color: white;">
12
+          <div id="print_content">
13
+              <div class="print_main_content" v-for="(it,index) in warehousingInfo" :key="index" >
14
+                <div style="margin-bottom: 20px; page-break-after: always;">
15
+                  <div class="order_title_panl" style="text-align:center;">
16
+                      <div style="font-size:22px;font-weight:bold;">{{ orgName }}</div>
17
+                      <span style="font-weight:500;font-size:18px; text-align: center;">耗材入库登记单</span>
18
+                  </div>
19
+                  <div style="display:flex;justify-content: space-between;">
20
+                    <div style="text-align:left;margin-bottom:1px;font-size: 18px;">
21
+                      单据编号:{{it.warehousing_order}}
17
                     </div>
22
                     </div>
18
-                    <div style="display:flex;justify-content: space-between;">
19
-                      <div style="text-align:left;margin-bottom:1px;font-size: 18px;">
20
-                        单据编号:{{it.warehousing_order}}
21
-                      </div>
22
-                      <div style="text-align:right;margin-bottom:1px;font-size: 18px;">
23
-                        打印时间:{{time_now}}
24
-                      </div>
23
+                    <div style="text-align:right;margin-bottom:1px;font-size: 18px;">
24
+                      打印时间:{{time_now}}
25
                     </div>
25
                     </div>
26
-                    
27
-                    <div class="table_panel">
28
-                        <table class="table">
29
-                            <thead>
30
-                                <tr>
31
-                                    <td style="line-height:18px;" width="80">耗材<br>名称</td>
32
-                                    <td style="line-height:18px;" width="80">注册证号/批准文号/备案凭证号</td>
33
-                                    <td style="line-height:18px;" width="80">规格<br>型号</td>
34
-                                    <td style="line-height:18px;" width="80">生产<br>厂商</td>
35
-                                    <td style="line-height:18px;" width="80">经销商</td>
36
-                                    <td style="line-height:18px;" width="80">单位</td>
37
-                                    <td style="line-height:18px;" width="80">进货价</td>
38
-                                    <td style="line-height:18px;" width="80">入库<br>数量</td> 
39
-                                    <td style="line-height:18px;" width="60">总价</td>
40
-                                    <td style="line-height:18px;" width="80">批号</td>
41
-                                    <td style="line-height:18px;" width="120">生产日期</td>
42
-                                    <td style="line-height:18px;" width="120">有效日期</td>
43
-                                    <td style="line-height:18px;" width="120">入库日期</td>
44
-                                    <td style="line-height:18px;" width="60">质检<br>意见</td>
45
-                                    <td style="line-height:18px;" width="60">验收<br>结论</td>
46
-                                </tr>
47
-                            </thead>
48
-                            <tbody>
49
-                                <tr v-for='(item,index) in it.child' :key="index">
50
-                                    <td style="line-height:18px;"><span v-if="item.good_id != 0">{{getTypeNameOne(item.good_id)}}</span></td>
51
-                                    <td style="line-height:18px;">{{item.register_number}} <span v-if="item.license_number !=''">/</span> {{item.license_number}}</td>
52
-                                    <td style="line-height:18px;"><span v-if="item.good_id != 0">{{getSpecificationName(item.good_id)}}</span></td>
53
-                                    <td style="line-height:18px;">{{ getManufacturer(item.good_id) }}</td>
54
-                                    <td style="line-height:18px;">{{ getDeatl(item.dealer) }}</td>
55
-                                    <td style="line-height:18px;"><span v-if="item.good_id!=0">{{item.GoodInfo.packing_unit}}</span></td>
56
-                                    <td style="line-height:18px;">{{item.price}}</td>
57
-                                    <td style="line-height:18px;">{{item.warehousing_count}}</td> 
58
-                                    <td style="line-height:18px;">{{(item.warehousing_count*item.price).toFixed(2)}}</td>
59
-                                    <td style="line-height:18px;">{{ item.number }}</td>
60
-                                    <td style="line-height:18px;">{{ getTime(item.product_date) }}</td>
61
-                                    <td style="line-height:18px;">{{ getTime(item.expiry_date) }}</td>
62
-                                    <td style="line-height:18px;">{{ getTime(item.ctime) }}</td>
63
-                                    <td style="line-height:18px;">正常<br>入库</td>
64
-                                    <td style="line-height:18px;">合格</td>
65
-                                </tr>
66
-                                <tr>
67
-                                  <td>合计</td>
68
-                                  <td colspan="7" style="text-align:center;"></td>
69
-                                  <td style="text-align:right;">{{getAllPice(it.id).toFixed(2)}}</td>
70
-                                  <td colspan="6" style="text-align:center"></td>
71
-                               </tr>
72
-                            </tbody>
73
-                        </table>
26
+                  </div>
27
+                  
28
+                  <div class="table_panel">
29
+                      <table class="table">
30
+                          <thead>
31
+                              <tr>
32
+                                  <td style="line-height:18px;" width="80">耗材<br>名称</td>
33
+                                  <td style="line-height:18px;" width="80">注册证号/批准文号/备案凭证号</td>
34
+                                  <td style="line-height:18px;" width="80">规格<br>型号</td>
35
+                                  <td style="line-height:18px;" width="80">生产<br>厂商</td>
36
+                                  <td style="line-height:18px;" width="80">经销商</td>
37
+                                  <td style="line-height:18px;" width="80">单位</td>
38
+                                  <td style="line-height:18px;" width="80">进货价</td>
39
+                                  <td style="line-height:18px;" width="80">入库<br>数量</td> 
40
+                                  <td style="line-height:18px;" width="60">总价</td>
41
+                                  <td style="line-height:18px;" width="80">批号</td>
42
+                                  <td style="line-height:18px;" width="120">生产日期</td>
43
+                                  <td style="line-height:18px;" width="120">有效日期</td>
44
+                                  <td style="line-height:18px;" width="120">入库日期</td>
45
+                                  <td style="line-height:18px;" width="60">质检<br>意见</td>
46
+                                  <td style="line-height:18px;" width="60">验收<br>结论</td>
47
+                              </tr>
48
+                          </thead>
49
+                          <tbody>
50
+                              <tr v-for='(item,index) in it.child' :key="index">
51
+                                  <td style="line-height:18px;"><span v-if="item.good_id != 0">{{getTypeNameOne(item.good_id)}}</span></td>
52
+                                  <td style="line-height:18px;">{{item.register_number}} <span v-if="item.license_number !=''">/</span> {{item.license_number}}</td>
53
+                                  <td style="line-height:18px;"><span v-if="item.good_id != 0">{{getSpecificationName(item.good_id)}}</span></td>
54
+                                  <td style="line-height:18px;">{{ getManufacturer(item.good_id) }}</td>
55
+                                  <td style="line-height:18px;">{{ getDeatl(item.dealer) }}</td>
56
+                                  <td style="line-height:18px;"><span v-if="item.good_id!=0">{{item.GoodInfo.packing_unit}}</span></td>
57
+                                  <td style="line-height:18px;">{{item.price}}</td>
58
+                                  <td style="line-height:18px;">{{item.warehousing_count}}</td> 
59
+                                  <td style="line-height:18px;">{{(item.warehousing_count*item.price).toFixed(2)}}</td>
60
+                                  <td style="line-height:18px;">{{ item.number }}</td>
61
+                                  <td style="line-height:18px;">{{ getTime(item.product_date) }}</td>
62
+                                  <td style="line-height:18px;">{{ getTime(item.expiry_date) }}</td>
63
+                                  <td style="line-height:18px;">{{ getTime(it.warehousing_time) }}</td>
64
+                                  <td style="line-height:18px;">正常<br>入库</td>
65
+                                  <td style="line-height:18px;">合格</td>
66
+                              </tr>
67
+                              <tr>
68
+                                <td>合计</td>
69
+                                <td colspan="7" style="text-align:center;"></td>
70
+                                <td style="text-align:right;">{{getAllPice(it.id).toFixed(2)}}</td>
71
+                                <td colspan="6" style="text-align:center"></td>
72
+                             </tr>
73
+                          </tbody>
74
+                      </table>
74
 
75
 
75
-                        <div style="display:flex;margin-top:1px;float:right;">
76
-                            <div style="width:50px;">审批:</div><div style="width:100px;"></div>
77
-                            <div style="width:80px;" v-if='orgId != 10024'>药材主任:</div><div style="width:100px;"></div>
78
-                            <div style="width:50px;">会计:</div><div style="width:100px;"><span v-if='orgId == 10024'>徐立琼</span></div>
79
-                            <div style="width:50px;">审核:</div><div style="width:100px;"><span v-if='orgId == 10024'>徐立琼</span></div>
80
-                            <div style="width:70px;">制单人:</div><div style="width:100px;">{{ getXuserName(it.creater) }}</div>
81
-                       </div>
82
-                    </div>
76
+                      <div style="display:flex;margin-top:1px;float:right;">
77
+                          <div style="width:50px;">审批:</div><div style="width:100px;"></div>
78
+                          <div style="width:80px;" v-if='orgId != 10024'>药材主任:</div><div style="width:100px;"></div>
79
+                          <div style="width:50px;">会计:</div><div style="width:100px;"><span v-if='orgId == 10024'>徐立琼</span></div>
80
+                          <div style="width:50px;">审核:</div><div style="width:100px;"><span v-if='orgId == 10024'>徐立琼</span></div>
81
+                          <div style="width:70px;">制单人:</div><div style="width:100px;">{{ getXuserName(it.creater) }}</div>
82
+                     </div>
83
+                  </div>
83
                 </div>
84
                 </div>
84
-            </div>
85
-        </div>
86
-    </div>
85
+              </div>
86
+          </div>
87
+      </div>
88
+  </div>
87
 </template>
89
 </template>
88
 
90
 
89
 <script>
91
 <script>
90
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
92
 import BreadCrumb from '@/xt_pages/components/bread-crumb'
91
 import {
93
 import {
92
-  GetAllConfig,
93
-  getWarehouseInfoList,
94
-  getGoodInfoList
94
+GetAllConfig,
95
+getWarehouseInfoList,
96
+getGoodInfoList
95
 } from "@/api/stock";
97
 } from "@/api/stock";
96
 import { fetchAllAdminUsers } from "@/api/doctor";
98
 import { fetchAllAdminUsers } from "@/api/doctor";
97
 import print from 'print-js'
99
 import print from 'print-js'
98
 const moment = require('moment')
100
 const moment = require('moment')
99
 import { uParseTime } from '@/utils/tools'
101
 import { uParseTime } from '@/utils/tools'
100
 export default {
102
 export default {
101
-    components:{
102
-        BreadCrumb
103
-    },
104
-    data(){
105
-        return{
106
-          crumbs: [
107
-            { path: false, name: '库存管理' },
108
-            { path: false, name: '耗材管理' },
109
-            { path: false, name: '入库单打印' },
110
-          ],
111
-            isEdit: 0,
112
-            checked: false,
113
-            signAndWeighBoxPatients: "sign-and-weigh-box-patients",
114
-            goodType: [],
115
-            goodInfo: [],
116
-            manufacturer: [],
117
-            dealer: [],
118
-            Warehouse: {
119
-                loading: false,
120
-                warehouseDate: [],
121
-                tableCurrentIndex: ""
122
-            },
123
-
124
-            WarehouseInfo: {
125
-                loading: false,
126
-                warehouseInfoDate: [],
127
-                warehouse: {}
128
-            },
129
-            time_now:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
130
-            allPrice:0,
131
-            page: 1,
132
-            limit: 10000,
133
-            keyword: "",
134
-            is_use:"",
135
-            good_kind:"",
136
-            is_charge:"",
137
-            list:[],
138
-            orgName:'',
139
-            orgId:'',
140
-            adminUserOptions:[],
141
-            warehousingInfo:[],
142
-            warehousList:[]
143
-        }
144
-    },
145
-    methods:{
146
-      printAction: function() {
147
-          const style = '@media print { .print_main_content { background-color: white; width:960px;  margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 1px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 12px; padding: 10px 5px; white-space: pre-line;} .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
148
-          printJS({
149
-          printable: 'print_content',
150
-          type: 'html',
151
-          documentTitle: '  ',
152
-          style: style,
153
-          scanStyles: false
154
-          })
155
-      },
156
-
157
-      getTime(val) {
158
-         if(val < 0){
159
-           return ""
160
-         }
161
-         if(val == ""){
162
-          return ""
163
-         }else {
164
-          return uParseTime(val, '{y}-{m}-{d}')
165
-         }
166
-      },
167
-      
168
-        GetConfigInfo: function() {
169
-        GetAllConfig().then(response => {
170
-            if (response.data.state == 0) {
171
-            this.$message.error(response.data.msg);
172
-            return false;
173
-            } else {
174
-            this.manufacturer = response.data.data.manufacturer;
175
-            this.dealer = response.data.data.dealer;
176
-            this.goodInfo = response.data.data.goodInfo;
177
-            this.goodType = response.data.data.goodType;
178
-           
179
-           for(let i=0;i<this.goodInfo.length;i++){
180
-               this.goodInfo[i].manufacturer_name = ""
181
-            }
182
-            for(let i=0;i<this.goodInfo.length;i++){
183
-               for(let j=0;j<this.manufacturer.length;j++){
184
-                  if(this.goodInfo[i].manufacturer == this.manufacturer[j].id){
185
-                     this.goodInfo[i].manufacturer_name = this.manufacturer[j].manufacturer_name
186
-                  }
187
-                
188
-               } 
189
-            }
190
-             console.log("商品信息",this.goodInfo)
191
-            }
192
-        });
193
-        },
194
-       
195
-     GetOrderDetail: function(order_id) {
103
+  components:{
104
+      BreadCrumb
105
+  },
106
+  data(){
107
+      return{
108
+        crumbs: [
109
+          { path: false, name: '库存管理' },
110
+          { path: false, name: '耗材管理' },
111
+          { path: false, name: '入库单打印' },
112
+        ],
113
+          isEdit: 0,
114
+          checked: false,
115
+          signAndWeighBoxPatients: "sign-and-weigh-box-patients",
116
+          goodType: [],
117
+          goodInfo: [],
118
+          manufacturer: [],
119
+          dealer: [],
120
+          Warehouse: {
121
+              loading: false,
122
+              warehouseDate: [],
123
+              tableCurrentIndex: ""
124
+          },
196
 
125
 
197
-        const params = {
198
-            id: order_id
199
-        };
200
-        getWarehouseInfoList(params).then(response => {
201
-            if (response.data.state == 0) {
202
-            this.$message.error(response.data.msg);
203
-            return false;
204
-            } else {
205
-             var info = response.data.data.info
206
-             console.log("info2222",info)
207
-             var warehousing = response.data.data.warehousing
208
-             console.log("warehousing",warehousing)
209
-             this.warehousList = info
210
-             for(let i=0;i<warehousing.length;i++){
211
-                warehousing[i].child = []
212
-              for(let j=0;j<info.length;j++){
213
-                if(warehousing[i].id == info[j].warehousing_id){
214
-                   warehousing[i].child.push(info[j])
215
-                }
216
-              }
217
-             }
218
-             
219
-             this.warehousingInfo = warehousing
220
-          
221
-            }
222
-        });
223
-       },
224
-      
225
-    getSpecificationName: function(id) {
226
-      let name = "";
227
-      for (let i = 0; i < this.goodInfo.length; i++) {
228
-        if (this.goodInfo[i].id == id) {
229
-          name = this.goodInfo[i].specification_name;
230
-        }
126
+          WarehouseInfo: {
127
+              loading: false,
128
+              warehouseInfoDate: [],
129
+              warehouse: {}
130
+          },
131
+          time_now:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
132
+          allPrice:0,
133
+          page: 1,
134
+          limit: 10000,
135
+          keyword: "",
136
+          is_use:"",
137
+          good_kind:"",
138
+          is_charge:"",
139
+          list:[],
140
+          orgName:'',
141
+          orgId:'',
142
+          adminUserOptions:[],
143
+          warehousingInfo:[],
144
+          warehousList:[]
231
       }
145
       }
232
-      return name;
146
+  },
147
+  methods:{
148
+    printAction: function() {
149
+        const style = '@media print { .print_main_content { background-color: white; width:960px;  margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 1px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 12px; padding: 10px 5px; white-space: pre-line;} .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
150
+        printJS({
151
+        printable: 'print_content',
152
+        type: 'html',
153
+        documentTitle: '  ',
154
+        style: style,
155
+        scanStyles: false
156
+        })
233
     },
157
     },
234
-    getTypeName: function(id) {
235
-      let name = "";
236
-      for (let i = 0; i < this.goodType.length; i++) {
237
-        if (this.goodType[i].id == id) {
238
-          name = this.goodType[i].type_name;
239
-        }
240
-      }
241
-      return name;
158
+
159
+    getTime(val) {
160
+       if(val < 0){
161
+         return ""
162
+       }
163
+       if(val == ""){
164
+        return ""
165
+       }else {
166
+        return uParseTime(val, '{y}-{m}-{d}')
167
+       }
242
     },
168
     },
243
-    getTypeNameOne:function(id){
244
-      let name = "";
245
-      for (let i = 0; i < this.goodInfo.length; i++) {
246
-        if (this.goodInfo[i].id == id) {
247
-          name = this.goodInfo[i].good_name;
248
-        }
249
-      }
250
-      return name;
251
-     },
252
-     getList() {
253
-        this.goodInfo.loading = true
254
-        let params = {
255
-          page: this.page,
256
-          limit: this.limit,
257
-          keyword: this.keywords,
258
-          is_use:this.is_use,
259
-          good_kind:this.good_kind,
260
-          is_charge: this.is_charge,
261
-        }
262
-        getGoodInfoList(params).then(response => {
169
+    
170
+      GetConfigInfo: function() {
171
+      GetAllConfig().then(response => {
263
           if (response.data.state == 0) {
172
           if (response.data.state == 0) {
264
-           
265
-            this.$message.error(response.data.msg)
266
-            return false
173
+          this.$message.error(response.data.msg);
174
+          return false;
267
           } else {
175
           } else {
268
-            this.list = []
269
-            for (let i = 0; i < response.data.data.list.length; i++) {
270
-              this.list.push(response.data.data.list[i])
271
-            }
272
-            console.log("list22222",this.list)
176
+          this.manufacturer = response.data.data.manufacturer;
177
+          this.dealer = response.data.data.dealer;
178
+          this.goodInfo = response.data.data.goodInfo;
179
+          this.goodType = response.data.data.goodType;
180
+         
181
+         for(let i=0;i<this.goodInfo.length;i++){
182
+             this.goodInfo[i].manufacturer_name = ""
273
           }
183
           }
274
-        })
275
-      },
276
-      getUnit(id){
277
-        var name = ""
278
-        for(let i=0;i<this.list.length;i++){
279
-          if(id == this.list[i].id){
280
-             name = this.list[i].good_unit
184
+          for(let i=0;i<this.goodInfo.length;i++){
185
+             for(let j=0;j<this.manufacturer.length;j++){
186
+                if(this.goodInfo[i].manufacturer == this.manufacturer[j].id){
187
+                   this.goodInfo[i].manufacturer_name = this.manufacturer[j].manufacturer_name
188
+                }
189
+              
190
+             } 
281
           }
191
           }
282
-        }
283
-        return this.getGoodUnit(name)
284
-      },
285
-      getGoodUnit(id){
286
-        for (let i = 0; i <this.$store.getters.good_unit.length; i++ ){
287
-          if(id == this.$store.getters.good_unit[i].id){
288
-
289
-            return this.$store.getters.good_unit[i].name
192
+           console.log("商品信息",this.goodInfo)
290
           }
193
           }
291
-        }
292
-        return ""
293
-      },
294
-      // getManufacturer(id){
295
-      //   let name = ''
296
-      //   this.manufacturer.map(item => {
297
-      //     if(item.id == id){
298
-      //       name = item.manufacturer_name
299
-      //     }
300
-      //   })
301
-      //   return name
302
-      // },
303
-     getManufacturer(id){
304
-         let name = ""
305
-         for(let i=0;i<this.goodInfo.length;i++){
306
-            if(id == this.goodInfo[i].id){
307
-              name  =this.goodInfo[i].manufacturer_name
308
-            }
309
-         }
310
-         return name
194
+      });
311
       },
195
       },
312
-      fetchAllAdminUsers() {
313
-        fetchAllAdminUsers().then(response => {
314
-          console.log(response);
315
-          if (response.data.state == 1) {
316
-            this.adminUserOptions = response.data.data.users;
317
-            var alen = this.adminUserOptions.length;
318
-            for (let index = 0; index < alen; index++) {
319
-              if (this.adminUserOptions[index].user_type == 2) {
320
-                // this.doctorOptions.push(this.adminUserOptions[index]);
196
+     
197
+   GetOrderDetail: function(order_id) {
198
+
199
+      const params = {
200
+          id: order_id
201
+      };
202
+      getWarehouseInfoList(params).then(response => {
203
+          if (response.data.state == 0) {
204
+          this.$message.error(response.data.msg);
205
+          return false;
206
+          } else {
207
+           var info = response.data.data.info
208
+           console.log("info2222",info)
209
+           var warehousing = response.data.data.warehousing
210
+           console.log("warehousing",warehousing)
211
+           this.warehousList = info
212
+           for(let i=0;i<warehousing.length;i++){
213
+              warehousing[i].child = []
214
+            for(let j=0;j<info.length;j++){
215
+              if(warehousing[i].id == info[j].warehousing_id){
216
+                 warehousing[i].child.push(info[j])
321
               }
217
               }
322
             }
218
             }
219
+           }
220
+           
221
+           this.warehousingInfo = warehousing
222
+        
323
           }
223
           }
324
-        });
325
-      },
326
-      getXuserName(id) {
327
-        if (id <= 0) {
328
-          return "";
224
+      });
225
+     },
226
+    
227
+  getSpecificationName: function(id) {
228
+    let name = "";
229
+    for (let i = 0; i < this.goodInfo.length; i++) {
230
+      if (this.goodInfo[i].id == id) {
231
+        name = this.goodInfo[i].specification_name;
232
+      }
233
+    }
234
+    return name;
235
+  },
236
+  getTypeName: function(id) {
237
+    let name = "";
238
+    for (let i = 0; i < this.goodType.length; i++) {
239
+      if (this.goodType[i].id == id) {
240
+        name = this.goodType[i].type_name;
241
+      }
242
+    }
243
+    return name;
244
+  },
245
+  getTypeNameOne:function(id){
246
+    let name = "";
247
+    for (let i = 0; i < this.goodInfo.length; i++) {
248
+      if (this.goodInfo[i].id == id) {
249
+        name = this.goodInfo[i].good_name;
250
+      }
251
+    }
252
+    return name;
253
+   },
254
+   getList() {
255
+      this.goodInfo.loading = true
256
+      let params = {
257
+        page: this.page,
258
+        limit: this.limit,
259
+        keyword: this.keywords,
260
+        is_use:this.is_use,
261
+        good_kind:this.good_kind,
262
+        is_charge: this.is_charge,
263
+      }
264
+      getGoodInfoList(params).then(response => {
265
+        if (response.data.state == 0) {
266
+         
267
+          this.$message.error(response.data.msg)
268
+          return false
269
+        } else {
270
+          this.list = []
271
+          for (let i = 0; i < response.data.data.list.length; i++) {
272
+            this.list.push(response.data.data.list[i])
273
+          }
274
+          console.log("list22222",this.list)
329
         }
275
         }
330
-        var name = "";
331
-        if (
332
-          this.adminUserOptions == null ||
333
-          typeof this.adminUserOptions.length === "undefined"
334
-        ) {
335
-          return name;
276
+      })
277
+    },
278
+    getUnit(id){
279
+      var name = ""
280
+      for(let i=0;i<this.list.length;i++){
281
+        if(id == this.list[i].id){
282
+           name = this.list[i].good_unit
336
         }
283
         }
337
-        var leng = this.adminUserOptions.length;
338
-        if (leng == 0) {
339
-          return name;
284
+      }
285
+      return this.getGoodUnit(name)
286
+    },
287
+    getGoodUnit(id){
288
+      for (let i = 0; i <this.$store.getters.good_unit.length; i++ ){
289
+        if(id == this.$store.getters.good_unit[i].id){
290
+
291
+          return this.$store.getters.good_unit[i].name
340
         }
292
         }
341
-        for (let index = 0; index < leng; index++) {
342
-          if (this.adminUserOptions[index].id == id) {
343
-            name = this.adminUserOptions[index].name;
344
-            break;
293
+      }
294
+      return ""
295
+    },
296
+    // getManufacturer(id){
297
+    //   let name = ''
298
+    //   this.manufacturer.map(item => {
299
+    //     if(item.id == id){
300
+    //       name = item.manufacturer_name
301
+    //     }
302
+    //   })
303
+    //   return name
304
+    // },
305
+   getManufacturer(id){
306
+       let name = ""
307
+       for(let i=0;i<this.goodInfo.length;i++){
308
+          if(id == this.goodInfo[i].id){
309
+            name  =this.goodInfo[i].manufacturer_name
310
+          }
311
+       }
312
+       return name
313
+    },
314
+    fetchAllAdminUsers() {
315
+      fetchAllAdminUsers().then(response => {
316
+        console.log(response);
317
+        if (response.data.state == 1) {
318
+          this.adminUserOptions = response.data.data.users;
319
+          var alen = this.adminUserOptions.length;
320
+          for (let index = 0; index < alen; index++) {
321
+            if (this.adminUserOptions[index].user_type == 2) {
322
+              // this.doctorOptions.push(this.adminUserOptions[index]);
323
+            }
345
           }
324
           }
346
         }
325
         }
326
+      });
327
+    },
328
+    getXuserName(id) {
329
+      if (id <= 0) {
330
+        return "";
331
+      }
332
+      var name = "";
333
+      if (
334
+        this.adminUserOptions == null ||
335
+        typeof this.adminUserOptions.length === "undefined"
336
+      ) {
347
         return name;
337
         return name;
348
-      },
349
-      getAllPice(id){
350
-        var  total_price = 0 
351
-        for(let i=0;i<this.warehousList.length;i++){
352
-          if(id == this.warehousList[i].warehousing_id){
353
-             total_price += this.warehousList[i].warehousing_count * this.warehousList[i].price
354
-          }
338
+      }
339
+      var leng = this.adminUserOptions.length;
340
+      if (leng == 0) {
341
+        return name;
342
+      }
343
+      for (let index = 0; index < leng; index++) {
344
+        if (this.adminUserOptions[index].id == id) {
345
+          name = this.adminUserOptions[index].name;
346
+          break;
355
         }
347
         }
356
-        return total_price
357
-      },
358
-      getDeatl(id){
359
-        console.log("23323233223",id)
360
-        var dealer_name = ""
361
-        for(let i=0;i<this.dealer.length;i++){
362
-          if(id == this.dealer[i].id){
363
-            dealer_name = this.dealer[i].dealer_name
364
-          }
348
+      }
349
+      return name;
350
+    },
351
+    getAllPice(id){
352
+      var  total_price = 0 
353
+      for(let i=0;i<this.warehousList.length;i++){
354
+        if(id == this.warehousList[i].warehousing_id){
355
+           total_price += this.warehousList[i].warehousing_count * this.warehousList[i].price
365
         }
356
         }
366
-        return dealer_name
367
       }
357
       }
358
+      return total_price
368
     },
359
     },
369
-    created(){
370
-      this.orgName = this.$store.getters.xt_user.org.org_name;
371
-      this.orgId = this.$store.getters.xt_user.org.id;
372
-      const order_id = this.$route.query.id;
373
-
374
-      this.fetchAllAdminUsers()
375
-      this.GetConfigInfo();
376
-      this.GetOrderDetail(order_id);
377
-      this.getList()
360
+    getDeatl(id){
361
+      console.log("23323233223",id)
362
+      var dealer_name = ""
363
+      for(let i=0;i<this.dealer.length;i++){
364
+        if(id == this.dealer[i].id){
365
+          dealer_name = this.dealer[i].dealer_name
366
+        }
367
+      }
368
+      return dealer_name
378
     }
369
     }
370
+  },
371
+  created(){
372
+    this.orgName = this.$store.getters.xt_user.org.org_name;
373
+    this.orgId = this.$store.getters.xt_user.org.id;
374
+    const order_id = this.$route.query.id;
375
+
376
+    this.fetchAllAdminUsers()
377
+    this.GetConfigInfo();
378
+    this.GetOrderDetail(order_id);
379
+    this.getList()
380
+  }
379
 }
381
 }
380
 </script>
382
 </script>
381
 
383
 
382
 
384
 
383
 <style rel="stylesheet/scss" lang="scss" scoped>
385
 <style rel="stylesheet/scss" lang="scss" scoped>
384
 .print_main_content {
386
 .print_main_content {
385
-  background-color: white;
386
-  max-width: 1500px;
387
-  margin: 0 auto;
388
-  padding: 0 0 20px 0;
387
+background-color: white;
388
+max-width: 1500px;
389
+margin: 0 auto;
390
+padding: 0 0 20px 0;
389
 
391
 
390
-  .order_title_panl {
391
-    text-align: center;
392
-
393
-    .main_title {
394
-      font-size: 18px;
395
-      line-height: 40px;
396
-      font-weight: 500;
397
-    }
392
+.order_title_panl {
393
+  text-align: center;
394
+  .main_title {
395
+    font-size: 18px;
396
+    line-height: 40px;
397
+    font-weight: 500;
398
   }
398
   }
399
-  .table_panel {
400
-    .table {
401
-      width: 100%;
402
-      border: 1px solid;
403
-      border-collapse: collapse;
404
-      padding: 2px;
405
-      
399
+}
400
+.table_panel {
401
+  .table {
402
+    width: 100%;
403
+    border: 1px solid;
404
+    border-collapse: collapse;
405
+    padding: 2px;
406
+    
406
 
407
 
407
-      thead {
408
-        tr {
409
-          td {
410
-            border: 1px solid;
411
-            text-align: center;
412
-            font-size: 18px;
413
-            padding: 1px 5px;
414
-          }
408
+    thead {
409
+      tr {
410
+        td {
411
+          border: 1px solid;
412
+          text-align: center;
413
+          font-size: 18px;
414
+          padding: 1px 5px;
415
         }
415
         }
416
       }
416
       }
417
-      tbody {
418
-        tr {
419
-          td {
420
-            border: 1px solid;
421
-            text-align: center;
422
-            font-size: 18px;
423
-            padding: 10px 5px;
424
-            white-space: pre-line;
425
-            .proj {
426
-              padding: 5px 0;
427
-              text-align: left;
417
+    }
418
+    tbody {
419
+      tr {
420
+        td {
421
+          border: 1px solid;
422
+          text-align: center;
423
+          font-size: 18px;
424
+          padding: 10px 5px;
425
+          white-space: pre-line;
426
+          .proj {
427
+            padding: 5px 0;
428
+            text-align: left;
428
 
429
 
429
-              .proj_title {
430
-                font-size: 16px;
431
-                font-weight: 500;
432
-                line-height: 25px;
433
-              }
430
+            .proj_title {
431
+              font-size: 16px;
432
+              font-weight: 500;
433
+              line-height: 25px;
434
+            }
434
 
435
 
435
-              .proj_item {
436
-                font-size: 15px;
437
-                line-height: 20px;
436
+            .proj_item {
437
+              font-size: 15px;
438
+              line-height: 20px;
438
 
439
 
439
-                .zone_name {
440
-                  font-weight: 500;
441
-                }
440
+              .zone_name {
441
+                font-weight: 500;
442
               }
442
               }
443
             }
443
             }
444
           }
444
           }
447
     }
447
     }
448
   }
448
   }
449
 }
449
 }
450
+}
450
 </style>
451
 </style>

+ 4 - 1
src/xt_pages/stock/stockOutOrderEdit.vue View File

711
 
711
 
712
 
712
 
713
             var warehout_id = parseInt(this.$route.query.id)
713
             var warehout_id = parseInt(this.$route.query.id)
714
+           
714
             editWarehouseoutInfo(params, this.warehouse_out_time, warehout_id, this.$route.query.type, this.form.manufacturer, this.form.dealer,this.storehouse_id).then(response => {
715
             editWarehouseoutInfo(params, this.warehouse_out_time, warehout_id, this.$route.query.type, this.form.manufacturer, this.form.dealer,this.storehouse_id).then(response => {
715
               if (response.data.state == 0) {
716
               if (response.data.state == 0) {
716
                 this.$message.error(response.data.msg)
717
                 this.$message.error(response.data.msg)
722
                   this.$message.success('保存成功')
723
                   this.$message.success('保存成功')
723
                   // this.$router.back(-1)
724
                   // this.$router.back(-1)
724
                   loading.close()
725
                   loading.close()
726
+                  const order_id = this.$route.query.id
727
+                  this.getSingleOutOrderDetail(order_id)
725
                 }
728
                 }
726
 
729
 
727
                 if(response.data.data.msg == 5){
730
                 if(response.data.data.msg == 5){
839
       }
842
       }
840
     },
843
     },
841
      getSingleOutOrderDetail(order_id){
844
      getSingleOutOrderDetail(order_id){
842
-
845
+      this.recordInfo.recordData = []
843
         const loading = this.$loading({
846
         const loading = this.$loading({
844
           lock: true,
847
           lock: true,
845
           text: "Loading",
848
           text: "Loading",

+ 139 - 72
src/xt_pages/user/components/PatientDetail.vue View File

279
                     >{{ item.label }}</el-checkbox
279
                     >{{ item.label }}</el-checkbox
280
                   >
280
                   >
281
                 </el-checkbox-group>
281
                 </el-checkbox-group>
282
-              </el-form-item> </el-col
283
-            ><el-col :span="6">
282
+              </el-form-item>
283
+             </el-col>
284
+
285
+             <el-col :span="24">
286
+              <el-form-item label="病历号 : " prop="record_number">
287
+                <el-input
288
+                  style="width: 200px;"
289
+                  v-model="form.record_number"
290
+                  disabled
291
+                ></el-input>
292
+              </el-form-item>
293
+             </el-col>
294
+
295
+              <el-col :span="6">
284
               <el-form-item
296
               <el-form-item
285
                 label="本院前透析频率 : "
297
                 label="本院前透析频率 : "
286
                 prop="pre_hospital_dialysis_frequency"
298
                 prop="pre_hospital_dialysis_frequency"
841
           <div class="order_title">{{ orgname }} 血液透析门诊病历</div>
853
           <div class="order_title">{{ orgname }} 血液透析门诊病历</div>
842
           <div >
854
           <div >
843
             <table >
855
             <table >
844
-              <thead>
845
-                <!-- 用 thead 规定好宽度 -->
856
+              <!-- 用 thead 规定好宽度 -->
857
+              <!-- <thead>
846
                 <tr v-show="false">
858
                 <tr v-show="false">
847
-                  <td width="5%"></td>
859
+                  <td width="7%"></td>
848
                   <td width="10%"></td>
860
                   <td width="10%"></td>
849
                   <td width="5%"></td>
861
                   <td width="5%"></td>
850
                   <td width="10%"></td>
862
                   <td width="10%"></td>
853
                   <td width="5%"></td>
865
                   <td width="5%"></td>
854
                   <td width="30%"></td>
866
                   <td width="30%"></td>
855
                 </tr>
867
                 </tr>
856
-              </thead>
868
+              </thead> -->
857
               <tbody>
869
               <tbody>
858
                 <tr>
870
                 <tr>
859
-                  <td valign="top"><div class="td_proj_title">姓名</div></td>
860
-                  <td valign="top">
861
-                    <div class="td_proj_content">{{ patientPrint.name }}</div>
871
+                  <!--  -->
872
+                  <td style="width:8%;padding: 3px 0px;font-size: 17px;font-weight: 500;">
873
+                    姓名
874
+                    <!-- <div class="td_proj_title">姓名</div> -->
875
+                  </td> 
876
+                  <td style="padding: 3px 0px;font-size: 17px;">
877
+                    {{ patientPrint.name }}
878
+                    <!-- <div class="td_proj_content">{{ patientPrint.name }}</div> -->
862
                   </td>
879
                   </td>
863
-                  <td valign="top"><div class="td_proj_title">性别</div></td>
864
-                  <td valign="top">
865
-                    <div class="td_proj_content">{{ patientPrint.gender }}</div>
880
+                  <td style="padding: 3px 0px;font-size: 17px;">
881
+                    性别
882
+                    <!-- <div class="td_proj_title">性别</div> -->
866
                   </td>
883
                   </td>
867
-                  <td valign="top"><div class="td_proj_title">年龄</div></td>
868
-                  <td valign="top">
869
-                    <div class="td_proj_content">{{ patientPrint.age }}</div>
884
+                  <td style="padding: 3px 0px;font-size: 17px;">
885
+                    {{ patientPrint.gender }}
886
+                    <!-- <div class="td_proj_content">{{ patientPrint.gender }}</div> -->
870
                   </td>
887
                   </td>
871
-                  <td valign="top"><div class="td_proj_title">籍贯</div></td>
872
-                  <td valign="top">
873
-                    <div class="td_proj_content td_align_left">
888
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
889
+                    年龄
890
+                    <!-- <div class="td_proj_title">年龄</div> -->
891
+                  </td>
892
+                  <td style="padding: 3px 0px;font-size: 17px;">
893
+                    {{ patientPrint.age }}岁
894
+                    <!-- <div class="td_proj_content">{{ patientPrint.age }}岁</div> -->
895
+                  </td>
896
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
897
+                    籍贯
898
+                    <!-- <div class="td_proj_title">籍贯</div> -->
899
+                  </td>
900
+                  <td style="padding: 3px 0px;font-size: 17px;">
901
+                    {{ patientPrint.native_place }}
902
+                    <!-- <div class="td_proj_content td_align_left">
874
                       {{ patientPrint.native_place }}
903
                       {{ patientPrint.native_place }}
875
-                    </div>
904
+                    </div> -->
876
                   </td>
905
                   </td>
877
                 </tr>
906
                 </tr>
878
                 <tr>
907
                 <tr>
879
-                  <td valign="top"><div class="td_proj_title">职业</div></td>
880
-                  <td valign="top">
881
-                    <div class="td_proj_content">
908
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
909
+                    职业
910
+                    <!-- <div class="td_proj_title">职业</div> -->
911
+                  </td>
912
+                  <td style="padding: 3px 0px;font-size: 17px;">
913
+                    {{ patientPrint.profession }}
914
+                    <!-- <div class="td_proj_content">
882
                       {{ patientPrint.profession }}
915
                       {{ patientPrint.profession }}
883
-                    </div>
916
+                    </div> -->
884
                   </td>
917
                   </td>
885
-                  <td valign="top"><div class="td_proj_title">婚姻</div></td>
886
-                  <td valign="top">
887
-                    <div class="td_proj_content">
918
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
919
+                    婚姻
920
+                    <!-- <div class="td_proj_title">婚姻</div> -->
921
+                  </td>
922
+                  <td style="padding: 3px 0px;font-size: 17px;">
923
+                    {{ patientPrint.marital_status }}
924
+                    <!-- <div class="td_proj_content">
888
                       {{ patientPrint.marital_status }}
925
                       {{ patientPrint.marital_status }}
889
-                    </div>
926
+                    </div> -->
927
+                  </td>
928
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
929
+                    透析号
930
+                    <!-- <div class="td_proj_title">透析号</div> -->
890
                   </td>
931
                   </td>
891
-                  <td valign="top"><div class="td_proj_title">透析号</div></td>
892
-                  <td valign="top">
893
-                    <div class="td_proj_content">
932
+                  <td style="padding: 3px 0px;font-size: 17px;">
933
+                    {{ patientPrint.dialysis_no }}
934
+                    <!-- <div class="td_proj_content">
894
                       {{ patientPrint.dialysis_no }}
935
                       {{ patientPrint.dialysis_no }}
895
-                    </div>
936
+                    </div> -->
896
                   </td>
937
                   </td>
897
-                  <td valign="top">
898
-                    <div class="td_proj_title">身份证号</div>
938
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
939
+                    身份证号
940
+                    <!-- <div class="td_proj_title">身份证号</div> -->
899
                   </td>
941
                   </td>
900
-                  <td valign="top">
901
-                    <div class="td_proj_content td_align_left">
942
+                  <td style="padding: 3px 0px;font-size: 17px;">
943
+                    {{ patientPrint.id_card_no }}
944
+                    <!-- <div class="td_proj_content td_align_left">
902
                       {{ patientPrint.id_card_no }}
945
                       {{ patientPrint.id_card_no }}
903
-                    </div>
946
+                    </div> -->
904
                   </td>
947
                   </td>
905
                 </tr>
948
                 </tr>
906
                 <tr>
949
                 <tr>
907
-                  <td valign="top"><div class="td_proj_title">民族</div></td>
908
-                  <td valign="top">
909
-                    <div class="td_proj_content">{{ patientPrint.nation }}</div>
950
+                  <td  style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
951
+                    民族
952
+                    <!-- <div class="td_proj_title">民族</div>  valign="top" -->
910
                   </td>
953
                   </td>
911
-                  <td valign="top"><div class="td_proj_title">电话</div></td>
912
-                  <td valign="top" colspan="3">
913
-                    <div class="td_proj_content td_align_left">
914
-                      {{ patientPrint.phone }}
915
-                    </div>
954
+                  <td style="padding: 3px 0px;font-size: 17px;">
955
+                    {{ patientPrint.nation }}
956
+                    <!-- <div class="td_proj_content">{{ patientPrint.nation }}</div> -->
916
                   </td>
957
                   </td>
917
-                  <td valign="top">
918
-                    <div class="td_proj_title">家属电话</div>
958
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
959
+                    电话
960
+                    <!-- <div class="td_proj_title">电话</div> -->
919
                   </td>
961
                   </td>
920
-                  <td valign="top">
921
-                    <div class="td_proj_content td_align_left">
962
+                  <td  colspan="3" style="padding: 3px 0px;font-size: 17px;">
963
+                    {{ patientPrint.phone }}
964
+                    <!-- <div class="td_proj_content td_align_left">
965
+                      {{ patientPrint.phone }}
966
+                    </div> -->
967
+                   </td>
968
+                 <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">
969
+                    家属电话
970
+                    <!-- <div class="td_proj_title">家属电话</div> -->
971
+                  </td>
972
+                  <td style="padding: 3px 0px;font-size: 17px;">
973
+                    {{ patientPrint.home_telephone }}
974
+                    <!-- <div class="td_proj_content td_align_left">
922
                       {{ patientPrint.home_telephone }}
975
                       {{ patientPrint.home_telephone }}
923
-                    </div>
976
+                    </div> -->
924
                   </td>
977
                   </td>
925
                 </tr>
978
                 </tr>
926
                 <tr>
979
                 <tr>
927
-                  <td><div class="td_proj_title">地址</div></td>
928
-                  <td colspan="7">
929
-                    <div class="td_proj_content td_align_left">
980
+                  <td style="padding: 3px 0px;font-size: 17px;font-weight: 500;">地址</td>
981
+                  <td colspan="7" style="text-align: left; padding:0px 5px;font-size: 17px;">
982
+                    <!-- class="td_proj_content td_align_left" -->
983
+                    <!-- <div > -->
930
                       {{ patientPrint.home_address }}
984
                       {{ patientPrint.home_address }}
931
-                    </div>
985
+                    <!-- </div> -->
932
                   </td>
986
                   </td>
933
                 </tr>
987
                 </tr>
934
                 <tr>
988
                 <tr>
935
-                  <td><div class="td_proj_title">主诉</div></td>
936
-                  <td colspan="7">
937
-                    <div
938
-                      class="td_proj_content td_align_left"
989
+                  <td style="padding: 3px 0px;font-size: 17px; font-weight: 500;">
990
+                    主诉
991
+                    <!-- <div class="td_proj_title">主诉</div> -->
992
+                  </td>
993
+                  <!-- class="td_proj_content td_align_left" -->
994
+                  <td colspan="7" style="text-align: left; padding:0px 5px ;font-size: 17px;"> 
995
+                    {{ patientPrint.patient_complains }}
996
+                    <!-- <div style="padding: 0px 0px;"
939
                       v-html="patientPrint.patient_complains"
997
                       v-html="patientPrint.patient_complains"
940
-                    ></div>
998
+                    ></div> -->
941
                   </td>
999
                   </td>
942
                 </tr>
1000
                 </tr>
943
                 <tr >
1001
                 <tr >
945
                     <div class="td_proj_title">现<br />病<br />史</div>
1003
                     <div class="td_proj_title">现<br />病<br />史</div>
946
                   </td>
1004
                   </td>
947
                   <td colspan="7">
1005
                   <td colspan="7">
1006
+                    <!-- <div class="td_proj_content td_align_left">{{patientPrint.present_history}}</div> -->
1007
+
1008
+                    
948
                     <div
1009
                     <div
949
                       class="td_proj_content td_align_left"
1010
                       class="td_proj_content td_align_left"
950
                       v-html="patientPrint.present_history"
1011
                       v-html="patientPrint.present_history"
957
                     <div class="td_proj_title">既<br />往<br />史</div>
1018
                     <div class="td_proj_title">既<br />往<br />史</div>
958
                   </td>
1019
                   </td>
959
                   <td colspan="7">
1020
                   <td colspan="7">
960
-                    <div
961
-                      class="td_proj_content td_align_left"
962
-                      v-html="patientPrint.past_history"
963
-                    ></div>
1021
+                    
1022
+                    <div class="td_proj_content td_align_left">
1023
+                      {{ patientPrint.past_history }}
1024
+                    </div>
1025
+                    <!--  v-html="patientPrint.past_history" -->
964
                   </td>
1026
                   </td>
965
                 </tr>
1027
                 </tr>
966
                 <tr>
1028
                 <tr>
1086
 <script>
1148
 <script>
1087
 import { getDataConfig } from "@/utils/data";
1149
 import { getDataConfig } from "@/utils/data";
1088
 import { getToken } from "@/api/qiniu";
1150
 import { getToken } from "@/api/qiniu";
1151
+// import print from "print-js";
1089
 import {
1152
 import {
1090
   getFileExtension,
1153
   getFileExtension,
1091
   isCardNo,
1154
   isCardNo,
1173
   zb_patient_id: "",
1236
   zb_patient_id: "",
1174
   treatment_plan: "",
1237
   treatment_plan: "",
1175
   doctor:"",
1238
   doctor:"",
1239
+  record_number:"",
1176
 };
1240
 };
1177
 
1241
 
1178
 export default {
1242
 export default {
1383
             // if (patietInfo.is_infectious == 1) {
1447
             // if (patietInfo.is_infectious == 1) {
1384
             //   this.form.remind_cycle = 0;
1448
             //   this.form.remind_cycle = 0;
1385
             // }
1449
             // }
1386
-            console.log("222222", this.form.remind_cycle);
1450
+            // console.log("222222", this.form.remind_cycle);
1387
             this.form.user_sys_before_count = patietInfo.user_sys_before_count;
1451
             this.form.user_sys_before_count = patietInfo.user_sys_before_count;
1388
 
1452
 
1389
             this.infections = response.data.data.infections;
1453
             this.infections = response.data.data.infections;
1498
             this.form.contact_name = patietInfo.contact_name;
1562
             this.form.contact_name = patietInfo.contact_name;
1499
             this.form.tell_phone = patietInfo.tell_phone;
1563
             this.form.tell_phone = patietInfo.tell_phone;
1500
             this.form.dialysis_age = patietInfo.dialysis_age;
1564
             this.form.dialysis_age = patietInfo.dialysis_age;
1565
+            this.form.record_number = patietInfo.record_number
1501
             if (patietInfo.expense_kind == 0) {
1566
             if (patietInfo.expense_kind == 0) {
1502
               this.form.expense_kind = "";
1567
               this.form.expense_kind = "";
1503
             } else {
1568
             } else {
1558
 
1623
 
1559
             var contagionsArr = response.data.data.contagions;
1624
             var contagionsArr = response.data.data.contagions;
1560
             var diseasesArr = response.data.data.diseases;
1625
             var diseasesArr = response.data.data.diseases;
1561
-
1626
+              // console.log('123456',response.data.data);
1562
             this.patientPrint = patietInfo;
1627
             this.patientPrint = patietInfo;
1563
 
1628
 
1564
             var sourceLen = this.sourceOptions.length;
1629
             var sourceLen = this.sourceOptions.length;
1609
               "{y}-{m}-{d}"
1674
               "{y}-{m}-{d}"
1610
             );
1675
             );
1611
             this.patientPrint.age = jsGetAge(this.patientPrint.birthday, "-");
1676
             this.patientPrint.age = jsGetAge(this.patientPrint.birthday, "-");
1612
-
1677
+            
1613
             this.patientPrint.patient_complains =
1678
             this.patientPrint.patient_complains =
1614
               patietInfo.patient_complains.replace(/\n/g, "<br/>");
1679
               patietInfo.patient_complains.replace(/\n/g, "<br/>");
1680
+              // console.log('qwerewqrt',patietInfo.present_history);
1615
             this.patientPrint.present_history =
1681
             this.patientPrint.present_history =
1616
               patietInfo.present_history.replace(/\n/g, "<br/>");
1682
               patietInfo.present_history.replace(/\n/g, "<br/>");
1683
+              console.log('qwerewqrt',patietInfo.past_history);
1617
             this.patientPrint.past_history = patietInfo.past_history.replace(
1684
             this.patientPrint.past_history = patietInfo.past_history.replace(
1618
               /\n/g,
1685
               /\n/g,
1619
               "<br/>"
1686
               "<br/>"
2140
   background-color: white;
2207
   background-color: white;
2141
   width: 960px;
2208
   width: 960px;
2142
   margin: 0 auto;
2209
   margin: 0 auto;
2143
-  padding: 0 0 20px 0;
2144
-  /* page-break-after: always; */
2210
+  padding: 0 0 0 0;
2211
+  page-break-after: always;
2145
 }
2212
 }
2146
 .print_main_content .order_title {
2213
 .print_main_content .order_title {
2147
   text-align: center;
2214
   text-align: center;
2159
   border: 1px solid;
2226
   border: 1px solid;
2160
   text-align: center;
2227
   text-align: center;
2161
   /* font-size: 17px; */
2228
   /* font-size: 17px; */
2162
-  padding: 10px 8px;
2229
+  /* padding: 10px 8px; */
2163
 }
2230
 }
2164
 .td_proj_title {
2231
 .td_proj_title {
2165
-  font-size: 18px;
2166
-  line-height: 25px;
2232
+  font-size: 17px;
2233
+  /* line-height: 20px; */
2167
   font-weight: 500;
2234
   font-weight: 500;
2168
 }
2235
 }
2169
 .td_proj_content {
2236
 .td_proj_content {
2170
-  font-size: 18px;
2171
-  line-height: 25px;
2237
+  font-size: 17px;
2238
+  /* line-height: 20px; */
2172
 }
2239
 }
2173
 .td_align_left {
2240
 .td_align_left {
2174
   text-align: left;
2241
   text-align: left;

+ 12 - 1
src/xt_pages/user/components/PatientForm.vue View File

333
                 </el-checkbox-group>
333
                 </el-checkbox-group>
334
               </el-form-item>
334
               </el-form-item>
335
             </el-col>
335
             </el-col>
336
+            
337
+            <el-col :span="24">
338
+              <el-form-item label="病历号 : " prop="record_number">
339
+                <el-input
340
+                  style="width: 200px;"
341
+                  v-model="form.record_number"
342
+                ></el-input>
343
+              </el-form-item>
344
+             </el-col>
345
+
336
             <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
346
             <el-col :span="6" :style="isEdit ? 'width:360px' : ''">
337
               <el-form-item
347
               <el-form-item
338
                 label="本院前透析频率 : "
348
                 label="本院前透析频率 : "
1037
   diagnose: "",
1047
   diagnose: "",
1038
   is_infectious: 1,
1048
   is_infectious: 1,
1039
   age: "",
1049
   age: "",
1040
-
1050
+  record_number:"",
1041
   response_result: "",
1051
   response_result: "",
1042
   remind_cycle: 0,
1052
   remind_cycle: 0,
1043
   record_date: "",
1053
   record_date: "",
1896
             // if (patietInfo.registrars_id > 0) {
1906
             // if (patietInfo.registrars_id > 0) {
1897
             //   this.form.registrars = patietInfo.registrars_id;
1907
             //   this.form.registrars = patietInfo.registrars_id;
1898
             // }
1908
             // }
1909
+            this.form.record_number = patietInfo.record_number
1899
             this.form.doctor = patietInfo.doctor
1910
             this.form.doctor = patietInfo.doctor
1900
             if(this.form.doctor == 0){
1911
             if(this.form.doctor == 0){
1901
               this.form.doctor = ""
1912
               this.form.doctor = ""

+ 241 - 5
src/xt_pages/user/courseOfDisease.vue View File

700
               <el-input v-model="title" style="width: 420px"></el-input>
700
               <el-input v-model="title" style="width: 420px"></el-input>
701
             </div>
701
             </div>
702
 
702
 
703
-
703
+            <div style="margin-top: 10px;">
704
+              <el-button type="primary" size="small" @click="toAuto" v-if="org_id == 3877 || org_id == 10440" >自动生成</el-button>
705
+            </div>
704
             <div class="textarea_panel">
706
             <div class="textarea_panel">
705
               <keep-alive>
707
               <keep-alive>
706
                 <editor ref="editor"
708
                 <editor ref="editor"
777
   import PatientSidebar from './components/PatientSidebar'
779
   import PatientSidebar from './components/PatientSidebar'
778
   import Editor from '@/components/Editor'
780
   import Editor from '@/components/Editor'
779
   const moment = require('moment')
781
   const moment = require('moment')
780
-
782
+  import { getDataConfig } from "@/utils/data";
781
   import {
783
   import {
782
     createCourseOfDiseaseRecord,
784
     createCourseOfDiseaseRecord,
783
     deleteCourseOfDiseaseRecords,
785
     deleteCourseOfDiseaseRecords,
784
     getCourseOfDiseaseRecords,
786
     getCourseOfDiseaseRecords,
785
     modifyCourseOfDiseaseRecord,
787
     modifyCourseOfDiseaseRecord,
786
-    GetCoursePrintData
788
+    GetCoursePrintData,
789
+    getPatientDialysisInfor
787
   } from '@/api/patient'
790
   } from '@/api/patient'
788
   import { parseTime } from '@/utils'
791
   import { parseTime } from '@/utils'
789
   import BreadCrumb from '@/xt_pages/components/bread-crumb'
792
   import BreadCrumb from '@/xt_pages/components/bread-crumb'
790
-
793
+  import { uParseTime } from '@/utils/tools'
791
   export default {
794
   export default {
792
     name: 'CourseOfDisease',
795
     name: 'CourseOfDisease',
793
     components: {
796
     components: {
821
         edit_title: '',
824
         edit_title: '',
822
         ids:"",
825
         ids:"",
823
         idArr:[],
826
         idArr:[],
827
+        org_id:0
824
       }
828
       }
825
     },
829
     },
826
     created() {
830
     created() {
827
       this.patient_id = parseInt(this.$route.query.id)
831
       this.patient_id = parseInt(this.$route.query.id)
832
+      this.org_id = this.$store.getters.xt_user.template_info.org_id;
828
       if (isNaN(this.patient_id) || this.patient_id <= 0) {
833
       if (isNaN(this.patient_id) || this.patient_id <= 0) {
829
         this.$notify.error({
834
         this.$notify.error({
830
           title: '错误',
835
           title: '错误',
1040
           return
1045
           return
1041
         }
1046
         }
1042
         this.$router.push({ path: "/course/print?ids="+this.ids+"&patient_id="+this.patient_id});
1047
         this.$router.push({ path: "/course/print?ids="+this.ids+"&patient_id="+this.patient_id});
1043
-        // this.$router.push({ path: "/physique/print?ids="+this.ids+"&patient_id="+this.patient_id});
1048
+       
1049
+      },
1050
+      toAuto(){
1051
+       
1052
+         var params=  {
1053
+           patient_id:parseInt(this.$route.query.id),
1054
+           record_date:this.course_of_disease_time.slice(0,10),
1055
+         }
1056
+         console.log("param2222owoowwow",params)
1057
+        getPatientDialysisInfor(params).then(response=>{
1058
+          if(response.data.state== 1){
1059
+            var patient = response.data.data.patient
1060
+            var prescription = response.data.data.prescription
1061
+            var predialysis_evaluation =  response.data.data.assessmentBefor
1062
+            var dialysis_order =  response.data.data.order
1063
+            var monitors = response.data.data.monitor
1064
+            var doctor_advices = response.data.data.advice
1065
+            var assessment_after_dislysis =  response.data.data.afterDislysis
1066
+           
1067
+           var str_one = ""
1068
+          if(dialysis_order!=null){
1069
+            if(dialysis_order.puncture_nurse_id >0){
1070
+              str_one = "护士穿刺成功!"
1071
+            }
1072
+          }
1073
+        
1074
+          var total =0 
1075
+          if(predialysis_evaluation!=null){
1076
+            total = (predialysis_evaluation.weight_before - predialysis_evaluation.dry_weight).toFixed(1)
1077
+          }
1078
+  
1079
+
1080
+        var monitor_one =[]
1081
+        var monitor_two = []
1082
+        var monitor_three = []
1083
+
1084
+        if(monitors!=null && monitors.length > 0){
1085
+          var monitor_one =  monitors.sort(function (a,b) {
1086
+            return b.systolic_bp - a.systolic_bp
1087
+          })
1088
+          var monitor_two =  monitors.sort(function (a,b) {
1089
+            return b.diastolic_bp - a.diastolic_bp
1090
+          })
1091
+
1092
+          var monitor_three = monitors.sort(function (a,b) {
1093
+            return b.pulse_frequency - a.pulse_frequency
1094
+          })
1095
+
1096
+        }
1097
+  
1098
+        var doc_str = ""
1099
+      
1100
+        if(doctor_advices!=null && doctor_advices.length > 0){
1101
+        
1102
+          
1103
+          for(let i=0;i<doctor_advices.length;i++){
1104
+            doc_str +=doctor_advices[i].advice_name +" "+doctor_advices[i].prescribing_number+doctor_advices[i].prescribing_number_unit+" "+doctor_advices[i].delivery_way
1105
+          }
1106
+        }
1107
+
1108
+        if(predialysis_evaluation.blood_access_part_id == -2){
1109
+          predialysis_evaluation.blood_access_part_id = ""
1110
+        }
1111
+      
1112
+        var str = " 患者今日来我科行血液透析治疗,血管通路选择:"+predialysis_evaluation.blood_access_part_id+ " "+this.QueryOperaById(predialysis_evaluation.blood_access_part_opera_id) +",透析模式:"+this.getModeId(prescription.mode_id)+
1113
+        ",透前检查:"+predialysis_evaluation.internal_fistula +predialysis_evaluation.catheter + str_one +" "+ ",透析器:"+prescription.dialyzer_perfusion_apparatus + ",抗凝剂:"+this.GetAnticoagulant(prescription.anticoagulant) +",总量:"+prescription.anticoagulant_zongliang+"iu"+
1114
+        ",透前体重:"+predialysis_evaluation.weight_before+"kg"+",间期体重增长:"+total +"kg"+",目标脱水量:"+prescription.target_ultrafiltration +"ml" +",血流量:"+prescription.blood_flow_volume+"ml/min" + ",透析开始时间:"+this.getTime(dialysis_order.start_time) +",透析过程中血压波动,"+"最大收缩压:"+monitor_one[0].systolic_blood_pressure+"mmHg"+",最小收缩压:"+monitor_one[monitor_one.length-1].systolic_blood_pressure
1115
+        +"mmHg" +",最小舒张压:" +monitor_two[0].diastolic_blood_pressure+"mmHg" + ",最大舒张压:" + monitor_two[monitor_two.length-1].diastolic_blood_pressure +"mmHg" + ",最大脉搏:"+monitor_three[0].pulse_frequency+"次/分"+",最小脉搏:"+monitor_three[monitor_three.length-1].pulse_frequency+"次/分"+",透析结束时间:"+this.getTime(dialysis_order.end_time) +
1116
+        ",实际治疗时长:"+ assessment_after_dislysis.actual_treatment_hour +"时"+assessment_after_dislysis.actual_treatment_minute+"分" +",实际超滤量:"+assessment_after_dislysis.actual_ultrafiltration+"ml"+",透后体重:"+assessment_after_dislysis.weight_after+"kg"+",透析过程顺利,安全下机" + " "
1117
+        +",今日使用药品:"+doc_str +",患者下机后测血压,"+"收缩压:"+assessment_after_dislysis.systolic_blood_pressure+"mmHg"+",舒张压:"+assessment_after_dislysis.diastolic_blood_pressure+"mmHg"+",脉搏:"+assessment_after_dislysis.pulse_frequency +"次/分"
1118
+
1119
+        console.log("str000000000000000000222o2o2",str)
1120
+           this.new_content =str
1121
+          }
1122
+        })
1123
+
1124
+      },
1125
+
1126
+    QueryOperaById(val){
1127
+       var blood_access_part_opera = getDataConfig('hemodialysis', 'vascular_access_desc')
1128
+       var name = ""
1129
+       for(let i=0;i<blood_access_part_opera.length;i++){
1130
+         if(val == blood_access_part_opera[i].id){
1131
+            name = blood_access_part_opera[i].name
1132
+         }
1133
+       }
1134
+       return name
1135
+    },
1136
+    getModeId(mode_id){
1137
+      var mode_name = ""
1138
+      if(mode_id == 1){
1139
+         mode_name ="HD"
1140
+      }
1141
+      if(mode_id == 2){
1142
+         mode_name ="HDF"
1143
+      }
1144
+      if(mode_id == 3){
1145
+         mode_name ="HD+HP"
1146
+      }
1147
+      if(mode_id == 4){
1148
+         mode_name ="HP"
1149
+      }
1150
+      if(mode_id == 5){
1151
+         mode_name ="HF"
1152
+      }
1153
+      if(mode_id == 6){
1154
+         mode_name ="SCUF"
1155
+      }
1156
+      if(mode_id == 7){
1157
+         mode_name ="IUF"
1044
       }
1158
       }
1159
+      if(mode_id == 8){
1160
+         mode_name ="HFHD"
1161
+      }
1162
+      if(mode_id == 9){
1163
+         mode_name ="HFHD+HP"
1164
+      }
1165
+      if(mode_id == 10){
1166
+         mode_name ="PHF"
1167
+      }
1168
+      if(mode_id == 11){
1169
+         mode_name ="HFR"
1170
+      }
1171
+      if(mode_id == 12){
1172
+         mode_name ="HDF+HP"
1173
+      }
1174
+      if(mode_id == 13){
1175
+         mode_name ="CRRT"
1176
+      }
1177
+      if(mode_id == 14){
1178
+         mode_name ="腹水回输"
1179
+      }
1180
+      if(mode_id == 19){
1181
+         mode_name ="IUF+HD"
1182
+      }
1183
+      if(mode_id == 20){
1184
+         mode_name ="UF"
1185
+      }
1186
+      if(mode_id == 21){
1187
+         mode_name ="HD+"
1188
+      }
1189
+      if(mode_id == 22){
1190
+         mode_name ="血浆胆红素吸附+HDF"
1191
+      }
1192
+      if(mode_id == 23){
1193
+         mode_name ="血浆胆红素吸附"
1194
+      }
1195
+      if(mode_id == 24){
1196
+         mode_name ="I-HDF"
1197
+      }
1198
+      if(mode_id == 25){
1199
+         mode_name ="HD高通"
1200
+      }
1201
+      if(mode_id == 26){
1202
+         mode_name ="CVVH"
1203
+      }
1204
+      if(mode_id == 27){
1205
+         mode_name ="CVVHD"
1206
+      }
1207
+      if(mode_id == 28){
1208
+         mode_name ="CVVHDF"
1209
+      }
1210
+      if(mode_id == 29){
1211
+         mode_name ="PE"
1212
+      }
1213
+      if(mode_id == 30){
1214
+         mode_name ="血浆胆红素吸附+HP"
1215
+      }
1216
+      if(mode_id == 31){
1217
+         mode_name ="HPD"
1218
+      }
1219
+      if(mode_id == 32){
1220
+         mode_name ="HDP"
1221
+      }
1222
+      return mode_name
1223
+    },
1224
+    GetAnticoagulant(id){
1225
+      var  anticoagulant_name = ""
1226
+      if(id == 1){
1227
+       anticoagulant_name = "无肝素"
1228
+      }
1229
+      if(id == 2){
1230
+         anticoagulant_name = "普通肝素"
1231
+      }
1232
+      if(id == 3){
1233
+        anticoagulant_name = "低分子肝素"
1234
+      } 
1235
+      if(id == 4){
1236
+        anticoagulant_name = "阿加曲班"
1237
+      } 
1238
+
1239
+      if(id == 5){
1240
+       anticoagulant_name = "枸橼酸钠"
1241
+      }
1242
+      if(id == 6){
1243
+         anticoagulant_name = "低分子肝素钙"
1244
+      }
1245
+      if(id == 7){
1246
+        anticoagulant_name = "低分子肝素钠"
1247
+      } 
1248
+      if(id == 8){
1249
+        anticoagulant_name = "依诺肝素"
1250
+      } 
1251
+
1252
+      if(id == 9){
1253
+        anticoagulant_name = "达肝素"
1254
+      } 
1255
+      if(id == 10){
1256
+        anticoagulant_name = "体外抗凝"
1257
+      } 
1258
+
1259
+      if(id == 11){
1260
+        anticoagulant_name = "那屈肝素"
1261
+      } 
1262
+      if(id == 12){
1263
+        anticoagulant_name = "无抗凝剂"
1264
+      } 
1265
+
1266
+      if(id == 13){
1267
+        anticoagulant_name = "那屈肝素钙"
1268
+      } 
1269
+      if(id == 14){
1270
+        anticoagulant_name = "肝素钙注射液"
1271
+      } 
1272
+      if(id == 15){
1273
+        anticoagulant_name = "甲磺酸萘莫司他"
1274
+      } 
1275
+
1276
+      return anticoagulant_name
1277
+    },
1278
+    getTime (time) {
1279
+     return uParseTime(time, '{y}-{m}-{d} {h}:{i}')
1280
+    },
1045
     }
1281
     }
1046
   }
1282
   }
1047
 </script>
1283
 </script>

+ 16 - 1
src/xt_pages/user/dialysisSolution.vue View File

527
             </el-form-item>
527
             </el-form-item>
528
           </el-col>
528
           </el-col>
529
 
529
 
530
+          <el-col :span="8" v-if="isShows('加糖')">
531
+            <el-form-item label="加糖:">
532
+              <el-input v-model="addPlan.chaptalization"></el-input>
533
+            </el-form-item>
534
+          </el-col>
535
+
530
           <el-col :span="8" v-if="isShows('碳酸氢盐')">
536
           <el-col :span="8" v-if="isShows('碳酸氢盐')">
531
             <el-form-item label="碳酸氢盐(mmol/L): " prop="bicarbonate">
537
             <el-form-item label="碳酸氢盐(mmol/L): " prop="bicarbonate">
532
               <el-input v-model="addPlan.bicarbonate"></el-input>
538
               <el-input v-model="addPlan.bicarbonate"></el-input>
1084
           max_ultrafiltration_rate:"",
1090
           max_ultrafiltration_rate:"",
1085
           amylaceum:"",
1091
           amylaceum:"",
1086
           dialysis_strainer:"",
1092
           dialysis_strainer:"",
1093
+          chaptalization:"",
1087
         },
1094
         },
1088
         childPlan: {
1095
         childPlan: {
1089
           mode: '',
1096
           mode: '',
1214
         dialysis_dialyszers:'',
1221
         dialysis_dialyszers:'',
1215
         dialysis_irrigation:"",
1222
         dialysis_irrigation:"",
1216
         dialysis_strainer:"",
1223
         dialysis_strainer:"",
1224
+        chaptalization:"",
1217
         dialysisStrainerList:[],
1225
         dialysisStrainerList:[],
1218
         plasmaSeparatorList:[],
1226
         plasmaSeparatorList:[],
1219
         bilirubinAdsorptionColumn:[],
1227
         bilirubinAdsorptionColumn:[],
1756
                 this.current_solution.max_ultrafiltration_rate = response.data.data.solution.max_ultrafiltration_rate
1764
                 this.current_solution.max_ultrafiltration_rate = response.data.data.solution.max_ultrafiltration_rate
1757
                 this.current_solution.remark = response.data.data.solution.remark
1765
                 this.current_solution.remark = response.data.data.solution.remark
1758
                 this.current_solution.dialysis_strainer = response.data.data.dialysis_strainer
1766
                 this.current_solution.dialysis_strainer = response.data.data.dialysis_strainer
1767
+
1768
+                this.current_solution.chaptalization = response.data.data.chaptalization
1759
                 this.FindePatientDialysisLongSolutions()
1769
                 this.FindePatientDialysisLongSolutions()
1760
                 return false
1770
                 return false
1761
               }
1771
               }
1776
             this.addPlan.dialysis_irrigation = this.dialysis_irrigation
1786
             this.addPlan.dialysis_irrigation = this.dialysis_irrigation
1777
             this.addPlan.dialysis_strainer = this.dialysis_strainer
1787
             this.addPlan.dialysis_strainer = this.dialysis_strainer
1778
             this.addPlan.mode_id = parseInt(this.addPlan.mode_id)
1788
             this.addPlan.mode_id = parseInt(this.addPlan.mode_id)
1789
+         
1779
             console.log("add",this.addPlan)
1790
             console.log("add",this.addPlan)
1780
             createPatientDialysisSolution(
1791
             createPatientDialysisSolution(
1781
               this.patientID,
1792
               this.patientID,
1826
         this.getDialysisSolutionDetailList()
1837
         this.getDialysisSolutionDetailList()
1827
       },
1838
       },
1828
       openEdit(index, row) {
1839
       openEdit(index, row) {
1829
-        console.log("row-------",row)
1840
+       
1830
         this.current_index = index
1841
         this.current_index = index
1831
         this.addPlan.id = row.id
1842
         this.addPlan.id = row.id
1832
         this.addPlan.mode = row.mode_id
1843
         this.addPlan.mode = row.mode_id
2006
         }
2017
         }
2007
         this.addPlan.dialysate_formulation = row.dialysate_formulation
2018
         this.addPlan.dialysate_formulation = row.dialysate_formulation
2008
         this.dialysisTimeShow = new Date(2018,1,1,this.addPlan.dialysis_duration_hour,this.addPlan.dialysis_duration_minute)
2019
         this.dialysisTimeShow = new Date(2018,1,1,this.addPlan.dialysis_duration_hour,this.addPlan.dialysis_duration_minute)
2020
+
2021
+        this.addPlan.amylaceum = row.amylaceum
2022
+        this.addPlan.chaptalization = row.chaptalization
2009
       },
2023
       },
2010
       isShows(name) {
2024
       isShows(name) {
2011
         var filedList = store.getters.xt_user.fileds
2025
         var filedList = store.getters.xt_user.fileds
2086
           created_time:"",
2100
           created_time:"",
2087
           plasma_separator:"",
2101
           plasma_separator:"",
2088
           bilirubin_adsorption_column:"",
2102
           bilirubin_adsorption_column:"",
2103
+          chaptalization:"",
2089
         }
2104
         }
2090
         this.addPlanTypeChange()
2105
         this.addPlanTypeChange()
2091
 
2106
 

+ 12 - 0
src/xt_pages/user/doctorAdvice.vue View File

2050
 import PatientSidebar from "./components/PatientSidebar";
2050
 import PatientSidebar from "./components/PatientSidebar";
2051
 import EditGroupAdvice from "./components/EditGroupAdvice";
2051
 import EditGroupAdvice from "./components/EditGroupAdvice";
2052
 import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from "@/api/doctor";
2052
 import { fetchAllAdminUsers, fetchAllDoctorAndNurse } from "@/api/doctor";
2053
+import printJS from "print-js";
2053
 import {
2054
 import {
2054
   CheckGroupAdvice,
2055
   CheckGroupAdvice,
2055
   CreateNewDoctorAdvice,
2056
   CreateNewDoctorAdvice,
3519
           this.adviceTableData = response.data.data.advices;
3520
           this.adviceTableData = response.data.data.advices;
3520
           console.log("数据是什么", this.adviceTableData);
3521
           console.log("数据是什么", this.adviceTableData);
3521
           var advice = response.data.data.advices;
3522
           var advice = response.data.data.advices;
3523
+          var is_open = response.data.data.is_open
3524
+          if(is_open == 1){
3525
+            var longAdvice =  response.data.data.longAdvice
3526
+            console.log("longAdvice--------------",longAdvice)
3527
+            if(longAdvice!=null && longAdvice.length > 0){
3528
+              for(let i=0;i<longAdvice.length;i++){
3529
+                advice.push(longAdvice[i])
3530
+              }
3531
+            }
3532
+          }
3533
+         
3522
           var one = response.data.data.advicetwo;
3534
           var one = response.data.data.advicetwo;
3523
           let dataInfo = {};
3535
           let dataInfo = {};
3524
           one.forEach((item, index) => {
3536
           one.forEach((item, index) => {

+ 3 - 3
src/xt_pages/user/ktv.vue View File

785
     },
785
     },
786
     submitNew(formName) {
786
     submitNew(formName) {
787
       let valueSix = 0
787
       let valueSix = 0
788
-      for(let i = 0; i < items.length; i++){
789
-        if(items[i].item_name == "KT/V"){
790
-          valueSix = items[i].value
788
+      for(let i = 0; i < this.items.length; i++){
789
+        if(this.items[i].item_name == "KT/V"){
790
+          valueSix = this.items[i].value
791
         }
791
         }
792
       }
792
       }
793
       if(valueSix.length == 0){
793
       if(valueSix.length == 0){

+ 20 - 2
src/xt_pages/workforce/appointment.vue View File

67
     <div class="position">
67
     <div class="position">
68
       <bread-crumb :crumbs="crumbs"></bread-crumb>
68
       <bread-crumb :crumbs="crumbs"></bread-crumb>
69
       <div style="display:flex;align-items:center">
69
       <div style="display:flex;align-items:center">
70
-        <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleAction">打印排班</el-button>
70
+        <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleAction" v-if="activeName !='historyWeek'">打印排班</el-button>
71
+        <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleActionOne" v-if="activeName == 'historyWeek'">打印排班</el-button>
71
         <!-- <schedule-upload-excel style="margin-right:10px;" :on-success='handleSuccess' v-if="is_edit"></schedule-upload-excel> -->
72
         <!-- <schedule-upload-excel style="margin-right:10px;" :on-success='handleSuccess' v-if="is_edit"></schedule-upload-excel> -->
72
         <!-- <el-button @click="printTable" type="primary" size="small">打印排班</el-button> -->
73
         <!-- <el-button @click="printTable" type="primary" size="small">打印排班</el-button> -->
73
         <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
74
         <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
898
       } else if (this.activeName == 'nextTwoWeek') {
899
       } else if (this.activeName == 'nextTwoWeek') {
899
         date = date + 14 * 24 * 60 * 60 * 1000
900
         date = date + 14 * 24 * 60 * 60 * 1000
900
       }
901
       }
901
-      console.log("whhwhwhwhwhwh",this.templateObj.template_id)
902
+      console.log("whhwhwhwhwhwh",date)
903
+      console.log("this.templateObj.template_id == 1",this.templateObj.template_id)
904
+      console.log("week2333333333333333",this.week_date)
902
       if (this.templateObj.template_id == 1) {
905
       if (this.templateObj.template_id == 1) {
903
         this.$router.push({path: '/workforce/schedule/print', query: {date: date}})
906
         this.$router.push({path: '/workforce/schedule/print', query: {date: date}})
904
       }
907
       }
913
       }
916
       }
914
 
917
 
915
     },
918
     },
919
+    printScheduleActionOne:function(){
920
+       
921
+      var start_time = this.$refs.tableDataZero.start_time
922
+
923
+      var end_time =  this.$refs.tableDataZero.end_time
924
+
925
+      var partition_id = this.$refs.tableDataZero.partition_id
926
+
927
+      var nextTwoWeek = "nextTwoWeek"
928
+
929
+      var week_date = []
930
+
931
+    
932
+      this.$router.push({path:'/scheduleTablePrintThree?partition_id='+partition_id+"&weekTime="+nextTwoWeek+"&week_date="+week_date+"&start_time="+start_time+"&end_time="+end_time})
933
+    },
916
     isShow() {
934
     isShow() {
917
       let isShow = false
935
       let isShow = false
918
       if (Object.keys(this.partitions).length != 0) {
936
       if (Object.keys(this.partitions).length != 0) {

+ 7 - 3
src/xt_pages/workforce/components/historyWeekTable.vue View File

2829
       return uParseTime(val, '{y}-{m}-{d}')
2829
       return uParseTime(val, '{y}-{m}-{d}')
2830
     },
2830
     },
2831
     changeWeek(val) {
2831
     changeWeek(val) {
2832
-      console.log('11111',val)
2832
+      console.log('效果国233232',val)
2833
       this.newDay = []
2833
       this.newDay = []
2834
       var start = this.getTimestamp(val) - 86400
2834
       var start = this.getTimestamp(val) - 86400
2835
       var end = start + 518400
2835
       var end = start + 518400
2839
 
2839
 
2840
       this.newDay.push(this.start_time)
2840
       this.newDay.push(this.start_time)
2841
       this.newDay.push(this.end_time)
2841
       this.newDay.push(this.end_time)
2842
+
2843
+      console.log("sart323232我的",this.start_time)
2844
+      console.log("end_timewowowo",this.end_time)
2842
       this.scheduleZone=[]
2845
       this.scheduleZone=[]
2843
       // this.$nextTick(() => {
2846
       // this.$nextTick(() => {
2844
         this.getAllZones()
2847
         this.getAllZones()
2894
         patitionid: str,
2897
         patitionid: str,
2895
         schedule_type: this.schedule_type,
2898
         schedule_type: this.schedule_type,
2896
       }
2899
       }
2897
-    //  console.log("str--------",str)
2900
+     console.log("params232323232",params)
2898
       getSchedulesOne(params).then(response => {
2901
       getSchedulesOne(params).then(response => {
2899
         // console.log('getSchedulesOne',response.data.data);
2902
         // console.log('getSchedulesOne',response.data.data);
2900
         if (response.data.state == 1) {
2903
         if (response.data.state == 1) {
2901
           this.weekTitle = response.data.data.weekTitle;
2904
           this.weekTitle = response.data.data.weekTitle;
2902
           this.weekTitle = []
2905
           this.weekTitle = []
2903
-
2906
+          console.log("first_day23333333333333",this.start_time)
2904
           var first = this.getTimestamp(this.start_time)
2907
           var first = this.getTimestamp(this.start_time)
2905
           var first_day =  this.getTime(first, "{y}-{m}-{d}")
2908
           var first_day =  this.getTime(first, "{y}-{m}-{d}")
2909
+          console.log("first_day23333333333333",first_day)
2906
           this.weekTitle.push(first_day)
2910
           this.weekTitle.push(first_day)
2907
 
2911
 
2908
           var second = this.getTimestamp(this.start_time) + 86400
2912
           var second = this.getTimestamp(this.start_time) + 86400