Browse Source

新分支

28169 1 year ago
parent
commit
b98973b73f

+ 17 - 0
src/api/device.js View File

@@ -382,4 +382,21 @@ export function deleteObjectRegistration(id,params){
382 382
     method:"get",
383 383
     params:params
384 384
   })
385
+}
386
+
387
+export function getRegistGoodInforList(params){
388
+  return request({
389
+    url:"/api/manage/getregistgoodinforlist",
390
+    method:"Get",
391
+    params:params,
392
+  })
393
+}
394
+
395
+export function getRegistNumber(id,record_date,params){
396
+  
397
+  return request({
398
+    url:"/api/manage/getregistnumber?id="+id+"&record_date="+record_date,
399
+    method:"Get",
400
+    params:params,
401
+  })
385 402
 }

+ 16 - 0
src/api/role/admin.js View File

@@ -92,4 +92,20 @@ export function toSign(params){
92 92
     method:"get",
93 93
     params:params
94 94
   })
95
+}
96
+
97
+export function toTestOne(params){
98
+  return request({
99
+    url:"/api/sign/createrusername",
100
+    method:"get",
101
+    params:params
102
+  })
103
+}
104
+
105
+export function toTestTwo(params){
106
+  return request({
107
+    url:"/api/sign/createpersionseal",
108
+    method:"get",
109
+    params:params
110
+  })
95 111
 }

+ 69 - 10
src/xt_pages/device/objectRegistration.vue View File

@@ -45,7 +45,7 @@
45 45
 
46 46
                 <el-table-column prop="fenopda" label="使用数量" align="center" min-width="60">
47 47
                     <template slot-scope="scope">
48
-                        {{ scope.row.model_number }}
48
+                        {{ scope.row.user_count }}
49 49
                     </template>
50 50
                 </el-table-column>
51 51
 
@@ -128,20 +128,29 @@
128 128
                 <el-form :model="form" ref="form">
129 129
                     <el-row :span="24">
130 130
                       <el-col :span="8">
131
-                        <el-form-item label="登记日期:" label-width="110px" prop="record_date" >
131
+                        <el-form-item label="登记日期:" label-width="110px" prop="record_date">
132 132
                             <el-date-picker
133 133
                             value-format="yyyy-MM-dd"
134 134
                             v-model="form.record_date"
135 135
                             type="date"
136 136
                             placeholder="选择日期时间"
137
-                            style="width: 150px;">
137
+                            style="width: 150px;"
138
+                            @change="changeModelNumber">
138 139
                             </el-date-picker>
139 140
                         </el-form-item>
140 141
                       </el-col>
141 142
 
142 143
                       <el-col :span="8">
143 144
                         <el-form-item label="品名、型号:" label-width="110px" prop="record_date">
144
-                           <el-input v-model="form.model_number" style="width: 150px;"></el-input>
145
+                           <!-- <el-input v-model="form.model_number" style="width: 150px;"></el-input> -->
146
+                           <el-select v-model="form.model_number" filterable  placeholder="请选择" @change="changeModelNumber">
147
+                              <el-option
148
+                                v-for="item in goodList"
149
+                                :key="item.id"
150
+                                :label="item.specification_name"
151
+                                :value="item.id">
152
+                              </el-option>
153
+                           </el-select>
145 154
                         </el-form-item>
146 155
                       </el-col>
147 156
                     
@@ -251,14 +260,23 @@
251 260
                             v-model="form.record_date"
252 261
                             type="date"
253 262
                             placeholder="选择日期时间"
254
-                            style="width: 150px;">
263
+                            style="width: 150px;"
264
+                            @change="changeModelNumber">
255 265
                             </el-date-picker>
256 266
                         </el-form-item>
257 267
                       </el-col>
258 268
 
259 269
                       <el-col :span="8">
260 270
                         <el-form-item label="品名、型号:" label-width="110px" prop="model_number">
261
-                           <el-input v-model="form.model_number" style="width: 150px;"></el-input>
271
+                           <!-- <el-input v-model="form.model_number" style="width: 150px;"></el-input> -->
272
+                           <el-select v-model="form.model_number" filterable  placeholder="请选择" @change="changeModelNumber">
273
+                              <el-option
274
+                                v-for="item in goodList"
275
+                                :key="item.id"
276
+                                :label="item.specification_name"
277
+                                :value="item.id">
278
+                              </el-option>
279
+                           </el-select>
262 280
                         </el-form-item>
263 281
                       </el-col>
264 282
                     
@@ -427,7 +445,9 @@
427 445
         getRegistrationDisInfectList,
428 446
         getObjectRegistrationByIdList,
429 447
         UpdateObjectRegistration,
430
-        deleteObjectRegistration 
448
+        deleteObjectRegistration,
449
+        getRegistGoodInforList,
450
+        getRegistNumber 
431 451
     } from "@/api/device"
432 452
     import { uParseTime } from '@/utils/tools'
433 453
     const moment = require('moment')
@@ -491,10 +511,11 @@
491 511
          ],
492 512
          operators: [],
493 513
          operatorMaps:{},
494
-         
514
+         goodList:[],
495 515
         }
496 516
       },
497 517
       created(){
518
+        this.getRegistGoodInforList()
498 519
         this.getAllDoctorList()
499 520
         this.getlist()
500 521
       },
@@ -723,10 +744,16 @@
723 744
                 if(this.form.packaging_identification ==false ){
724 745
                     packaging_identification_one = 2
725 746
                 }
747
+                var model_number = ""
748
+                for(let i=0;i<this.goodList.length;i++){
749
+                  if(this.form.model_number == this.goodList[i].id){
750
+                    model_number = this.goodList[i].specification_name
751
+                  }
752
+                }
726 753
                 var params = {
727 754
                     id:this.form.id,
728 755
                     record_date:this.form.record_date,
729
-                    model_number:this.form.model_number,
756
+                    model_number:model_number,
730 757
                     user_count:this.form.user_count.toString(),
731 758
                     product_date:this.form.product_date,
732 759
                     expiry_date:this.form.expiry_date,
@@ -844,9 +871,15 @@
844 871
               if(this.form.packaging_identification ==false ){
845 872
                 packaging_identification_one = 2
846 873
               }
874
+              var model_number = ""
875
+              for(let i=0;i<this.goodList.length;i++){
876
+                if(this.form.model_number == this.goodList[i].id){
877
+                   model_number = this.goodList[i].specification_name
878
+                }
879
+              }
847 880
               var params = {
848 881
                 record_date:this.form.record_date,
849
-                model_number:this.form.model_number,
882
+                model_number:model_number,
850 883
                 user_count:this.form.user_count.toString(),
851 884
                 product_date:this.form.product_date,
852 885
                 expiry_date:this.form.expiry_date,
@@ -870,6 +903,32 @@
870 903
       },
871 904
       toSeach(){
872 905
         this.getlist()
906
+      },
907
+      getRegistGoodInforList(){
908
+        getRegistGoodInforList().then(response=>{
909
+           if(response.data.state == 1){
910
+             var  goodList =  response.data.data.list
911
+             this.goodList = goodList
912
+           } 
913
+        })
914
+      },
915
+
916
+      changeModelNumber(val){
917
+        console.log("val23233223",val)
918
+
919
+        getRegistNumber(val,this.form.record_date).then(response=>{
920
+          if(response.data.state ==1 ){
921
+            var list =  response.data.data.list
922
+            var count = 0
923
+            if(list!=null && list.length >0){
924
+              for(let i=0;i<list.length;i++){
925
+                count +=list[i].count
926
+              }
927
+            }
928
+            this.form.user_count = ""
929
+            this.form.user_count = count
930
+          }
931
+        })
873 932
       }
874 933
         
875 934
       }

+ 8 - 0
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

@@ -1336,6 +1336,7 @@
1336 1336
                           <td width="50">脉搏<br />(次/分)</td>
1337 1337
                           <td width="50">呼吸<br />(次/分)</td>
1338 1338
                           <td width="50">血流量<br />(ml/min)</td>
1339
+                          <td width="50" v-if="org_id == 10478 || org_id == 0">动脉压<br />(mmHg)</td>
1339 1340
                           <td width="50">静脉压<br />(mmHg)</td>
1340 1341
                           <td width="50">跨膜压<br />(mmHg)</td>
1341 1342
                           <td width="60" v-if="org_id != 9836">
@@ -1465,6 +1466,13 @@
1465 1466
                                 : ""
1466 1467
                             }}
1467 1468
                           </td>
1469
+                          <td v-if="org_id==0 || org_id == 10478">
1470
+                            {{
1471
+                              monitor_record.arterial_pressure
1472
+                                ? monitor_record.arterial_pressure
1473
+                                : ""
1474
+                            }}
1475
+                          </td>
1468 1476
                           <td>
1469 1477
                             {{
1470 1478
                               monitor_record.venous_pressure

+ 18 - 12
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

@@ -312,11 +312,13 @@
312 312
                         this.$store.getters.xt_user.template_info.org_id != 9829 &&
313 313
                         this.$store.getters.xt_user.template_info.org_id != 10440 &&
314 314
                         this.$store.getters.xt_user.template_info.org_id != 10469 &&
315
-                        this.$store.getters.xt_user.template_info.org_id != 10471">
316
-                          <div v-if="this.$store.getters.xt_user.template_info.org_id != 10101 &&
315
+                        this.$store.getters.xt_user.template_info.org_id != 10471 &&
316
+                        this.$store.getters.xt_user.template_info.org_id != 10495">
317
+                       <div v-if="this.$store.getters.xt_user.template_info.org_id != 10101 &&
317 318
                           this.$store.getters.xt_user.template_info.template_id != 45 &&
318 319
                           this.$store.getters.xt_user.template_info.org_id != 10346 &&
319
-                          this.$store.getters.xt_user.template_info.org_id != 10387">
320
+                          this.$store.getters.xt_user.template_info.org_id != 10387 &&
321
+                          this.$store.getters.xt_user.template_info.org_id != 10495 ">
320 322
                             <el-form-item
321 323
                                     v-if='dialysisPrescription.anticoagulant != 1 &&
322 324
                                     this.$store.getters.xt_user.template_info.template_id != 21 &&
@@ -360,7 +362,8 @@
360 362
                                     this.$store.getters.xt_user.template_info.template_id == 38 ||
361 363
                                     this.$store.getters.xt_user.template_info.org_id == 9987 ||
362 364
                                     this.$store.getters.xt_user.template_info.org_id == 10346 ||
363
-                                    this.$store.getters.xt_user.template_info.org_id == 10387'
365
+                                    this.$store.getters.xt_user.template_info.org_id == 10387 ||
366
+                                    this.$store.getters.xt_user.template_info.org_id ==10495'
364 367
                                     :label="'首剂(mg) : '" prop="anticoagulant_shouji" :rules="isCheckmust('首剂')">
365 368
                                 <el-input type="number" v-if="dialysisPrescription.anticoagulant != 1"
366 369
                                           v-model="dialysisPrescription.anticoagulant_shouji"></el-input>
@@ -411,8 +414,8 @@
411 414
 
412 415
 
413 416
                     <el-col :span="8" v-if="anticoagulant!=undefined &&anticoagulant.weichi != -1 && isShows('维持')  && dialysisPrescription.anticoagulant!=1&& dialysisPrescription.anticoagulant!=12">
414
-                        <div v-if="this.$store.getters.xt_user.template_info.org_id != 10157  && this.$store.getters.xt_user.template_info.org_id != 9990 && this.$store.getters.xt_user.template_info.org_id != 9671  && 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 != 9829 && this.$store.getters.xt_user.template_info.org_id != 10440 && this.$store.getters.xt_user.template_info.org_id != 10469 && this.$store.getters.xt_user.template_info.org_id != 10471">
415
-                          <div v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45 && this.$store.getters.xt_user.template_info.template_id != 54 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10387 ">
417
+                        <div v-if="this.$store.getters.xt_user.template_info.org_id != 10157  && this.$store.getters.xt_user.template_info.org_id != 9990 && this.$store.getters.xt_user.template_info.org_id != 9671  && 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 != 9829 && this.$store.getters.xt_user.template_info.org_id != 10440 && this.$store.getters.xt_user.template_info.org_id != 10469 && this.$store.getters.xt_user.template_info.org_id != 10471 && this.$store.getters.xt_user.template_info.org_id != 10495">
418
+                          <div v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45 && this.$store.getters.xt_user.template_info.template_id != 54 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10387 && this.$store.getters.xt_user.template_info.org_id != 10495 ">
416 419
                             <el-form-item :label="'维持(' + anticoagulant.weichi_unit + ') : '"
417 420
                                           v-if="anticoagulant.weichi != -1 &&
418 421
                                            this.$store.getters.xt_user.template_info.template_id != 21 &&
@@ -420,7 +423,8 @@
420 423
                                             this.$store.getters.xt_user.template_info.template_id != 38 &&
421 424
                                             this.$store.getters.xt_user.template_info.org_id != 9987  &&
422 425
                                             this.$store.getters.xt_user.template_info.org_id != 54 &&
423
-                                            this.$store.getters.xt_user.template_info.org_id != 9990" prop="anticoagulant_weichi" :rules="isCheckmust('维持')">
426
+                                            this.$store.getters.xt_user.template_info.org_id != 9990 &&
427
+                                            this.$store.getters.xt_user.template_info.org_id != 10495" prop="anticoagulant_weichi" :rules="isCheckmust('维持')">
424 428
                                 <el-input type="number" v-if="dialysisPrescription.anticoagulant != 1"
425 429
                                           v-model="dialysisPrescription.anticoagulant_weichi"></el-input>
426 430
                                 <el-input type="number" disabled v-if="dialysisPrescription.anticoagulant == 1"
@@ -435,7 +439,9 @@
435 439
                                           this.$store.getters.xt_user.template_info.org_id == 54 ||
436 440
                                           this.$store.getters.xt_user.template_info.org_id == 10346 ||
437 441
                                           this.$store.getters.xt_user.template_info.org_id == 10387  ||
438
-                                          this.$store.getters.xt_user.template_info.org_id == 9990" prop="anticoagulant_weichi" :rules="isCheckmust('维持')">
442
+                                          this.$store.getters.xt_user.template_info.org_id == 9990 ||
443
+                                          this.$store.getters.xt_user.template_info.org_id == 10495
444
+                                          " prop="anticoagulant_weichi" :rules="isCheckmust('维持')">
439 445
                                 <el-input type="number" v-if="dialysisPrescription.anticoagulant != 1"
440 446
                                           v-model="dialysisPrescription.anticoagulant_weichi"></el-input>
441 447
                                 <el-input type="number" disabled v-if="dialysisPrescription.anticoagulant == 1"
@@ -490,10 +496,10 @@
490 496
 
491 497
 
492 498
                     <el-col :span="8" v-if="anticoagulant!=undefined &&anticoagulant.zongliang != -1 && isShows('总量') && dialysisPrescription.anticoagulant!=1&& dialysisPrescription.anticoagulant!=12">
493
-                        <div v-if="this.$store.getters.xt_user.template_info.org_id != 10157 && this.$store.getters.xt_user.template_info.org_id != 9671 && this.$store.getters.xt_user.template_info.org_id != 9675 && 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 != 9829 && this.$store.getters.xt_user.template_info.org_id != 10440 && this.$store.getters.xt_user.template_info.org_id != 10469 && this.$store.getters.xt_user.template_info.org_id != 10471">
494
-                          <div v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45 && this.$store.getters.xt_user.template_info.template_id != 54 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10387">
499
+                        <div v-if="this.$store.getters.xt_user.template_info.org_id != 10157 && this.$store.getters.xt_user.template_info.org_id != 9671 && this.$store.getters.xt_user.template_info.org_id != 9675 && 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 != 9829 && this.$store.getters.xt_user.template_info.org_id != 10440 && this.$store.getters.xt_user.template_info.org_id != 10469 && this.$store.getters.xt_user.template_info.org_id != 10471 && this.$store.getters.xt_user.template_info.org_id != 10495">
500
+                          <div v-if="this.$store.getters.xt_user.template_info.org_id != 10101 && this.$store.getters.xt_user.template_info.template_id != 45 && this.$store.getters.xt_user.template_info.template_id != 54 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10387 && this.$store.getters.xt_user.template_info.org_id != 10495">
495 501
                             <el-form-item
496
-                                    v-if='this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 38  && this.$store.getters.xt_user.template_info.org_id != 9987 && this.$store.getters.xt_user.template_info.template_id != 54 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10387 && this.$store.getters.xt_user.template_info.org_id != 9990'
502
+                                    v-if='this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 38  && this.$store.getters.xt_user.template_info.org_id != 9987 && this.$store.getters.xt_user.template_info.template_id != 54 && this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10387 && this.$store.getters.xt_user.template_info.org_id != 9990 && this.$store.getters.xt_user.template_info.org_id != 10495'
497 503
                                     :label="'总量(' + anticoagulant.zongliang_unit + ') : '" prop="anticoagulant_zongliang" :rules="isCheckmust('总量')">
498 504
                                 <el-input type="number" v-if="dialysisPrescription.anticoagulant != 1"
499 505
                                           v-model="dialysisPrescription.anticoagulant_zongliang"></el-input>
@@ -501,7 +507,7 @@
501 507
                                           v-model="dialysisPrescription.no_anticoagulant_zongliang"></el-input>
502 508
                             </el-form-item>
503 509
                             <el-form-item
504
-                                    v-if='this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 38||  this.$store.getters.xt_user.template_info.org_id == 9987 || this.$store.getters.xt_user.template_info.template_id == 54 || this.$store.getters.xt_user.template_info.org_id == 10346 || this.$store.getters.xt_user.template_info.org_id == 10387'
510
+                                    v-if='this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 38||  this.$store.getters.xt_user.template_info.org_id == 9987 || this.$store.getters.xt_user.template_info.template_id == 54 || this.$store.getters.xt_user.template_info.org_id == 10346 || this.$store.getters.xt_user.template_info.org_id == 10387 || this.$store.getters.xt_user.template_info.org_id == 10495 '
505 511
                                     :label="'总量(mg) : '" prop="anticoagulant_zongliang" :rules="isCheckmust('总量')">
506 512
                                 <el-input type="number" v-if="dialysisPrescription.anticoagulant != 1"
507 513
                                           v-model="dialysisPrescription.anticoagulant_zongliang"></el-input>

+ 19 - 3
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

@@ -1432,6 +1432,14 @@
1432 1432
                         <td width="50">脉搏<br />(次/分)</td>
1433 1433
                         <td width="50">呼吸<br />(次/分)</td>
1434 1434
                         <td width="50">血流量<br />(ml/min)</td>
1435
+                        <td width="50" v-if="org_id==10478 || org_id == 0">
1436
+                          动脉压<br />({{
1437
+                            monitors[0] &&
1438
+                            monitors[0]["venous_pressure_type"] == 2
1439
+                              ? "kpa"
1440
+                              : "mmHg"
1441
+                          }})
1442
+                        </td>
1435 1443
                         <td width="50">
1436 1444
                           静脉压<br />({{
1437 1445
                             monitors[0] &&
@@ -1480,6 +1488,13 @@
1480 1488
                         <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: ""}}</td>
1481 1489
                         <td>{{monitor.breathing_rate ? monitor.breathing_rate : ""}}</td>
1482 1490
                         <td>{{monitor.blood_flow_volume? monitor.blood_flow_volume: ""}}</td>
1491
+                        <td v-if="org_id == 0 ||org_id ==10478">
1492
+                          {{
1493
+                            monitor.arterial_pressure
1494
+                              ? monitor.arterial_pressure
1495
+                              : ""
1496
+                          }}
1497
+                        </td>
1483 1498
                         <td>
1484 1499
                           {{
1485 1500
                             monitor.venous_pressure
@@ -1635,6 +1650,7 @@
1635 1650
                         <td></td>
1636 1651
                         <td></td>
1637 1652
                         <td></td>
1653
+                        <td v-if="org_id == 0 || org_id ==10478"></td>
1638 1654
                         <td></td>
1639 1655
                         <td></td>
1640 1656
                         <td></td>
@@ -3009,13 +3025,13 @@
3009 3025
                       >
3010 3026
                         <span
3011 3027
                           style="height: 30px; display: inline-block"
3012
-                          v-if="setAdminUserES(prescription.creater) == ''"
3028
+                          v-if="setAdminUserES(doctor_advices[0].advice_doctor) == ''"
3013 3029
                         >
3014
-                          {{ getAdminUser(prescription.creater) }}
3030
+                          {{ getAdminUser(doctor_advices[0].advice_doctor) }}
3015 3031
                         </span>
3016 3032
                         <img
3017 3033
                           style="height: 40px"
3018
-                          :src="setAdminUserES(prescription.creater)"
3034
+                          :src="setAdminUserES(doctor_advices[0].advice_doctor)"
3019 3035
                           alt=""
3020 3036
                           srcset=""
3021 3037
                           v-else

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

@@ -1092,7 +1092,7 @@
1092 1092
                         }}
1093 1093
                       </div>
1094 1094
                      
1095
-                     <span v-if="org_id!=9675 && org_id!=10447 && org_id!=9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10475">
1095
+                     <span v-if="org_id!=9675 && org_id!=10447 && org_id!=9829 && org_id!=10440 && org_id!=10469 && org_id!=10471 && org_id!=10495">
1096 1096
                       <span v-if="prescription.anticoagulant == 4">mg</span>
1097 1097
                       <span v-if="prescription.anticoagulant == 3">iu</span>
1098 1098
                       <span v-if="prescription.anticoagulant == 2">iu</span>

+ 104 - 46
src/xt_pages/hospitalStation/hospitalBatchStatementPrint.vue View File

@@ -197,54 +197,112 @@ export default {
197 197
             return false
198 198
           } else {
199 199
             let infos = []
200
+            console.log(response.data.data.infos)
200 201
             for(var i  = 0; i < response.data.data.infos.length; i++){
202
+              let tempInfo = {}
201 203
               var info = response.data.data.infos[i]
202
-              that.info['patient'] = info.patient
203
-              that.info['diagnosis'] = info.diagnosis
204
-              that.info['p_admin'] = info.printor_admin
205
-              that.info['charge_admin'] = info.charge_admin
206
-              that.info['fixmedins_name'] = info.org_name
207
-              that.info['fixmedins_code'] = info.org_code
208
-              that.info['order'] = info.order
209
-              that.info['date'] = info.date
210
-              that.info['number'] = info.number
211
-              that.info['order_infos'] = info.order_infos
212
-              that.info['diagnosis'] = info.diagnosis
213
-              that.info['dia_config'] = info.dia_config
214
-              that.info['doctor_info'] = info.doctor_info
215
-              that.info['bed_cost_total'] = info.bedCostTotal
216
-              that.info['bed_cost_self_total'] = info.bedCostSelfTotal
217
-              that.info['bed_cost_part_self_total'] = info.bedCostPartSelfTotal
218
-              that.info['operation_cost_total'] = info.operationCostTotal
219
-              that.info['operation_cost_self_total'] = info.operationCostSelfTotal
220
-              that.info['operation_cost_part_self_total'] = info.operationCostPartSelfTotal
221
-              that.info['other_cost_total'] = info.otherCostTotal
222
-              that.info['other_cost_self_total'] = info.otherCostSelfTotal
223
-              that.info['other_cost_part_self_total'] = info.otherCostPartSelfTotal
224
-              that.info['material_cost_total'] = info.materialCostTotal
225
-              that.info['material_cost_self_total'] = info.materialCostSelfTotal
226
-              that.info['material_cost_part_self_total'] = info.materialCostPartSelfTotal
227
-              that.info['western_medicine_cost_total'] = info.westernMedicineCostTotal
228
-              that.info['western_medicine_cost_self_total'] = info.westernMedicineCostSelfTotal
229
-              that.info['western_medicine_cost_part_self_total'] = info.westernMedicineCostPartSelfTotal
230
-              that.info['chinese_traditional_medicine_cost_total'] = info.chineseTraditionalMedicineCostTotal
231
-              that.info['chinese_traditional_medicine_cost_self_total'] = info.chineseTraditionalMedicineCostSelfTotal
232
-              that.info['chinese_traditional_medicine_cost_part_self_total'] = info.chineseTraditionalMedicineCostPartSelfTotal
233
-              that.info['check_cost_total'] = info.checkCostTotal
234
-              that.info['check_cost_self_total'] = info.checkCostSelfTotal
235
-              that.info['check_cost_part_self_total'] = info.checkCostPartSelfTotal
236
-              that.info['laboratory_cost_total'] = info.laboratoryCostTotal
237
-              that.info['laboratory_cost_self_total'] = info.laboratoryCostSelfTotal
238
-              that.info['laboratory_cost_part_self_total'] = info.laboratoryCostPartSelfTotal
239
-              that.info['treat_cost_total'] = info.treatCostTotal
240
-              that.info['treat_cost_self_total'] = info.treatCostSelfTotal
241
-              that.info['treat_cost_part_self_total'] = info.treatCostPartSelfTotal
242
-              that.info['date'] = info.date
243
-              that.info['number'] = info.number
244
-              that.info['order_infos'] = info.order_infos
245
-              that.info['diagnosis'] = info.diagnosis
246
-              that.info['his'] = info.his_hospital
247
-              infos.push(that.info)
204
+              console.log("info1")
205
+              console.log(info)
206
+              tempInfo["patient"] = info.patient
207
+              console.log("info2")
208
+              console.log(info.patient)
209
+
210
+              tempInfo["diagnosis"] = info.diagnosis
211
+              console.log("info3")
212
+              console.log(info.diagnosis)
213
+
214
+              tempInfo["p_admin"] = info.printor_admin
215
+              console.log("info4")
216
+              console.log( info.printor_admin)
217
+              tempInfo['charge_admin'] = info.charge_admin
218
+              console.log("info5")
219
+              console.log( info.charge_admin)
220
+              tempInfo['fixmedins_name'] = info.org_name
221
+              console.log("info6")
222
+              console.log( info.org_name)
223
+              tempInfo['fixmedins_code'] = info.org_code
224
+              console.log("info7")
225
+              console.log( info.org_code)
226
+              tempInfo['order'] = info.order
227
+              console.log("info8")
228
+              console.log( info.order)
229
+              tempInfo['date'] = info.date
230
+              console.log("info9")
231
+              console.log( info.date)
232
+              tempInfo['number'] = info.number
233
+              console.log("info10")
234
+              console.log( info.number)
235
+              tempInfo['order_infos'] = info.order_infos
236
+              console.log("info11")
237
+              console.log( info.order_infos)
238
+              tempInfo['diagnosis'] = info.diagnosis
239
+              console.log("info12")
240
+              console.log( info.diagnosis)
241
+              tempInfo['dia_config'] = info.dia_config
242
+              console.log("info13")
243
+              console.log( info.dia_config)
244
+              tempInfo['doctor_info'] = info.doctor_info
245
+              console.log("info14")
246
+              console.log( info.doctor_info)
247
+              tempInfo['bed_cost_total'] = info.bedCostTotal
248
+              console.log("info15")
249
+              console.log( info.bedCostTotal)
250
+              tempInfo['bed_cost_self_total'] = info.bedCostSelfTotal
251
+              console.log("info16")
252
+              console.log( info.bedCostSelfTotal)
253
+              tempInfo['bed_cost_part_self_total'] = info.bedCostPartSelfTotal
254
+              console.log("info17")
255
+              console.log( info.bedCostPartSelfTotal)
256
+              tempInfo['operation_cost_total'] = info.operationCostTotal
257
+              console.log("info18")
258
+              console.log( info.operationCostTotal)
259
+              tempInfo['operation_cost_self_total'] = info.operationCostSelfTotal
260
+              console.log("info19")
261
+              console.log( info.operationCostSelfTotal)
262
+              tempInfo['operation_cost_part_self_total'] = info.operationCostPartSelfTotal
263
+              console.log("info20")
264
+              console.log( info.operationCostPartSelfTotal)
265
+              tempInfo['other_cost_total'] = info.otherCostTotal
266
+              console.log("info21")
267
+              console.log( info.otherCostTotal)
268
+              tempInfo['other_cost_self_total'] = info.otherCostSelfTotal
269
+              console.log("info22")
270
+              console.log( info.otherCostSelfTotal)
271
+              tempInfo['other_cost_part_self_total'] = info.otherCostPartSelfTotal
272
+              console.log("info23")
273
+              console.log( info.otherCostPartSelfTotal)
274
+              tempInfo['material_cost_total'] = info.materialCostTotal
275
+              console.log("info24")
276
+              console.log( info.materialCostTotal)
277
+              tempInfo['material_cost_self_total'] = info.materialCostSelfTotal
278
+              console.log("info25")
279
+              console.log( info.materialCostSelfTotal)
280
+              tempInfo['material_cost_part_self_total'] = info.materialCostPartSelfTotal
281
+              console.log("info26")
282
+              console.log( info.materialCostPartSelfTotal)
283
+              tempInfo['western_medicine_cost_total'] = info.westernMedicineCostTotal
284
+              console.log("info27")
285
+              console.log( info.westernMedicineCostTotal)
286
+              tempInfo['western_medicine_cost_self_total'] = info.westernMedicineCostSelfTotal
287
+              console.log("info28")
288
+              console.log( info.westernMedicineCostSelfTotal)
289
+              tempInfo['western_medicine_cost_part_self_total'] = info.westernMedicineCostPartSelfTotal
290
+              console.log("info29")
291
+              console.log( info.westernMedicineCostPartSelfTotal)
292
+              tempInfo['chinese_traditional_medicine_cost_total'] = info.chineseTraditionalMedicineCostTotal
293
+              tempInfo['chinese_traditional_medicine_cost_self_total'] = info.chineseTraditionalMedicineCostSelfTotal
294
+              tempInfo['chinese_traditional_medicine_cost_part_self_total'] = info.chineseTraditionalMedicineCostPartSelfTotal
295
+              tempInfo['check_cost_total'] = info.checkCostTotal
296
+              tempInfo['check_cost_self_total'] = info.checkCostSelfTotal
297
+              tempInfo['check_cost_part_self_total'] = info.checkCostPartSelfTotal
298
+              tempInfo['laboratory_cost_total'] = info.laboratoryCostTotal
299
+              tempInfo['laboratory_cost_self_total'] = info.laboratoryCostSelfTotal
300
+              tempInfo['laboratory_cost_part_self_total'] = info.laboratoryCostPartSelfTotal
301
+              tempInfo['treat_cost_total'] = info.treatCostTotal
302
+              tempInfo['treat_cost_self_total'] = info.treatCostSelfTotal
303
+              tempInfo['treat_cost_part_self_total'] = info.treatCostPartSelfTotal
304
+              tempInfo['his'] = info.his_hospital
305
+              infos.push(tempInfo)
248 306
             }
249 307
             that.infos = infos
250 308
             console.log(infos)

+ 21 - 1
src/xt_pages/management/components/ManageForm.vue View File

@@ -34,6 +34,24 @@
34 34
             </el-form-item>
35 35
           </el-col>
36 36
 
37
+          <!-- <el-col :span="8">
38
+            <el-form-item
39
+              label="分区:"
40
+              v-show="bedShow"
41
+              required
42
+              prop="zone_id"
43
+            >
44
+              <el-select style="width:135px" v-model="form.zone_id">
45
+                <el-option
46
+                  v-for="item in this.deviceType"
47
+                  :key="item.id"
48
+                  :label="item.name"
49
+                  :value="item.id"
50
+                ></el-option>
51
+              </el-select>
52
+            </el-form-item>
53
+          </el-col> -->
54
+
37 55
           <el-col :span="8">
38 56
             <el-form-item
39 57
               label="机位号:"
@@ -388,7 +406,8 @@ export default {
388 406
         revers_mode: "", // 反渗模式
389 407
         treat_mode: [],
390 408
         treat_type: [], // 治疗模式
391
-        beds: ""
409
+        beds: "",
410
+        zone_id:"",
392 411
       },
393 412
       forms: {
394 413
         beds: ""
@@ -471,6 +490,7 @@ export default {
471 490
       getAllSubregion().then(response => {
472 491
         if (response.data.state === 1) {
473 492
           var zones = response.data.data.zones;
493
+        
474 494
           this.deviceType = zones;
475 495
           var numbers = response.data.data.numbers;
476 496
           var devicenumber = response.data.data.devicenumber;

+ 15 - 2
src/xt_pages/management/home.vue View File

@@ -117,6 +117,13 @@
117 117
                                   </el-select>
118 118
                                  </el-form-item>
119 119
                               </el-col>
120
+                              <el-col :span="8">
121
+                                  <el-form-item label="分区:">
122
+                                       <el-select style="width:150px" v-model="form.zone_id" :disabled="disableThree">
123
+                                          <el-option v-for="item in this.bedZone" :key="item.id" :label="item.name" :value="item.id"></el-option>
124
+                                       </el-select>
125
+                                  </el-form-item>
126
+                              </el-col>
120 127
                               <el-col :span="8">
121 128
                                   <el-form-item label="机位号:">
122 129
                                        <el-select style="width:150px" v-model="form.bed_number" :disabled="disableThree">
@@ -2779,7 +2786,8 @@ export default {
2779 2786
           Disinfection_mode: '',
2780 2787
           revers_mode: '',
2781 2788
           beds: '',
2782
-          bed_numbers: ''
2789
+          bed_numbers: '',
2790
+          zone_id:"",
2783 2791
         },
2784 2792
         activeName: 'first',
2785 2793
         activeNameTwo: 'first',
@@ -3347,6 +3355,7 @@ export default {
3347 3355
       getAllSubregion() {
3348 3356
         getAllSubregion().then(response => {
3349 3357
           var zones = response.data.data.zones
3358
+          console.log("zones",zones)
3350 3359
           this.deviceType = zones
3351 3360
           var numbers = response.data.data.numbers
3352 3361
 
@@ -3469,6 +3478,7 @@ export default {
3469 3478
         getMachineDetailById(id).then(response => {
3470 3479
           if (response.data.state === 1) {
3471 3480
             var addmacher = response.data.data.addmacher
3481
+            console.log("addmacher",addmacher)
3472 3482
             var warning = response.data.data.warning
3473 3483
 
3474 3484
             var time = this.getTimestamp(this.userform.date) - warning.stime
@@ -3587,7 +3597,10 @@ export default {
3587 3597
             this.form.device_name = addmacher.device_name
3588 3598
             this.form.manufacture_factory = addmacher.manufacture_factory
3589 3599
             this.form.service_manufacturer = addmacher.service_manufacturer
3590
-
3600
+            if(addmacher.zone_id >=0){
3601
+              this.form.zone_id = addmacher.zone_id
3602
+            }
3603
+          
3591 3604
             // this.form.unit_type = addmacher.unit_type
3592 3605
 
3593 3606
             this.form.unit_type = parseInt(addmacher.device_mode)

+ 13 - 2
src/xt_pages/medicalScheduling/index.vue View File

@@ -954,13 +954,24 @@ export default {
954 954
                     data.push(...newNurse)
955 955
                     data.push(...newDoctor)
956 956
                     data.push(obj)
957
-
958
-                    this.tableData = data
957
+                    console.log("data2o2oo2o2o2o22o",data)
958
+                    this.tableData = this.distinct(data)
959 959
 
960 960
 
961 961
                 }
962 962
             })
963 963
         },
964
+        distinct(tempArr) {
965
+            for (let i = 0; i < tempArr.length; i++) {
966
+                for (let j = i + 1; j < tempArr.length; j++) {
967
+                    if (tempArr[i].admin_user_id == tempArr[j].admin_user_id) {
968
+                        tempArr.splice(j, 1);
969
+                        j--;
970
+                    };
971
+                };
972
+            };
973
+            return tempArr;
974
+       },
964 975
 
965 976
         getClass(name,index){
966 977
             if(name != undefined){

+ 33 - 2
src/xt_pages/role/admin.vue View File

@@ -21,7 +21,22 @@
21 21
           size="small"
22 22
           icon="el-icon-circle-plus-outline"
23 23
           style="float:left"
24
-          @click="toTest">测试</el-button> -->
24
+          @click="toTest">短信</el-button> -->
25
+
26
+        <!-- <el-button
27
+          type="primary"
28
+          size="small"
29
+          icon="el-icon-circle-plus-outline"
30
+          style="float:left"
31
+          @click="toTestOne">个人用户实名</el-button> -->
32
+         
33
+          <!-- <el-button
34
+          type="primary"
35
+          size="small"
36
+          icon="el-icon-circle-plus-outline"
37
+          style="float:left"
38
+          @click="toTestTwo">创建个人印章</el-button> -->
39
+          
25 40
      </div>
26 41
     
27 42
       
@@ -176,7 +191,7 @@
176 191
 </template>
177 192
 
178 193
 <script>
179
-import { adminMainView, getAdmins, setAdminStatus,toSign } from "@/api/role/admin";
194
+import { adminMainView, getAdmins, setAdminStatus,toSign,toTestOne,toTestTwo } from "@/api/role/admin";
180 195
 import { getRoles } from "@/api/role/role";
181 196
 
182 197
 import { parseTime } from "@/utils";
@@ -473,6 +488,22 @@ export default {
473 488
           console.log("sign",sign)
474 489
         }
475 490
       })
491
+    },
492
+    toTestOne(){
493
+      toTestOne().then(response=>{
494
+        if(response.data.state==1){
495
+          var sign = response.data.data.sign
496
+          console.log("sign",sign)
497
+        }
498
+      })
499
+    },
500
+    toTestTwo(){
501
+      toTestTwo().then(response=>{
502
+        if(response.data.state ==1){
503
+          var sign = response.data.data.sign
504
+          console.log("sign",sign)
505
+        }
506
+      })
476 507
     }
477 508
   },
478 509
   watch: {

+ 17 - 1
src/xt_pages/stock/drugs/components/drugQuery.vue View File

@@ -94,6 +94,11 @@
94 94
                 {{getManufacturName(scope.row.manufacturer)}}
95 95
               </template>
96 96
             </el-table-column>
97
+            <el-table-column label="经销商" align="center" v-if="org_id ==10485">
98
+              <template slot-scope="scope">
99
+                  {{getDearName(scope.row.dealer)}}
100
+              </template>
101
+            </el-table-column>
97 102
             <el-table-column label="批准文号" align="center">
98 103
               <template slot-scope="scope">
99 104
                 {{scope.row.number}}
@@ -402,6 +407,7 @@ export default {
402 407
      isClose: false,
403 408
      drug_type: 0,
404 409
      storehouseId:0,
410
+     dealerList:[],
405 411
     }
406 412
   
407 413
   },
@@ -454,6 +460,7 @@ export default {
454 460
            this.manufacturerList = response.data.data.manufacturerList
455 461
            this.goodTypeList = response.data.data.goodTypeList
456 462
            this.patientList = response.data.data.patientList
463
+           this.dealerList = response.data.data.dealerList
457 464
          }
458 465
       })
459 466
     },
@@ -1489,7 +1496,16 @@ export default {
1489 1496
           this.$message.success("保存成功!")
1490 1497
         }
1491 1498
       })
1492
-    }
1499
+    },
1500
+    getDearName(id){
1501
+      var dear_name = ""
1502
+      for(let i=0;i<this.dealerList.length;i++){
1503
+        if(id == this.dealerList[i].id){
1504
+          dear_name = this.dealerList[i].dealer_name
1505
+        }
1506
+      }
1507
+      return dear_name
1508
+    },
1493 1509
   },
1494 1510
   created(){
1495 1511
     this.getStorehouseList()

+ 21 - 0
src/xt_pages/stock/drugs/inventoryDetails.vue View File

@@ -99,6 +99,18 @@
99 99
                  <span v-if="scope.row.inventory_type == 11">盘亏</span>
100 100
                </template>
101 101
             </el-table-column>
102
+
103
+            <el-table-column prop="name" label="盘点人"  width="100" align="center">
104
+                <template slot-scope="scope">
105
+                   {{getName(scope.row.creater)}}
106
+                </template>
107
+            </el-table-column>
108
+
109
+            <el-table-column prop="name" label="盘点时间"  width="100" align="center">
110
+                <template slot-scope="scope">
111
+                   {{ getTime(scope.row.ctime) }}
112
+                </template>
113
+            </el-table-column>
102 114
         </el-table>
103 115
         <el-pagination
104 116
             @size-change="handleSizeChange"
@@ -222,6 +234,15 @@ export default {
222 234
         console.log("str",str)
223 235
         this.ids = str  
224 236
       },
237
+      getName(admin_user_id){
238
+         var user_name = ""
239
+         for(let i=0;i<this.doctorList.length;i++){
240
+           if(admin_user_id == this.doctorList[i].admin_user_id){
241
+               user_name = this.doctorList[i].user_name
242
+           }
243
+         }
244
+         return user_name
245
+      }
225 246
     },
226 247
     created(){
227 248
       this.getlist()

+ 26 - 2
src/xt_pages/stock/inventoryDetails.vue View File

@@ -41,13 +41,13 @@
41 41
                   {{scope.row.good_name}}
42 42
                 </template>
43 43
             </el-table-column>
44
-            <el-table-column prop="name" label="规格" width="200" align="center">
44
+            <el-table-column prop="name" label="规格" width="100" align="center">
45 45
                <template slot-scope="scope">
46 46
                   {{scope.row.specification_name}}
47 47
                 </template>
48 48
             </el-table-column>
49 49
 
50
-            <el-table-column  prop="name" label="有效日期" width="200" align="center">
50
+            <el-table-column  prop="name" label="有效日期" width="100" align="center">
51 51
                <template slot-scope="scope">
52 52
                  {{getTime(scope.row.expire_date)}}
53 53
                </template>
@@ -88,6 +88,18 @@
88 88
                 <span v-if="scope.row.inventory_type ==7">有效期到期</span>
89 89
                </template>
90 90
             </el-table-column>
91
+
92
+            <el-table-column prop="name" label="盘点人"  width="100" align="center">
93
+                <template slot-scope="scope">
94
+                   {{getName(scope.row.creater)}}
95
+                </template>
96
+            </el-table-column>
97
+
98
+            <el-table-column prop="name" label="盘点时间"  width="100" align="center">
99
+                <template slot-scope="scope">
100
+                   {{ getTime(scope.row.ctime) }}
101
+                </template>
102
+            </el-table-column>
91 103
           
92 104
         </el-table>
93 105
         <el-pagination
@@ -107,6 +119,7 @@
107 119
 <script>
108 120
 import { uParseTime } from '@/utils/tools'
109 121
 import { getInventoryDetailList } from "@/api/stock"
122
+import user from '../../store/modules/user';
110 123
 
111 124
 export default {
112 125
     name: "inventory",
@@ -127,6 +140,7 @@ export default {
127 140
             damageList:[],
128 141
             storehouse_id:0,
129 142
             houseList:[],
143
+            docList:[]
130 144
          }
131 145
     },
132 146
     methods:{
@@ -173,6 +187,7 @@ export default {
173 187
                for(let i=0;i<response.data.data.houseList.length;i++){
174 188
                  this.houseList.push(response.data.data.houseList[i])
175 189
                }
190
+               this.docList = response.data.data.doclist
176 191
               
177 192
              }
178 193
           })
@@ -236,6 +251,15 @@ export default {
236 251
       changeHouseList(){
237 252
         this.houseList = []
238 253
         this.getlist()
254
+      },
255
+      getName(admin_user_id){
256
+         var user_name = ""
257
+         for(let i=0;i<this.docList.length;i++){
258
+           if(admin_user_id == this.docList[i].admin_user_id){
259
+               user_name = this.docList[i].user_name
260
+           }
261
+         }
262
+         return user_name
239 263
       }
240 264
     },
241 265
     created(){

+ 22 - 1
src/xt_pages/stock/query/goodNewQuery.vue View File

@@ -48,6 +48,11 @@
48 48
             border
49 49
            :cell-class-name="cellStyle"
50 50
           >
51
+          <el-table-column label="耗材编码" align="center" v-if="org_id ==9956 || org_id == 0">
52
+              <template slot-scope="scope">
53
+                 {{ scope.row.good_number?scope.row.good_number:"" }}
54
+              </template>
55
+            </el-table-column>
51 56
             <el-table-column label="耗材类型" align="center">
52 57
               <template slot-scope="scope">
53 58
                 {{getGoodTypeName(scope.row.good_type_id)}}
@@ -68,6 +73,11 @@
68 73
                   {{getManufacturName(scope.row.manufacturer)}}
69 74
               </template>
70 75
             </el-table-column>
76
+            <el-table-column label="经销商" align="center" v-if="org_id ==10485">
77
+              <template slot-scope="scope">
78
+                  {{getDearName(scope.row.dealer)}}
79
+              </template>
80
+            </el-table-column>
71 81
             <el-table-column label="批准文号" align="center">
72 82
               <template slot-scope="scope">
73 83
                  {{scope.row.number}}
@@ -358,7 +368,8 @@ export default {
358 368
      warehouseOutByList:[],
359 369
      flushList:[],
360 370
      type_name:0,
361
-     storehouseId:0
371
+     storehouseId:0,
372
+     dealerList:[]
362 373
     }
363 374
   
364 375
   },
@@ -411,6 +422,7 @@ export default {
411 422
            this.manufacturerList = response.data.data.manufacturerList
412 423
            this.goodTypeList = response.data.data.goodTypeList
413 424
            this.patientList = response.data.data.patientList
425
+           this.dealerList = response.data.data.dealerList
414 426
          }
415 427
       })
416 428
     },
@@ -445,6 +457,15 @@ export default {
445 457
       }
446 458
       return manufacturer_name
447 459
     },
460
+    getDearName(id){
461
+      var dear_name = ""
462
+      for(let i=0;i<this.dealerList.length;i++){
463
+        if(id == this.dealerList[i].id){
464
+          dear_name = this.dealerList[i].dealer_name
465
+        }
466
+      }
467
+      return dear_name
468
+    },
448 469
     handleSizeChange(val) {
449 470
       this.limit = val;
450 471
       this.getlist()

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

@@ -1497,6 +1497,14 @@ export default {
1497 1497
       this.submitMsg = "新增患者成功";
1498 1498
       this.form = Object.assign({}, defaultForm);
1499 1499
       this.form.lapseto  = 1
1500
+      if(this.org_id == 0 || this.org_id ==9919){
1501
+         this.form.diagnose = "1.慢性肾脏病5期  IgA肾病 维持性血液透析 肾性贫血 肾性高血压  继发性甲状旁腺功能亢进症  2.右前臂自体动静脉内瘘成形术后"
1502
+         this.form.treatment_plan ="完善相关检查,规律血液透析,每周2次,每次5小时。纠正贫血,  达泊丁 (自备) 120ug  皮下注射  每4周1次;控制血压:非洛地平缓释片 5mg    口服  1次/日,酒石酸美托洛尔片 50mg/次 口服  每日1次;阿托伐他汀钙片 40mg/次  口服  每日1次。"
1503
+         this.form.patient_complains = "维持性血液透析1年余"
1504
+         this.form.past_history = "既往否认冠心病、糖尿病等慢性疾病;否认肝炎、结核、艾滋、梅毒等传染病史;否认药物、食物过敏史;无重大手术、外伤史。"
1505
+         this.form.present_history = "患者于30年前体检查尿蛋白+,行肾穿刺活检,病理结果示:IgA肾病,此后于香港当地医院规范治疗,定时复查,至2021年12月复查发现血肌酐渐升高,300+umol/L,血压高于正常,开始为肾透析行右前臂自体动静脉内瘘成形术,1年前导入透析治疗,每周2次,每次5小时,规律维持至今。平素无胸闷、心慌,无咳嗽、咳痰,无恶心、呕吐,饮食、睡眠可,尿量约1000ml/日。本次检查感染四项阴性,血红蛋白103g/L,PTH 28.2pmol/L, Ca 2.17mmol/L ,P 1.57mmol/L。"
1506
+         this.form.remark = "神志清,精神可,体型肥胖,面色黝黑,颜面、眼睑无浮肿,皮肤未见出血点、瘀斑;胸廓对称,心前区无隆起,心界向左扩大,心音有力,节律规整,未闻及明显杂音,双肺呼吸音粗;腹部呈脂肪堆积,腹软,无包块、无皮疹、无静脉曲张、无压痛;脊柱、四肢未见畸形,关节活动正常,肌力正常;双下肢无明显水肿;右前臂自体动静脉内瘘能触及震颤、闻及连续杂音。"
1507
+      }
1500 1508
     }
1501 1509
 
1502 1510
   },

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

@@ -1379,9 +1379,9 @@ export default {
1379 1379
             }
1380 1380
           }
1381 1381
         } else {
1382
-          if(column.label == '晚' ){
1383
-            return 'evening_border'
1384
-          }
1382
+          // if(column.label == '晚' ){
1383
+          //   return 'evening_border'
1384
+          // }
1385 1385
         }
1386 1386
       }
1387 1387
       return "";