Browse Source

新分支

28169 1 year ago
parent
commit
b98973b73f

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

382
     method:"get",
382
     method:"get",
383
     params:params
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
     method:"get",
92
     method:"get",
93
     params:params
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
 
45
 
46
                 <el-table-column prop="fenopda" label="使用数量" align="center" min-width="60">
46
                 <el-table-column prop="fenopda" label="使用数量" align="center" min-width="60">
47
                     <template slot-scope="scope">
47
                     <template slot-scope="scope">
48
-                        {{ scope.row.model_number }}
48
+                        {{ scope.row.user_count }}
49
                     </template>
49
                     </template>
50
                 </el-table-column>
50
                 </el-table-column>
51
 
51
 
128
                 <el-form :model="form" ref="form">
128
                 <el-form :model="form" ref="form">
129
                     <el-row :span="24">
129
                     <el-row :span="24">
130
                       <el-col :span="8">
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
                             <el-date-picker
132
                             <el-date-picker
133
                             value-format="yyyy-MM-dd"
133
                             value-format="yyyy-MM-dd"
134
                             v-model="form.record_date"
134
                             v-model="form.record_date"
135
                             type="date"
135
                             type="date"
136
                             placeholder="选择日期时间"
136
                             placeholder="选择日期时间"
137
-                            style="width: 150px;">
137
+                            style="width: 150px;"
138
+                            @change="changeModelNumber">
138
                             </el-date-picker>
139
                             </el-date-picker>
139
                         </el-form-item>
140
                         </el-form-item>
140
                       </el-col>
141
                       </el-col>
141
 
142
 
142
                       <el-col :span="8">
143
                       <el-col :span="8">
143
                         <el-form-item label="品名、型号:" label-width="110px" prop="record_date">
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
                         </el-form-item>
154
                         </el-form-item>
146
                       </el-col>
155
                       </el-col>
147
                     
156
                     
251
                             v-model="form.record_date"
260
                             v-model="form.record_date"
252
                             type="date"
261
                             type="date"
253
                             placeholder="选择日期时间"
262
                             placeholder="选择日期时间"
254
-                            style="width: 150px;">
263
+                            style="width: 150px;"
264
+                            @change="changeModelNumber">
255
                             </el-date-picker>
265
                             </el-date-picker>
256
                         </el-form-item>
266
                         </el-form-item>
257
                       </el-col>
267
                       </el-col>
258
 
268
 
259
                       <el-col :span="8">
269
                       <el-col :span="8">
260
                         <el-form-item label="品名、型号:" label-width="110px" prop="model_number">
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
                         </el-form-item>
280
                         </el-form-item>
263
                       </el-col>
281
                       </el-col>
264
                     
282
                     
427
         getRegistrationDisInfectList,
445
         getRegistrationDisInfectList,
428
         getObjectRegistrationByIdList,
446
         getObjectRegistrationByIdList,
429
         UpdateObjectRegistration,
447
         UpdateObjectRegistration,
430
-        deleteObjectRegistration 
448
+        deleteObjectRegistration,
449
+        getRegistGoodInforList,
450
+        getRegistNumber 
431
     } from "@/api/device"
451
     } from "@/api/device"
432
     import { uParseTime } from '@/utils/tools'
452
     import { uParseTime } from '@/utils/tools'
433
     const moment = require('moment')
453
     const moment = require('moment')
491
          ],
511
          ],
492
          operators: [],
512
          operators: [],
493
          operatorMaps:{},
513
          operatorMaps:{},
494
-         
514
+         goodList:[],
495
         }
515
         }
496
       },
516
       },
497
       created(){
517
       created(){
518
+        this.getRegistGoodInforList()
498
         this.getAllDoctorList()
519
         this.getAllDoctorList()
499
         this.getlist()
520
         this.getlist()
500
       },
521
       },
723
                 if(this.form.packaging_identification ==false ){
744
                 if(this.form.packaging_identification ==false ){
724
                     packaging_identification_one = 2
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
                 var params = {
753
                 var params = {
727
                     id:this.form.id,
754
                     id:this.form.id,
728
                     record_date:this.form.record_date,
755
                     record_date:this.form.record_date,
729
-                    model_number:this.form.model_number,
756
+                    model_number:model_number,
730
                     user_count:this.form.user_count.toString(),
757
                     user_count:this.form.user_count.toString(),
731
                     product_date:this.form.product_date,
758
                     product_date:this.form.product_date,
732
                     expiry_date:this.form.expiry_date,
759
                     expiry_date:this.form.expiry_date,
844
               if(this.form.packaging_identification ==false ){
871
               if(this.form.packaging_identification ==false ){
845
                 packaging_identification_one = 2
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
               var params = {
880
               var params = {
848
                 record_date:this.form.record_date,
881
                 record_date:this.form.record_date,
849
-                model_number:this.form.model_number,
882
+                model_number:model_number,
850
                 user_count:this.form.user_count.toString(),
883
                 user_count:this.form.user_count.toString(),
851
                 product_date:this.form.product_date,
884
                 product_date:this.form.product_date,
852
                 expiry_date:this.form.expiry_date,
885
                 expiry_date:this.form.expiry_date,
870
       },
903
       },
871
       toSeach(){
904
       toSeach(){
872
         this.getlist()
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
                           <td width="50">脉搏<br />(次/分)</td>
1336
                           <td width="50">脉搏<br />(次/分)</td>
1337
                           <td width="50">呼吸<br />(次/分)</td>
1337
                           <td width="50">呼吸<br />(次/分)</td>
1338
                           <td width="50">血流量<br />(ml/min)</td>
1338
                           <td width="50">血流量<br />(ml/min)</td>
1339
+                          <td width="50" v-if="org_id == 10478 || org_id == 0">动脉压<br />(mmHg)</td>
1339
                           <td width="50">静脉压<br />(mmHg)</td>
1340
                           <td width="50">静脉压<br />(mmHg)</td>
1340
                           <td width="50">跨膜压<br />(mmHg)</td>
1341
                           <td width="50">跨膜压<br />(mmHg)</td>
1341
                           <td width="60" v-if="org_id != 9836">
1342
                           <td width="60" v-if="org_id != 9836">
1465
                                 : ""
1466
                                 : ""
1466
                             }}
1467
                             }}
1467
                           </td>
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
                           <td>
1476
                           <td>
1469
                             {{
1477
                             {{
1470
                               monitor_record.venous_pressure
1478
                               monitor_record.venous_pressure

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

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

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

1432
                         <td width="50">脉搏<br />(次/分)</td>
1432
                         <td width="50">脉搏<br />(次/分)</td>
1433
                         <td width="50">呼吸<br />(次/分)</td>
1433
                         <td width="50">呼吸<br />(次/分)</td>
1434
                         <td width="50">血流量<br />(ml/min)</td>
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
                         <td width="50">
1443
                         <td width="50">
1436
                           静脉压<br />({{
1444
                           静脉压<br />({{
1437
                             monitors[0] &&
1445
                             monitors[0] &&
1480
                         <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: ""}}</td>
1488
                         <td>{{ monitor.pulse_frequency? monitor.pulse_frequency: ""}}</td>
1481
                         <td>{{monitor.breathing_rate ? monitor.breathing_rate : ""}}</td>
1489
                         <td>{{monitor.breathing_rate ? monitor.breathing_rate : ""}}</td>
1482
                         <td>{{monitor.blood_flow_volume? monitor.blood_flow_volume: ""}}</td>
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
                         <td>
1498
                         <td>
1484
                           {{
1499
                           {{
1485
                             monitor.venous_pressure
1500
                             monitor.venous_pressure
1635
                         <td></td>
1650
                         <td></td>
1636
                         <td></td>
1651
                         <td></td>
1637
                         <td></td>
1652
                         <td></td>
1653
+                        <td v-if="org_id == 0 || org_id ==10478"></td>
1638
                         <td></td>
1654
                         <td></td>
1639
                         <td></td>
1655
                         <td></td>
1640
                         <td></td>
1656
                         <td></td>
3009
                       >
3025
                       >
3010
                         <span
3026
                         <span
3011
                           style="height: 30px; display: inline-block"
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
                         </span>
3031
                         </span>
3016
                         <img
3032
                         <img
3017
                           style="height: 40px"
3033
                           style="height: 40px"
3018
-                          :src="setAdminUserES(prescription.creater)"
3034
+                          :src="setAdminUserES(doctor_advices[0].advice_doctor)"
3019
                           alt=""
3035
                           alt=""
3020
                           srcset=""
3036
                           srcset=""
3021
                           v-else
3037
                           v-else

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

1092
                         }}
1092
                         }}
1093
                       </div>
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
                       <span v-if="prescription.anticoagulant == 4">mg</span>
1096
                       <span v-if="prescription.anticoagulant == 4">mg</span>
1097
                       <span v-if="prescription.anticoagulant == 3">iu</span>
1097
                       <span v-if="prescription.anticoagulant == 3">iu</span>
1098
                       <span v-if="prescription.anticoagulant == 2">iu</span>
1098
                       <span v-if="prescription.anticoagulant == 2">iu</span>

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

197
             return false
197
             return false
198
           } else {
198
           } else {
199
             let infos = []
199
             let infos = []
200
+            console.log(response.data.data.infos)
200
             for(var i  = 0; i < response.data.data.infos.length; i++){
201
             for(var i  = 0; i < response.data.data.infos.length; i++){
202
+              let tempInfo = {}
201
               var info = response.data.data.infos[i]
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
             that.infos = infos
307
             that.infos = infos
250
             console.log(infos)
308
             console.log(infos)

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

34
             </el-form-item>
34
             </el-form-item>
35
           </el-col>
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
           <el-col :span="8">
55
           <el-col :span="8">
38
             <el-form-item
56
             <el-form-item
39
               label="机位号:"
57
               label="机位号:"
388
         revers_mode: "", // 反渗模式
406
         revers_mode: "", // 反渗模式
389
         treat_mode: [],
407
         treat_mode: [],
390
         treat_type: [], // 治疗模式
408
         treat_type: [], // 治疗模式
391
-        beds: ""
409
+        beds: "",
410
+        zone_id:"",
392
       },
411
       },
393
       forms: {
412
       forms: {
394
         beds: ""
413
         beds: ""
471
       getAllSubregion().then(response => {
490
       getAllSubregion().then(response => {
472
         if (response.data.state === 1) {
491
         if (response.data.state === 1) {
473
           var zones = response.data.data.zones;
492
           var zones = response.data.data.zones;
493
+        
474
           this.deviceType = zones;
494
           this.deviceType = zones;
475
           var numbers = response.data.data.numbers;
495
           var numbers = response.data.data.numbers;
476
           var devicenumber = response.data.data.devicenumber;
496
           var devicenumber = response.data.data.devicenumber;

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

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

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

954
                     data.push(...newNurse)
954
                     data.push(...newNurse)
955
                     data.push(...newDoctor)
955
                     data.push(...newDoctor)
956
                     data.push(obj)
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
         getClass(name,index){
976
         getClass(name,index){
966
             if(name != undefined){
977
             if(name != undefined){

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

21
           size="small"
21
           size="small"
22
           icon="el-icon-circle-plus-outline"
22
           icon="el-icon-circle-plus-outline"
23
           style="float:left"
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
      </div>
40
      </div>
26
     
41
     
27
       
42
       
176
 </template>
191
 </template>
177
 
192
 
178
 <script>
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
 import { getRoles } from "@/api/role/role";
195
 import { getRoles } from "@/api/role/role";
181
 
196
 
182
 import { parseTime } from "@/utils";
197
 import { parseTime } from "@/utils";
473
           console.log("sign",sign)
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
   watch: {
509
   watch: {

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

94
                 {{getManufacturName(scope.row.manufacturer)}}
94
                 {{getManufacturName(scope.row.manufacturer)}}
95
               </template>
95
               </template>
96
             </el-table-column>
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
             <el-table-column label="批准文号" align="center">
102
             <el-table-column label="批准文号" align="center">
98
               <template slot-scope="scope">
103
               <template slot-scope="scope">
99
                 {{scope.row.number}}
104
                 {{scope.row.number}}
402
      isClose: false,
407
      isClose: false,
403
      drug_type: 0,
408
      drug_type: 0,
404
      storehouseId:0,
409
      storehouseId:0,
410
+     dealerList:[],
405
     }
411
     }
406
   
412
   
407
   },
413
   },
454
            this.manufacturerList = response.data.data.manufacturerList
460
            this.manufacturerList = response.data.data.manufacturerList
455
            this.goodTypeList = response.data.data.goodTypeList
461
            this.goodTypeList = response.data.data.goodTypeList
456
            this.patientList = response.data.data.patientList
462
            this.patientList = response.data.data.patientList
463
+           this.dealerList = response.data.data.dealerList
457
          }
464
          }
458
       })
465
       })
459
     },
466
     },
1489
           this.$message.success("保存成功!")
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
   created(){
1510
   created(){
1495
     this.getStorehouseList()
1511
     this.getStorehouseList()

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

99
                  <span v-if="scope.row.inventory_type == 11">盘亏</span>
99
                  <span v-if="scope.row.inventory_type == 11">盘亏</span>
100
                </template>
100
                </template>
101
             </el-table-column>
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
         </el-table>
114
         </el-table>
103
         <el-pagination
115
         <el-pagination
104
             @size-change="handleSizeChange"
116
             @size-change="handleSizeChange"
222
         console.log("str",str)
234
         console.log("str",str)
223
         this.ids = str  
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
     created(){
247
     created(){
227
       this.getlist()
248
       this.getlist()

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

41
                   {{scope.row.good_name}}
41
                   {{scope.row.good_name}}
42
                 </template>
42
                 </template>
43
             </el-table-column>
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
                <template slot-scope="scope">
45
                <template slot-scope="scope">
46
                   {{scope.row.specification_name}}
46
                   {{scope.row.specification_name}}
47
                 </template>
47
                 </template>
48
             </el-table-column>
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
                <template slot-scope="scope">
51
                <template slot-scope="scope">
52
                  {{getTime(scope.row.expire_date)}}
52
                  {{getTime(scope.row.expire_date)}}
53
                </template>
53
                </template>
88
                 <span v-if="scope.row.inventory_type ==7">有效期到期</span>
88
                 <span v-if="scope.row.inventory_type ==7">有效期到期</span>
89
                </template>
89
                </template>
90
             </el-table-column>
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
         </el-table>
104
         </el-table>
93
         <el-pagination
105
         <el-pagination
107
 <script>
119
 <script>
108
 import { uParseTime } from '@/utils/tools'
120
 import { uParseTime } from '@/utils/tools'
109
 import { getInventoryDetailList } from "@/api/stock"
121
 import { getInventoryDetailList } from "@/api/stock"
122
+import user from '../../store/modules/user';
110
 
123
 
111
 export default {
124
 export default {
112
     name: "inventory",
125
     name: "inventory",
127
             damageList:[],
140
             damageList:[],
128
             storehouse_id:0,
141
             storehouse_id:0,
129
             houseList:[],
142
             houseList:[],
143
+            docList:[]
130
          }
144
          }
131
     },
145
     },
132
     methods:{
146
     methods:{
173
                for(let i=0;i<response.data.data.houseList.length;i++){
187
                for(let i=0;i<response.data.data.houseList.length;i++){
174
                  this.houseList.push(response.data.data.houseList[i])
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
       changeHouseList(){
251
       changeHouseList(){
237
         this.houseList = []
252
         this.houseList = []
238
         this.getlist()
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
     created(){
265
     created(){

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

48
             border
48
             border
49
            :cell-class-name="cellStyle"
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
             <el-table-column label="耗材类型" align="center">
56
             <el-table-column label="耗材类型" align="center">
52
               <template slot-scope="scope">
57
               <template slot-scope="scope">
53
                 {{getGoodTypeName(scope.row.good_type_id)}}
58
                 {{getGoodTypeName(scope.row.good_type_id)}}
68
                   {{getManufacturName(scope.row.manufacturer)}}
73
                   {{getManufacturName(scope.row.manufacturer)}}
69
               </template>
74
               </template>
70
             </el-table-column>
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
             <el-table-column label="批准文号" align="center">
81
             <el-table-column label="批准文号" align="center">
72
               <template slot-scope="scope">
82
               <template slot-scope="scope">
73
                  {{scope.row.number}}
83
                  {{scope.row.number}}
358
      warehouseOutByList:[],
368
      warehouseOutByList:[],
359
      flushList:[],
369
      flushList:[],
360
      type_name:0,
370
      type_name:0,
361
-     storehouseId:0
371
+     storehouseId:0,
372
+     dealerList:[]
362
     }
373
     }
363
   
374
   
364
   },
375
   },
411
            this.manufacturerList = response.data.data.manufacturerList
422
            this.manufacturerList = response.data.data.manufacturerList
412
            this.goodTypeList = response.data.data.goodTypeList
423
            this.goodTypeList = response.data.data.goodTypeList
413
            this.patientList = response.data.data.patientList
424
            this.patientList = response.data.data.patientList
425
+           this.dealerList = response.data.data.dealerList
414
          }
426
          }
415
       })
427
       })
416
     },
428
     },
445
       }
457
       }
446
       return manufacturer_name
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
     handleSizeChange(val) {
469
     handleSizeChange(val) {
449
       this.limit = val;
470
       this.limit = val;
450
       this.getlist()
471
       this.getlist()

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

1497
       this.submitMsg = "新增患者成功";
1497
       this.submitMsg = "新增患者成功";
1498
       this.form = Object.assign({}, defaultForm);
1498
       this.form = Object.assign({}, defaultForm);
1499
       this.form.lapseto  = 1
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
             }
1379
             }
1380
           }
1380
           }
1381
         } else {
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
       return "";
1387
       return "";