28169 1 год назад
Родитель
Сommit
eca24a2b69

+ 18 - 0
src/api/advice.js Просмотреть файл

@@ -583,4 +583,22 @@ export function getNewLongSchedualDoctors(params){
583 583
     method: 'get',
584 584
     params: params
585 585
   })
586
+}
587
+
588
+export function getPatientsByName(params){
589
+   
590
+  return request({
591
+    url:"/api/schedule/getpatientbyname",
592
+    method:"get",
593
+    params:params,
594
+  })
595
+}
596
+
597
+export function getDocAdviceByPatientId(params){
598
+  
599
+  return request({
600
+    url:"/api/schedule/getdocadvicebypatientid",
601
+    method:"get",
602
+    params:params,
603
+  })
586 604
 }

+ 2 - 2
src/api/role/admin.js Просмотреть файл

@@ -284,10 +284,10 @@ export function UploadPrintOrder(data){
284 284
   })
285 285
 }
286 286
 
287
-export function CreateQianshuUserName(data){
287
+export function CreateQianshuUserName(admin_user_id,data){
288 288
   
289 289
   return request({
290
-    url:"/api/device/createqianshuusername",
290
+    url:"/api/device/createqianshuusername?admin_user_id="+admin_user_id,
291 291
     method:"Post",
292 292
     data:data,
293 293
   })

+ 9 - 0
src/router/modules/dialysis.js Просмотреть файл

@@ -56,6 +56,15 @@ export default {
56 56
         noCache: true
57 57
       }
58 58
     },
59
+    {
60
+      path: '/dialysis/patientDoctorAdvice',
61
+      component: () => import('@/xt_pages/dialysis/patientDoctorAdvice'),
62
+      name: '医嘱统计',
63
+      meta: {
64
+        title: '医嘱统计',
65
+        noCache: true
66
+      }
67
+    },
59 68
     {
60 69
       path: '/dialysis/longDoctorAdvice',
61 70
       component: () => import('@/xt_pages/dialysis/longDoctorAdvice'),

+ 25 - 18
src/xt_pages/dialysis/batch_print/batch_print_order.vue Просмотреть файл

@@ -48,7 +48,7 @@
48 48
49 49
             </div>
50 50
             <div class="inline_block" style="margin-left: 25px">
51
-              科室:
51
+              科室22
52 52
               <check-box
53 53
                 text="门诊透析"
54 54
                 :checked="record.patient.source == 1"
@@ -662,17 +662,14 @@
662 662
                     <div class="row" style="padding: 2px 0;">
663 663
                       <div class="inline_block">
664 664
                         抗凝方式:
665
-                        <check-box
666
-                          text="普通肝素"
667
-                          :checked="
668
-                            isCheckBoxChecked(
669
-                              record.prescription,
670
-                              'anticoagulant',
671
-                              2
672
-                            )
673
-                          "
674
-                        ></check-box>
665
+                        <check-box text="普通肝素" :checked="isCheckBoxChecked(record.prescription,'anticoagulant',2)"></check-box>
666
+                        <check-box text="肝素钙注射液" :checked="isCheckBoxChecked(record.prescription,'anticoagulant',14)"></check-box>
675 667
                         ( 首剂
668
+                        <div class="under_line" style="width: 50px;">
669
+                          {{isCheckBoxChecked( record.prescription,"anticoagulant",2)? record.prescription.anticoagulant_shouji: ""}}
670
+                          {{isCheckBoxChecked( record.prescription,"anticoagulant",14)? record.prescription.anticoagulant_shouji: ""}}
671
+                        </div>
672
+                        mg&nbsp; 维持
676 673
                         <div class="under_line" style="width: 50px;">
677 674
                           {{
678 675
                             isCheckBoxChecked(
@@ -680,17 +677,14 @@
680 677
                               "anticoagulant",
681 678
                               2
682 679
                             )
683
-                              ? record.prescription.anticoagulant_shouji
680
+                              ? record.prescription.anticoagulant_weichi
684 681
                               : ""
685 682
                           }}
686
-                        </div>
687
-                        mg&nbsp; 维持
688
-                        <div class="under_line" style="width: 50px;">
689 683
                           {{
690 684
                             isCheckBoxChecked(
691 685
                               record.prescription,
692 686
                               "anticoagulant",
693
-                              2
687
+                              14
694 688
                             )
695 689
                               ? record.prescription.anticoagulant_weichi
696 690
                               : ""
@@ -734,7 +728,7 @@
734 728
                             "
735 729
                           ></check-box>
736 730
                         </span>
737
-                        <div class="under_line" style="width: 40px;">
731
+                        <div class="under_line" style="width: 50px;">
738 732
                           <span v-if="record.prescription.anticoagulant == 3"
739 733
                             >{{
740 734
                               isCheckBoxChecked(
@@ -768,6 +762,17 @@
768 762
                                 : ""
769 763
                             }}
770 764
                           </span>
765
+                          <span v-if="record.prescription.anticoagulant == 14"
766
+                            >{{
767
+                              isCheckBoxChecked(
768
+                                record.prescription,
769
+                                "anticoagulant",
770
+                                14
771
+                              )
772
+                                ? record.prescription.anticoagulant_zongliang
773
+                                : ""
774
+                            }}
775
+                          </span>
771 776
                         </div>
772 777
                         IU
773 778
                         <check-box
@@ -1476,7 +1481,9 @@
1476 1481
                         "
1477 1482
                       ></check-box>
1478 1483
                       ( 科室
1479
-                      <div class="under_line" style="width: 200px;"></div>
1484
+                      <div class="under_line" style="width: 200px;">
1485
+                        {{ record.assessment_after_dislysis.inpatient_department }}
1486
+                      </div>
1480 1487
                       交待病房护士/患者/陪人观察内容:
1481 1488
                       <check-box
1482 1489
                         text="意识状态"

+ 3 - 0
src/xt_pages/dialysis/dialysisPrintOrder.vue Просмотреть файл

@@ -2026,6 +2026,9 @@ export default {
2026 2026
           scanStyles: false,
2027 2027
         });
2028 2028
 
2029
+
2030
+        console.log("printjswowoowowowwoow",style12)
2031
+
2029 2032
       }else if (this.org_template_info.template_id == 65 || this.org_template_info.template_id == 6) {
2030 2033
         printJS({
2031 2034
           printable: "dialysis-print-box-1",

+ 1 - 1
src/xt_pages/dialysis/newDoctorAdvice.vue Просмотреть файл

@@ -1547,7 +1547,7 @@ export default {
1547 1547
         return searchArray
1548 1548
       },
1549 1549
      handleSelect(val) {
1550
-       console.log("val323223232323232323",val)
1550
+      
1551 1551
        this.patient_id = val.id
1552 1552
        this.listQuery.keyword = val.name
1553 1553
        this.requestSchedualDoctors(this.time)

+ 8 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderOne.vue Просмотреть файл

@@ -377,15 +377,19 @@
377 377
                   <tbody>
378 378
                     <tr>
379 379
                       <td width="70">抗凝方式:</td>
380
-                      <td width="80">
380
+                      <td width="80" v-if="prescription.anticoagulant == 2 ">
381 381
                         <label-box :isChecked="prescription.anticoagulant == 2 ? true : false" showValue="普通肝素"></label-box>
382 382
                       </td>
383
+                      <td width="120" v-if="prescription.anticoagulant == 14">
384
+                        <label-box :isChecked="prescription.anticoagulant == 14 ? true : false" showValue="肝素钙注射液"></label-box>
385
+                      </td>
383 386
                       <td width="10">(</td>
384 387
                       <td width="35">首剂</td>
385 388
                       <td width="50">
386 389
                         <div class="under-line">
387 390
                           &nbsp;
388 391
                           <span v-if="prescription.anticoagulant == 2">{{ prescription.anticoagulant_shouji }}</span>
392
+                          <span v-if="prescription.anticoagulant == 14">{{ prescription.anticoagulant_shouji }}</span>
389 393
                         </div>
390 394
                       </td>
391 395
                       <td width="50">mg</td>
@@ -395,6 +399,7 @@
395 399
                         <div class="under-line">
396 400
                           &nbsp;
397 401
                           <span v-if="prescription.anticoagulant == 2">{{ prescription.anticoagulant_weichi }}</span>
402
+                          <span v-if="prescription.anticoagulant == 14">{{ prescription.anticoagulant_weichi }}</span>
398 403
                         </div>
399 404
                       </td>
400 405
                       <td width="40">mg/h</td>
@@ -412,9 +417,11 @@
412 417
                       <td width="60">
413 418
                         <div class="under-line">
414 419
                           &nbsp;
420
+                          <span v-if="prescription.anticoagulant == 2">{{ prescription.anticoagulant_zongliang }}</span>
415 421
                           <span v-if="prescription.anticoagulant == 3">{{ prescription.anticoagulant_zongliang }}</span>
416 422
                           <span v-if="prescription.anticoagulant == 6">{{ prescription.anticoagulant_zongliang }}</span>
417 423
                           <span v-if="prescription.anticoagulant == 7">{{ prescription.anticoagulant_zongliang }}</span>
424
+                          <span v-if="prescription.anticoagulant == 14">{{ prescription.anticoagulant_zongliang }}</span>
418 425
                         </div>
419 426
                       </td>
420 427
                       <td width="20" v-if="isShowZero">mg</td>

+ 63 - 25
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyfour.vue Просмотреть файл

@@ -1320,7 +1320,8 @@ export default {
1320 1320
     },
1321 1321
 
1322 1322
     toUpload() {
1323
-        let dom = document.getElementById("dialysis-print-box-64");
1323
+       
1324
+        let dom = document.getElementById("dialysis-print-box-64")
1324 1325
         //调用方法下载
1325 1326
         html2canvas(dom, {
1326 1327
           useCORS: true, //允许跨域
@@ -1343,18 +1344,21 @@ export default {
1343 1344
 
1344 1345
           var newBase64Data =  pdf.output("dataurlstring").split("base64,")[1]
1345 1346
           console.log("base63",newBase64Data)
1346
-          this.viewPdf(newBase64Data)
1347 1347
 
1348
-          var data = {
1349
-            name:newBase64Data,
1350
-          }
1351
-          UploadPrintOrder(data).then(response=>{
1352
-            if(response.data.state == 1){
1353
-              var sign =  response.data.data.sign
1354
-              console.log("SIGNWWOOWWO")
1355
-              this.$message.success("保存成功!")
1356
-            }
1357
-          })
1348
+          const blob = this.base64ToBlob(newBase64Data, 'application/pdf');
1349
+          this.openPdf(blob);
1350
+          // this.viewPdf(newBase64Data)
1351
+          
1352
+          // var data = {
1353
+          //   name:newBase64Data,
1354
+          // }
1355
+          // UploadPrintOrder(data).then(response=>{
1356
+          //   if(response.data.state == 1){
1357
+          //     var sign =  response.data.data.sign
1358
+          //     console.log("SIGNWWOOWWO")
1359
+          //     this.$message.success("保存成功!")
1360
+          //   }
1361
+          // })
1358 1362
           
1359 1363
           // this.viewPdf(newBase64Data)
1360 1364
           //保存到pdf,名字是stone
@@ -1374,19 +1378,19 @@ export default {
1374 1378
         window.open(fileURL);//打开ppf文件
1375 1379
       }
1376 1380
     },
1377
-    base64ToBlob(code) {
1378
-      code = code.replace(/[\n\r]/g, '');// 检查base64字符串是否符合base64编码
1379
-      // atob() 方法用于解码使用 base-64 编码的字符串。
1380
-      const raw = window.atob(code);
1381
-      const rawLength = raw.length;
1382
-      const uInt8Array = new Uint8Array(rawLength);
1383
-      for (let i = 0; i < rawLength; ++i) {
1384
-      // 将解码后的逐个字符转换成Unicode序号,放入Unit8Array数组
1385
-        uInt8Array[i] = raw.charCodeAt(i);
1386
-      }
1387
-      // 通过Blob将Uint8Array数组转换成pdf类型的文件对象
1388
-      return new Blob([uInt8Array], { type: 'application/pdf' });
1389
-    },
1381
+    // base64ToBlob(code) {
1382
+    //   code = code.replace(/[\n\r]/g, '');// 检查base64字符串是否符合base64编码
1383
+    //   // atob() 方法用于解码使用 base-64 编码的字符串。
1384
+    //   const raw = window.atob(code);
1385
+    //   const rawLength = raw.length;
1386
+    //   const uInt8Array = new Uint8Array(rawLength);
1387
+    //   for (let i = 0; i < rawLength; ++i) {
1388
+    //   // 将解码后的逐个字符转换成Unicode序号,放入Unit8Array数组
1389
+    //     uInt8Array[i] = raw.charCodeAt(i);
1390
+    //   }
1391
+    //   // 通过Blob将Uint8Array数组转换成pdf类型的文件对象
1392
+    //   return new Blob([uInt8Array], { type: 'application/pdf' });
1393
+    // },
1390 1394
     compare (property) {
1391 1395
       return function (a, b) {
1392 1396
           var value1 = a[property]
@@ -1394,6 +1398,40 @@ export default {
1394 1398
           return value1 - value2
1395 1399
       }
1396 1400
     },
1401
+
1402
+    openPdf(blob) {
1403
+      const objectUrl = URL.createObjectURL(blob);
1404
+      const a = document.createElement('a');
1405
+      a.href = objectUrl;
1406
+      a.target = '_blank';
1407
+      a.click();
1408
+      URL.revokeObjectURL(objectUrl);
1409
+    },
1410
+     base64ToBlob(base64Data, contentType) {
1411
+      contentType = contentType || '';
1412
+      const sliceSize = 1024;
1413
+      const byteCharacters = window.atob(base64Data);
1414
+      const bytesLength = byteCharacters.length;
1415
+      const slicesCount = Math.ceil(bytesLength / sliceSize);
1416
+      const byteArrays = new Array(slicesCount);
1417
+
1418
+      for (let sliceIndex = 0; sliceIndex < slicesCount; ++sliceIndex) {
1419
+        const begin = sliceIndex * sliceSize;
1420
+        const end = Math.min(begin + sliceSize, bytesLength);
1421
+
1422
+        const bytes = new Array(end - begin);
1423
+        for (let offset = begin, i = 0; offset < end; ++i, ++offset) {
1424
+          bytes[i] = byteCharacters[offset].charCodeAt(0);
1425
+        }
1426
+        byteArrays[sliceIndex] = new Uint8Array(bytes);
1427
+      }
1428
+
1429
+      return new Blob(byteArrays, {
1430
+        type: contentType
1431
+      });
1432
+    },
1433
+
1434
+  
1397 1435
   },
1398 1436
   created() {
1399 1437
     var bloodAccessParOpera = getDataConfig(

+ 8 - 6
src/xt_pages/role/admin.vue Просмотреть файл

@@ -287,7 +287,7 @@
287 287
               </el-button>
288 288
             </span> -->
289 289
 
290
-            <!-- <span>
290
+           <!-- <span>
291 291
               <el-button type="primary" size="small" @click="toQianShu(scope.row.user_id,scope.row.user_name)">
292 292
                     <span>创建签署人用户</span>
293 293
               </el-button>
@@ -297,13 +297,13 @@
297 297
               <el-button type="primary" size="small" @click="toYinZhang(scope.row.user_id,scope.row.user_name)">
298 298
                     <span>创建个人印章</span>
299 299
               </el-button>
300
-            </span>
301
-
300
+            </span>  -->
301
+<!-- 
302 302
             <span>
303 303
               <el-button type="primary" size="small" @click="toShouQuan(scope.row.user_id,scope.row.user_name)">
304 304
                     <span>创建企业印章</span>
305 305
               </el-button>
306
-            </span> -->
306
+            </span>  -->
307 307
             <el-tooltip
308 308
               class="item"
309 309
               effect="dark"
@@ -1046,11 +1046,13 @@ export default {
1046 1046
       })
1047 1047
     },
1048 1048
    
1049
-    toQianShu(){
1050
-      CreateQianshuUserName().then(response=>{
1049
+    toQianShu(admin_user_id){
1050
+       
1051
+      CreateQianshuUserName(admin_user_id).then(response=>{
1051 1052
          if(response.data.state==1){
1052 1053
           var sign =  response.data.data.sign
1053 1054
           var userId =  response.data.data.userId
1055
+          this.$message.success("签署成功!")
1054 1056
          }
1055 1057
       }) 
1056 1058
     },

+ 1 - 1
src/xt_pages/role/components/AdminInfoForm.vue Просмотреть файл

@@ -75,7 +75,7 @@
75 75
        </el-form-item>
76 76
     </el-col>
77 77
     <el-col :span="8">
78
-       <el-form-item label="工号:">
78
+       <el-form-item label="身份证(工号):">
79 79
            <el-input v-model="form.job_number" style="width:180px;"></el-input>
80 80
        </el-form-item>
81 81
     </el-col>

+ 1 - 1
src/xt_pages/user/inspection.vue Просмотреть файл

@@ -1314,7 +1314,7 @@ export default {
1314 1314
 
1315 1315
 
1316 1316
 
1317
-                  if(this.org_id == 10121){
1317
+                  if(this.org_id == 10121 || this.org_id ==10278 || this.org_id ==10138){
1318 1318
                     item.value = inspectionsMap[items[index].id].inspect_value
1319 1319
                     item.item_name = inspectionsMap[items[index].id].item_name
1320 1320
                   }else{