Browse Source

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

csx 3 years ago
parent
commit
0ee5911cee

+ 4 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderForty.vue View File

816
           <td width="60" style="line-height:20px">血流量<br />ml/min</td>
816
           <td width="60" style="line-height:20px">血流量<br />ml/min</td>
817
           <td width="60" style="line-height:20px">电导度<br />mS/cm</td>
817
           <td width="60" style="line-height:20px">电导度<br />mS/cm</td>
818
           <td width="60" style="line-height:20px">超滤量<br />ml</td>
818
           <td width="60" style="line-height:20px">超滤量<br />ml</td>
819
+          <td width="40" style="line-height:20px">Kt/V</td>
819
           <!-- <td width="60">钠浓度<br/>mmol/L</td>
820
           <!-- <td width="60">钠浓度<br/>mmol/L</td>
820
         <td width="80">透析液温度<br/>℃</td>
821
         <td width="80">透析液温度<br/>℃</td>
821
         <td width="60">置换率<br/>ml/min</td> -->
822
         <td width="60">置换率<br/>ml/min</td> -->
876
           <td>
877
           <td>
877
             &nbsp;{{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "" }}
878
             &nbsp;{{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "" }}
878
           </td>
879
           </td>
880
+          <td>
881
+            &nbsp;{{ monitor.ktv ? monitor.ktv : "" }}
882
+          </td>
879
           <!-- <td>&nbsp;{{monitor.sodium_concentration}}</td>
883
           <!-- <td>&nbsp;{{monitor.sodium_concentration}}</td>
880
         <td>&nbsp;{{monitor.dialysate_temperature}}</td>
884
         <td>&nbsp;{{monitor.dialysate_temperature}}</td>
881
         <td>&nbsp;{{monitor.replacement_rate}}</td> -->
885
         <td>&nbsp;{{monitor.replacement_rate}}</td> -->

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderThirtyOne.vue View File

397
             <tr style="line-height:20px;">
397
             <tr style="line-height:20px;">
398
               <td width="60">时间</td>
398
               <td width="60">时间</td>
399
               <td width="60">BP</td>
399
               <td width="60">BP</td>
400
-              <td width="40">心率</td>
400
+              <td width="40">脉搏</td>
401
               <td width="40">血流速</td>
401
               <td width="40">血流速</td>
402
               <td width="100">静脉压/动脉压</td>
402
               <td width="100">静脉压/动脉压</td>
403
               <td width="40">超滤量</td>
403
               <td width="40">超滤量</td>

+ 7 - 3
src/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail.vue View File

1341
         if (this.teamList.length > 0) {
1341
         if (this.teamList.length > 0) {
1342
           for (let i = 0; i < this.teamList.length; i++) {
1342
           for (let i = 0; i < this.teamList.length; i++) {
1343
             if (this.curPrescriptions.med_type == 14 && this.teamList[i].is_special_diseases != 1) {
1343
             if (this.curPrescriptions.med_type == 14 && this.teamList[i].is_special_diseases != 1) {
1344
-              this.$message.error('该处方属于特病类型处方,请开特病类型的项目')
1344
+              setTimeout(() => {
1345
+                this.$message.error('该处方属于特病类型处方,请开特病类型的项目')
1346
+              }, 100)
1345
               // return
1347
               // return
1346
             }
1348
             }
1347
 
1349
 
1803
                   remark: '',
1805
                   remark: '',
1804
                   medical_code: project[i].project.medical_code,
1806
                   medical_code: project[i].project.medical_code,
1805
                   unit: project[i].project.unit,
1807
                   unit: project[i].project.unit,
1806
-                  type: project[i].type
1808
+                  type: project[i].type,
1809
+                  is_special_diseases: project[i].project.disease_directory,
1807
                 }
1810
                 }
1808
                 if (obj.total == 0 || obj.total == undefined) {
1811
                 if (obj.total == 0 || obj.total == undefined) {
1809
                   obj.total = 1
1812
                   obj.total = 1
1824
                   remark: '',
1827
                   remark: '',
1825
                   medical_code: project[i].good_info.medical_insurance_number,
1828
                   medical_code: project[i].good_info.medical_insurance_number,
1826
                   unit: project[i].good_info.unit,
1829
                   unit: project[i].good_info.unit,
1827
-                  type: project[i].type
1830
+                  type: project[i].type,
1831
+                  is_special_diseases: project[i].good_info.is_special_diseases,
1828
                 }
1832
                 }
1829
                 if (obj.total == 0 || obj.total == undefined) {
1833
                 if (obj.total == 0 || obj.total == undefined) {
1830
                   obj.total = 1
1834
                   obj.total = 1

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

1421
               this.form.avatar = this.form.avatar + "?imageView2/2/w/500/h/500/q/90"
1421
               this.form.avatar = this.form.avatar + "?imageView2/2/w/500/h/500/q/90"
1422
             }
1422
             }
1423
             console.log("form---",this.form)
1423
             console.log("form---",this.form)
1424
+        
1424
             editPatient(this.patientID, this.form)
1425
             editPatient(this.patientID, this.form)
1425
 
1426
 
1426
               .then(response => {
1427
               .then(response => {

+ 1 - 1
src/xt_pages/user/templateSummary.vue View File

1552
                this.form.natrium =list.natrium
1552
                this.form.natrium =list.natrium
1553
                this.form.perfusion_apparatus= list.perfusion_apparatus
1553
                this.form.perfusion_apparatus= list.perfusion_apparatus
1554
                this.form.other_count = list.other_count
1554
                this.form.other_count = list.other_count
1555
-               this.form.record_time = this.getTimeTwo(list.record_time)
1555
+              //  this.form.record_time = this.getTimeTwo(list.record_time)
1556
                console.log("时间232233232",list.record_time)
1556
                console.log("时间232233232",list.record_time)
1557
                if(list.template_inspection_id == 0){
1557
                if(list.template_inspection_id == 0){
1558
                   list.template_inspection_id = ""
1558
                   list.template_inspection_id = ""

+ 1 - 5
src/xt_pages/workforce/components/tableWeeks.vue View File

278
               ? scope.row.dialysissolution.anticoagulant_zongliang + 'mg'
278
               ? scope.row.dialysissolution.anticoagulant_zongliang + 'mg'
279
               : ''
279
               : ''
280
           }}</span>
280
           }}</span>
281
-                    <span v-if="scope.row.dialysissolution.anticoagulant == 6">{{
282
-            scope.row.dialysissolution.anticoagulant_zongliang
283
-              ? scope.row.dialysissolution.anticoagulant_zongliang + 'iu'
284
-              : ''
285
-          }}</span>
281
+            <span v-if="scope.row.dialysissolution.anticoagulant == 6">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>
286
             <span v-if="scope.row.dialysissolution.anticoagulant == 7">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>
282
             <span v-if="scope.row.dialysissolution.anticoagulant == 7">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>
287
             <span v-if="scope.row.dialysissolution.anticoagulant == 8">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>
283
             <span v-if="scope.row.dialysissolution.anticoagulant == 8">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>
288
             <span v-if="scope.row.dialysissolution.anticoagulant == 9">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>
284
             <span v-if="scope.row.dialysissolution.anticoagulant == 9">{{scope.row.dialysissolution.anticoagulant_zongliang? scope.row.dialysissolution.anticoagulant_zongliang + 'iu': ''}}</span>

+ 3 - 3
src/xt_pages/workforce/remind_print.vue View File

88
                   <span v-if="main_collection.prescription.anticoagulant == 6">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
88
                   <span v-if="main_collection.prescription.anticoagulant == 6">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
89
                   <span v-if="main_collection.prescription.anticoagulant == 7">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
89
                   <span v-if="main_collection.prescription.anticoagulant == 7">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
90
                    <span v-if="main_collection.prescription.anticoagulant == 8">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
90
                    <span v-if="main_collection.prescription.anticoagulant == 8">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
91
-                    <span v-if="main_collection.prescription.anticoagulant == 9">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
92
-                     <span v-if="main_collection.prescription.anticoagulant == 10">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
93
-                      <span v-if="main_collection.prescription.anticoagulant == 11">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
91
+                  <span v-if="main_collection.prescription.anticoagulant == 9">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
92
+                  <span v-if="main_collection.prescription.anticoagulant == 10">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
93
+                  <span v-if="main_collection.prescription.anticoagulant == 11">{{main_collection.prescription.anticoagulant_zongliang?main_collection.prescription.anticoagulant_zongliang+'iu':''}}</span>
94
                 </td>
94
                 </td>
95
                 <td :width="td_4_width" style="text-align:left"  v-if="printObj.doctor_advice == 1">
95
                 <td :width="td_4_width" style="text-align:left"  v-if="printObj.doctor_advice == 1">
96
                   <span style="white-space: pre" v-if="main_collection.doctoradvice.length>0">{{getAdvice(main_collection.doctoradvice)}}</span>
96
                   <span style="white-space: pre" v-if="main_collection.doctoradvice.length>0">{{getAdvice(main_collection.doctoradvice)}}</span>