|
@@ -99,8 +99,7 @@
|
99
|
99
|
<div class="row" style="display: flex;">
|
100
|
100
|
<div class="inline_block" style="flex: 2;" >
|
101
|
101
|
血管通路:
|
102
|
|
- <div class="under_line"
|
103
|
|
- style=" width: 52%;
|
|
102
|
+ <div class="under_line" style=" width: 52%;
|
104
|
103
|
text-align: center; white-space: normal;
|
105
|
104
|
">
|
106
|
105
|
{{ predialysis.blood_access_part_id ? predialysis.blood_access_part_id : '' }}
|
|
@@ -161,11 +160,8 @@
|
161
|
160
|
</div>
|
162
|
161
|
<div class="inline_block" style="flex: 1;">
|
163
|
162
|
置换量:
|
164
|
|
- <div class="under_line"
|
165
|
|
- style=" width: 50%;
|
166
|
|
- text-align: center;
|
167
|
|
- white-space: normal;
|
168
|
|
- "
|
|
163
|
+ <div class="under_line" style=" width: 50%;
|
|
164
|
+ text-align: center; white-space: normal;"
|
169
|
165
|
>
|
170
|
166
|
{{
|
171
|
167
|
prescription.displace_liqui_value ? prescription.displace_liqui_value : "/"
|
|
@@ -1209,114 +1205,281 @@ export default {
|
1209
|
1205
|
methods: {
|
1210
|
1206
|
toUpload() {
|
1211
|
1207
|
|
1212
|
|
- let dom = document.getElementById("dialysis-print-box-1")
|
1213
|
|
- //调用方法下载
|
1214
|
|
- html2canvas(dom, {
|
1215
|
|
- useCORS: true, //允许跨域
|
1216
|
|
- allowTaint: false,
|
1217
|
|
- logging: false,
|
1218
|
|
- letterRendering: true,
|
1219
|
|
- ddpi: window.devicePixelRatio * 4, //将分辨率提高到特定的DPI 提高四倍
|
1220
|
|
- scale: 4, //按比例增加分辨率
|
1221
|
|
- background: '#fff',//pdf背景色为白色,默认是黑色的
|
1222
|
|
- }).then((canvas) => {
|
1223
|
|
- //返回图片dataURL,参数:图片格式和清晰度(0-1)
|
1224
|
|
- var pageData = canvas.toDataURL('image/jpeg', 1.0);
|
1225
|
|
-
|
1226
|
|
- //方向默认竖直,尺寸ponits,格式a4[595.28,841.89]
|
1227
|
|
- var pdf = new jsPDF('', 'pt', 'a4');
|
1228
|
|
-
|
1229
|
|
- //addImage后两个参数控制添加图片的尺寸,此处将页面高度按照a4纸宽高比列进行压缩
|
1230
|
|
- // pdf.addImage(pageData, 'JPEG', 0, 0, 595.28, 592.28 / canvas.width * canvas.height);
|
1231
|
|
- pdf.addImage(pageData, 'JPEG', 0, 0, 555.28, 592.28 / canvas.width * canvas.height);
|
1232
|
|
-
|
1233
|
|
- console.log("pdf222222222222222222",pdf)
|
1234
|
|
-
|
1235
|
|
- var newBase64Data = pdf.output("dataurlstring").split("base64,")[1]
|
1236
|
|
- // console.log("base63",newBase64Data)
|
1237
|
|
- const blob = this.base64ToBlob(newBase64Data, 'application/pdf');
|
1238
|
|
- console.log("blobwoowowowwo",blob)
|
1239
|
|
- this.openPdf(blob);
|
1240
|
|
-
|
1241
|
|
- // var data = {
|
1242
|
|
- // name:newBase64Data,
|
1243
|
|
- // }
|
1244
|
|
- // UploadPrintOrder(data).then(response=>{
|
1245
|
|
- // if(response.data.state == 1){
|
1246
|
|
- // var sign = response.data.data.sign
|
1247
|
|
- // console.log("SIGNWWOOWWO")
|
1248
|
|
- // var pdfBase64 = response.data.data.pdfBase64
|
1249
|
|
- // console.log("pdfBase64",pdfBase64)
|
1250
|
|
- // this.$message.success("保存成功!")
|
1251
|
|
- // const blob = this.base64ToBlob(pdfBase64, 'application/pdf');
|
1252
|
|
- // this.openPdf(blob);
|
1253
|
|
- // }
|
1254
|
|
- // })
|
1255
|
|
-
|
1256
|
|
- // this.viewPdf(newBase64Data)
|
1257
|
|
- //保存到pdf,名字是stone
|
1258
|
|
- // pdf.save('stone.pdf');
|
1259
|
|
-
|
1260
|
|
- });
|
1261
|
|
- },
|
1262
|
|
-
|
1263
|
|
- viewPdf(content) {
|
1264
|
|
- console.log("content",content);
|
1265
|
|
- const blob = this.base64ToBlob(content);
|
1266
|
|
- if (window.navigator && window.navigator.msSaveOrOpenBlob) {
|
1267
|
|
- window.navigator.msSaveOrOpenBlob(blob);
|
1268
|
|
- } else {
|
1269
|
|
- const fileURL = URL.createObjectURL(blob);
|
1270
|
|
- console.log("fileUlrwowowoow",fileURL)
|
1271
|
|
- window.open(fileURL);//打开ppf文件
|
1272
|
|
- }
|
1273
|
|
- },
|
1274
|
|
- compare (property) {
|
1275
|
|
- return function (a, b) {
|
1276
|
|
- var value1 = a[property]
|
1277
|
|
- var value2 = b[property]
|
1278
|
|
- return value1 - value2
|
1279
|
|
- }
|
1280
|
|
- },
|
1281
|
|
-
|
1282
|
|
- openPdf(blob) {
|
1283
|
|
- const objectUrl = URL.createObjectURL(blob);
|
1284
|
|
- const a = document.createElement('a');
|
1285
|
|
- a.href = objectUrl;
|
1286
|
|
- a.target = '_blank';
|
1287
|
|
- a.click();
|
1288
|
|
- URL.revokeObjectURL(objectUrl);
|
1289
|
|
- },
|
1290
|
|
- base64ToBlob(base64Data, contentType) {
|
1291
|
|
- contentType = contentType || '';
|
1292
|
|
- const sliceSize = 1024;
|
1293
|
|
- const byteCharacters = window.atob(base64Data);
|
1294
|
|
- const bytesLength = byteCharacters.length;
|
1295
|
|
- const slicesCount = Math.ceil(bytesLength / sliceSize);
|
1296
|
|
- const byteArrays = new Array(slicesCount);
|
1297
|
|
-
|
1298
|
|
- for (let sliceIndex = 0; sliceIndex < slicesCount; ++sliceIndex) {
|
1299
|
|
- const begin = sliceIndex * sliceSize;
|
1300
|
|
- const end = Math.min(begin + sliceSize, bytesLength);
|
1301
|
|
-
|
1302
|
|
- const bytes = new Array(end - begin);
|
1303
|
|
- for (let offset = begin, i = 0; offset < end; ++i, ++offset) {
|
1304
|
|
- bytes[i] = byteCharacters[offset].charCodeAt(0);
|
1305
|
|
- }
|
1306
|
|
- byteArrays[sliceIndex] = new Uint8Array(bytes);
|
1307
|
|
- }
|
1308
|
|
-
|
1309
|
|
- return new Blob(byteArrays, {
|
1310
|
|
- type: contentType
|
1311
|
|
- });
|
1312
|
|
- },
|
1313
|
|
-
|
1314
|
|
- UploadPdf(res) {
|
1315
|
|
- let pdfBase64Str = res;
|
1316
|
|
- let title = "上传给后端的个人报告";
|
1317
|
|
- var myfile = this.dataURLtoFile(pdfBase64Str, title + ".pdf")
|
1318
|
|
- console.log("myfile",myfile)
|
1319
|
|
- },
|
|
1208
|
+ let dom = document.getElementById("dialysis-print-box-1")
|
|
1209
|
+ //调用方法下载
|
|
1210
|
+ html2canvas(dom, {
|
|
1211
|
+ useCORS: true, //允许跨域
|
|
1212
|
+ allowTaint: false,
|
|
1213
|
+ logging: false,
|
|
1214
|
+ letterRendering: true,
|
|
1215
|
+ ddpi: window.devicePixelRatio * 4, //将分辨率提高到特定的DPI 提高四倍
|
|
1216
|
+ scale: 4, //按比例增加分辨率
|
|
1217
|
+ background: '#fff',//pdf背景色为白色,默认是黑色的
|
|
1218
|
+ }).then((canvas) => {
|
|
1219
|
+ //返回图片dataURL,参数:图片格式和清晰度(0-1)
|
|
1220
|
+ var pageData = canvas.toDataURL('image/jpeg', 1.0);
|
|
1221
|
+
|
|
1222
|
+ //方向默认竖直,尺寸ponits,格式a4[595.28,841.89]
|
|
1223
|
+ var pdf = new jsPDF('', 'pt', 'a4');
|
|
1224
|
+
|
|
1225
|
+ //addImage后两个参数控制添加图片的尺寸,此处将页面高度按照a4纸宽高比列进行压缩
|
|
1226
|
+ // pdf.addImage(pageData, 'JPEG', 0, 0, 595.28, 592.28 / canvas.width * canvas.height);
|
|
1227
|
+ pdf.addImage(pageData, 'JPEG', 0, 0, 555.28, 592.28 / canvas.width * canvas.height);
|
|
1228
|
+
|
|
1229
|
+ console.log("pdf222222222222222222",pdf)
|
|
1230
|
+
|
|
1231
|
+ var newBase64Data = pdf.output("dataurlstring").split("base64,")[1]
|
|
1232
|
+ // console.log("base63",newBase64Data)
|
|
1233
|
+ const blob = this.base64ToBlob(newBase64Data, 'application/pdf');
|
|
1234
|
+ console.log("blobwoowowowwo",blob)
|
|
1235
|
+ this.openPdf(blob);
|
|
1236
|
+
|
|
1237
|
+ // var data = {
|
|
1238
|
+ // name:newBase64Data,
|
|
1239
|
+ // }
|
|
1240
|
+ // UploadPrintOrder(data).then(response=>{
|
|
1241
|
+ // if(response.data.state == 1){
|
|
1242
|
+ // var sign = response.data.data.sign
|
|
1243
|
+ // console.log("SIGNWWOOWWO")
|
|
1244
|
+ // var pdfBase64 = response.data.data.pdfBase64
|
|
1245
|
+ // console.log("pdfBase64",pdfBase64)
|
|
1246
|
+ // this.$message.success("保存成功!")
|
|
1247
|
+ // const blob = this.base64ToBlob(pdfBase64, 'application/pdf');
|
|
1248
|
+ // this.openPdf(blob);
|
|
1249
|
+ // }
|
|
1250
|
+ // })
|
|
1251
|
+
|
|
1252
|
+ // this.viewPdf(newBase64Data)
|
|
1253
|
+ //保存到pdf,名字是stone
|
|
1254
|
+ // pdf.save('stone.pdf');
|
|
1255
|
+
|
|
1256
|
+ });
|
|
1257
|
+ },
|
|
1258
|
+ checkData() {
|
|
1259
|
+ var checkDate =[]
|
|
1260
|
+ if (
|
|
1261
|
+ this.predialysis.blood_access_part_id == "" &&
|
|
1262
|
+ this.predialysis.blood_access_part_opera_name == ""
|
|
1263
|
+ ) {
|
|
1264
|
+ const obj10 = '血管通路'
|
|
1265
|
+ checkDate.push(obj10);
|
|
1266
|
+ }
|
|
1267
|
+ if (this.dialysisOrder !=null &&
|
|
1268
|
+ this.dialysisOrder.DeviceNumber.number == '' &&
|
|
1269
|
+ this.patientInfo.DialysisSchedule.device_number.number == ""
|
|
1270
|
+ ) {
|
|
1271
|
+ const obj9 = '透析机'
|
|
1272
|
+ checkDate.push(obj9);
|
|
1273
|
+ }
|
|
1274
|
+ if (this.dialysisOrder !=null &&
|
|
1275
|
+ this.dialysisOrder.dialysis_dialyszers == "" &&
|
|
1276
|
+ this.dialysisOrder.dialysis_strainer == ""
|
|
1277
|
+ ) {
|
|
1278
|
+ const obj17 = '透析(滤)器'
|
|
1279
|
+ checkDate.push(obj17);
|
|
1280
|
+ } if (this.prescription.mode == "") {
|
|
1281
|
+ const obj13 = '治疗方式'
|
|
1282
|
+ checkDate.push(obj13);
|
|
1283
|
+ } if (
|
|
1284
|
+ this.prescription.displace_liqui_value == 0 &&
|
|
1285
|
+ this.prescription.mode_id == 2
|
|
1286
|
+ ) {
|
|
1287
|
+ const obj15 = '置换量'
|
|
1288
|
+ checkDate.push(obj15);
|
|
1289
|
+ } if (this.dialysisOrder !=null &&
|
|
1290
|
+ this.dialysisOrder.dialysis_irrigation != '0'
|
|
1291
|
+ ) {
|
|
1292
|
+ const obj18 = '灌流器'
|
|
1293
|
+ checkDate.push(obj18);
|
|
1294
|
+ } if (this.predialysis.puncture_way == "") {
|
|
1295
|
+ const obj6 = '穿刺方式'
|
|
1296
|
+ checkDate.push(obj6);
|
|
1297
|
+ } if (this.prescription.anticoagulant_name == '') {
|
|
1298
|
+ const obj28 = '抗凝方式'
|
|
1299
|
+ checkDate.push(obj28);
|
|
1300
|
+ } if (
|
|
1301
|
+ this.prescription.anticoagulant_shouji == "" &&
|
|
1302
|
+ this.prescription.anticoagulant_name == '肝素钠'
|
|
1303
|
+ ) {
|
|
1304
|
+ const obj30 = '首剂'
|
|
1305
|
+ checkDate.push(obj30);
|
|
1306
|
+ } if (
|
|
1307
|
+ this.prescription.anticoagulant_weichi == "" &&
|
|
1308
|
+ this.prescription.anticoagulant_name == '肝素钠'
|
|
1309
|
+ ) {
|
|
1310
|
+ const obj31 = '追加'
|
|
1311
|
+ checkDate.push(obj31);
|
|
1312
|
+ } if (this.predialysis.temperature == "") {
|
|
1313
|
+ const obj2 = '透前体温'
|
|
1314
|
+ checkDate.push(obj2);
|
|
1315
|
+ } if (this.predialysis.pulse_frequency == "") {
|
|
1316
|
+ const obj3 = '透前脉搏'
|
|
1317
|
+ checkDate.push(obj3);
|
|
1318
|
+ } if (
|
|
1319
|
+ this.predialysis.systolic_blood_pressure == 0 ||
|
|
1320
|
+ this.predialysis.diastolic_blood_pressure == 0
|
|
1321
|
+ ) {
|
|
1322
|
+ const obj5 = '透前血压'
|
|
1323
|
+ checkDate.push(obj5);
|
|
1324
|
+ } if (this.predialysis.dry_weight == '') {
|
|
1325
|
+ const obj21 = '干体重'
|
|
1326
|
+ checkDate.push(obj21);
|
|
1327
|
+ } if (this.prescription.target_ultrafiltration == '') {
|
|
1328
|
+ const obj = '医嘱脱水量'
|
|
1329
|
+ checkDate.push(obj);
|
|
1330
|
+ } if (this.prescription.dialysis_duration_hour == "" &&
|
|
1331
|
+ this.prescription.dialysis_duration_minute == ''
|
|
1332
|
+ ) {
|
|
1333
|
+ const obj8 = '治疗时间'
|
|
1334
|
+ checkDate.push(obj8);
|
|
1335
|
+ } if (this.predialysis.puncture_needle == "") {
|
|
1336
|
+ const obj7 = '穿刺针'
|
|
1337
|
+ checkDate.push(obj7);
|
|
1338
|
+ } if (this.prescription.creater == 0) {
|
|
1339
|
+ const obj52 = '医生签名'
|
|
1340
|
+ checkDate.push(obj52);
|
|
1341
|
+ } if (this.prescription.remark == 0) {
|
|
1342
|
+ const objq = '特殊医嘱'
|
|
1343
|
+ checkDate.push(objq);
|
|
1344
|
+ } if (
|
|
1345
|
+ this.dialysisOrder != null &&
|
|
1346
|
+ this.dialysisOrder.puncture_nurse == 0
|
|
1347
|
+ ) {
|
|
1348
|
+ const obj47 = '上机护士'
|
|
1349
|
+ checkDate.push(obj47);
|
|
1350
|
+ } if (
|
|
1351
|
+ this.dialysisOrder != null &&
|
|
1352
|
+ this.dialysisOrder.start_nurse == 0
|
|
1353
|
+ ) {
|
|
1354
|
+ const obj48 = '责任护士'
|
|
1355
|
+ checkDate.push(obj48);
|
|
1356
|
+ } if (this.check != null && this.check.modifier == 0) {
|
|
1357
|
+ const obj49 = '核对护士'
|
|
1358
|
+ checkDate.push(obj49);
|
|
1359
|
+ } if (this.afterdialysis.internal_fistula == "") {
|
|
1360
|
+ const obj39 = '穿刺'
|
|
1361
|
+ checkDate.push(obj39);
|
|
1362
|
+ } if (this.afterdialysis.cruor == "") {
|
|
1363
|
+ const obj11 = '透析器'
|
|
1364
|
+ checkDate.push(obj11);
|
|
1365
|
+ } if (this.afterdialysis.is_eat == "") {
|
|
1366
|
+ const obj12 = '透析中进食'
|
|
1367
|
+ checkDate.push(obj12);
|
|
1368
|
+ } if (
|
|
1369
|
+ this.afterdialysis.actual_treatment_hour == 0 &&
|
|
1370
|
+ this.afterdialysis.actual_treatment_minute == 0
|
|
1371
|
+ ) {
|
|
1372
|
+ const obj37 = '实际治疗时间'
|
|
1373
|
+ checkDate.push(obj37);
|
|
1374
|
+ } if (this.predialysis.weight_before == 0) {
|
|
1375
|
+ const obj20 = '透前体重'
|
|
1376
|
+ checkDate.push(obj20);
|
|
1377
|
+ } if (this.afterdialysis.weight_after == 0) {
|
|
1378
|
+ const obj41 = '透后体重'
|
|
1379
|
+ checkDate.push(obj41);
|
|
1380
|
+ } if (
|
|
1381
|
+ this.afterdialysis.systolic_blood_pressure == 0 ||
|
|
1382
|
+ this.afterdialysis.diastolic_blood_pressure == 0
|
|
1383
|
+ ) {
|
|
1384
|
+ const obj36 = '透后血压'
|
|
1385
|
+ checkDate.push(obj36);
|
|
1386
|
+ } if (this.afterdialysis.pulse_frequency == 0) {
|
|
1387
|
+ const obj34 = '透后脉搏'
|
|
1388
|
+ checkDate.push(obj34);
|
|
1389
|
+ } if (this.afterdialysis.actual_ultrafiltration == 0) {
|
|
1390
|
+ const obj16 = '实际脱水量'
|
|
1391
|
+ checkDate.push(obj16);
|
|
1392
|
+ } if (this.afterdialysis.actual_displacement == '') {
|
|
1393
|
+ const obj14 = '实际置换量'
|
|
1394
|
+ checkDate.push(obj14);
|
|
1395
|
+ } if (this.summary.dialysis_summary == "") {
|
|
1396
|
+ const obj45 = '透析小结'
|
|
1397
|
+ checkDate.push(obj45);
|
|
1398
|
+ } if (this.summary.mission == '') {
|
|
1399
|
+ const obj46 = '宣教知识'
|
|
1400
|
+ checkDate.push(obj46);
|
|
1401
|
+ } if (this.prescription.calcium == 0) {
|
|
1402
|
+ const obj23 = '钙'
|
|
1403
|
+ checkDate.push(obj23);
|
|
1404
|
+ } if (this.prescription.sodium == 0) {
|
|
1405
|
+ const obj24 = '钠'
|
|
1406
|
+ checkDate.push(obj24);
|
|
1407
|
+ } if (this.prescription.kalium == 0) {
|
|
1408
|
+ const obj25 = '钾'
|
|
1409
|
+ checkDate.push(obj25);
|
|
1410
|
+ } if (this.doctor_advices.length > 0) {
|
|
1411
|
+ console.log('12122this.doctor_advices',this.doctor_advices);
|
|
1412
|
+
|
|
1413
|
+ this.doctor_advices.map((item) => {
|
|
1414
|
+ if (item.id > 0 && (item.created_time || item.start_time)) {
|
|
1415
|
+ if(item.advice_doctor ==0 && item.execution_staff == 0){
|
|
1416
|
+ const obj53 = '医嘱医生,执行'
|
|
1417
|
+ checkDate.push(obj53);
|
|
1418
|
+ }
|
|
1419
|
+ }
|
|
1420
|
+ });
|
|
1421
|
+ }
|
|
1422
|
+ console.log('checkDate',checkDate);
|
|
1423
|
+
|
|
1424
|
+ this.getcheckData(checkDate)
|
|
1425
|
+ },
|
|
1426
|
+ viewPdf(content) {
|
|
1427
|
+ console.log("content",content);
|
|
1428
|
+ const blob = this.base64ToBlob(content);
|
|
1429
|
+ if (window.navigator && window.navigator.msSaveOrOpenBlob) {
|
|
1430
|
+ window.navigator.msSaveOrOpenBlob(blob);
|
|
1431
|
+ } else {
|
|
1432
|
+ const fileURL = URL.createObjectURL(blob);
|
|
1433
|
+ console.log("fileUlrwowowoow",fileURL)
|
|
1434
|
+ window.open(fileURL);//打开ppf文件
|
|
1435
|
+ }
|
|
1436
|
+ },
|
|
1437
|
+ compare (property) {
|
|
1438
|
+ return function (a, b) {
|
|
1439
|
+ var value1 = a[property]
|
|
1440
|
+ var value2 = b[property]
|
|
1441
|
+ return value1 - value2
|
|
1442
|
+ }
|
|
1443
|
+ },
|
|
1444
|
+
|
|
1445
|
+ openPdf(blob) {
|
|
1446
|
+ const objectUrl = URL.createObjectURL(blob);
|
|
1447
|
+ const a = document.createElement('a');
|
|
1448
|
+ a.href = objectUrl;
|
|
1449
|
+ a.target = '_blank';
|
|
1450
|
+ a.click();
|
|
1451
|
+ URL.revokeObjectURL(objectUrl);
|
|
1452
|
+ },
|
|
1453
|
+ base64ToBlob(base64Data, contentType) {
|
|
1454
|
+ contentType = contentType || '';
|
|
1455
|
+ const sliceSize = 1024;
|
|
1456
|
+ const byteCharacters = window.atob(base64Data);
|
|
1457
|
+ const bytesLength = byteCharacters.length;
|
|
1458
|
+ const slicesCount = Math.ceil(bytesLength / sliceSize);
|
|
1459
|
+ const byteArrays = new Array(slicesCount);
|
|
1460
|
+
|
|
1461
|
+ for (let sliceIndex = 0; sliceIndex < slicesCount; ++sliceIndex) {
|
|
1462
|
+ const begin = sliceIndex * sliceSize;
|
|
1463
|
+ const end = Math.min(begin + sliceSize, bytesLength);
|
|
1464
|
+
|
|
1465
|
+ const bytes = new Array(end - begin);
|
|
1466
|
+ for (let offset = begin, i = 0; offset < end; ++i, ++offset) {
|
|
1467
|
+ bytes[i] = byteCharacters[offset].charCodeAt(0);
|
|
1468
|
+ }
|
|
1469
|
+ byteArrays[sliceIndex] = new Uint8Array(bytes);
|
|
1470
|
+ }
|
|
1471
|
+
|
|
1472
|
+ return new Blob(byteArrays, {
|
|
1473
|
+ type: contentType
|
|
1474
|
+ });
|
|
1475
|
+ },
|
|
1476
|
+
|
|
1477
|
+ UploadPdf(res) {
|
|
1478
|
+ let pdfBase64Str = res;
|
|
1479
|
+ let title = "上传给后端的个人报告";
|
|
1480
|
+ var myfile = this.dataURLtoFile(pdfBase64Str, title + ".pdf")
|
|
1481
|
+ console.log("myfile",myfile)
|
|
1482
|
+ },
|
1320
|
1483
|
// 获取当前年份,用于年龄计算
|
1321
|
1484
|
getoldAge() {
|
1322
|
1485
|
let date = new Date();
|
|
@@ -1344,159 +1507,159 @@ export default {
|
1344
|
1507
|
}
|
1345
|
1508
|
},
|
1346
|
1509
|
|
1347
|
|
- checkData() {
|
1348
|
|
- if (
|
1349
|
|
- this.predialysis.blood_access_part_id == "" &&
|
1350
|
|
- this.predialysis.blood_access_part_opera_name == ""
|
1351
|
|
- ) {
|
1352
|
|
- this.$message.error("血管通路未填");
|
1353
|
|
- } else if (this.dialysisOrder.dialysis_dialyszers == "") {
|
1354
|
|
- this.$message.error("透析器未填");
|
1355
|
|
- } else if (this.predialysis.puncture_needle == "") {
|
1356
|
|
- this.$message.error("穿刺针未填");
|
1357
|
|
- } else if (this.prescription.mode == "") {
|
1358
|
|
- this.$message.error("治疗方式未填");
|
1359
|
|
- } else if (
|
1360
|
|
- this.prescription.displace_liqui_value == 0 &&
|
1361
|
|
- this.prescription.mode == 'HDF'
|
1362
|
|
- ) {
|
1363
|
|
- this.$message.error("置换量未填");
|
1364
|
|
- } else if( this.dialysisOrder.dialysis_irrigation == '') {
|
1365
|
|
- this.$message.error("灌流器未填");
|
1366
|
|
- } else if (this.predialysis.puncture_way == "") {
|
1367
|
|
- this.$message.error("穿刺方式未填");
|
1368
|
|
- } else if (this.prescription.anticoagulant_name == '') {
|
1369
|
|
- this.$message.error("抗凝方式未填");
|
1370
|
|
- } else if (this.predialysis.temperature == "") {
|
1371
|
|
- this.$message.error("透前体温未填");
|
1372
|
|
- } else if (this.predialysis.pulse_frequency == "") {
|
1373
|
|
- this.$message.error("透前脉搏未填");
|
1374
|
|
- } else if (
|
1375
|
|
- this.predialysis.systolic_blood_pressure == 0 ||
|
1376
|
|
- this.predialysis.diastolic_blood_pressure == 0
|
1377
|
|
- ) {
|
1378
|
|
- this.$message.error("透前血压未填完整");
|
1379
|
|
- } else if (this.predialysis.weight_before == 0) {
|
1380
|
|
- this.$message.error("透前体重未填");
|
1381
|
|
- } else if (this.predialysis.dry_weight == 0) {
|
1382
|
|
- this.$message.error("干体重未填");
|
1383
|
|
- } else if (this.prescription.target_ultrafiltration == 0) {
|
1384
|
|
- this.$message.error("医嘱脱水未填");
|
1385
|
|
- } else if (
|
1386
|
|
- this.prescription.dialysis_duration_hour == 0 &&
|
1387
|
|
- this.prescription.dialysis_duration_minute == 0
|
1388
|
|
- ) {
|
1389
|
|
- this.$message.error("治疗时间未填");
|
1390
|
|
- } else if (this.afterdialysis.internal_fistula == "") {
|
1391
|
|
- this.$message.error("透后内瘘未填");
|
1392
|
|
- } else if (this.afterdialysis.cruor == "") {
|
1393
|
|
- this.$message.error("透析器凝血未填");
|
1394
|
|
- } else if (
|
1395
|
|
- this.afterdialysis.actual_treatment_hour == 0 &&
|
1396
|
|
- this.afterdialysis.actual_treatment_minute == ''
|
1397
|
|
- ) {
|
1398
|
|
- this.$message.error("实际治疗时间未填");
|
1399
|
|
- } else if (this.afterdialysis.dialysis_during == '') {
|
1400
|
|
- this.$message.error("透析中进食未填");
|
1401
|
|
- } else if (this.afterdialysis.weight_after == 0) {
|
1402
|
|
- this.$message.error("透后体重未填");
|
1403
|
|
- } else if (
|
1404
|
|
- this.afterdialysis.systolic_blood_pressure == 0 ||
|
1405
|
|
- this.afterdialysis.diastolic_blood_pressure == 0
|
1406
|
|
- ) {
|
1407
|
|
- this.$message.error("透后血压未填完整");
|
1408
|
|
- } else if (this.afterdialysis.pulse_frequency == 0) {
|
1409
|
|
- this.$message.error("透后脉搏未填");
|
1410
|
|
- } else if (this.afterdialysis.actual_ultrafiltration == 0) {
|
1411
|
|
- this.$message.error("实际脱水量未填");
|
1412
|
|
- } else if (this.afterdialysis.actual_displacement == "") {
|
1413
|
|
- this.$message.error("实际置换量未填");
|
1414
|
|
- } else if (this.summary.dialysis_summary == "") {
|
1415
|
|
- this.$message.error("透析小结未填");
|
1416
|
|
- } else if (
|
1417
|
|
- this.dialysisOrder == null ||
|
1418
|
|
- this.dialysisOrder.puncture_nurse == 0
|
1419
|
|
- ) {
|
1420
|
|
- this.$message.error("穿刺护士未填");
|
1421
|
|
- } else if(this.dialysisOrder.start_nurse == 0 || this.dialysisOrder == null) {
|
1422
|
|
- this.$message.error("责任护士未填");
|
1423
|
|
- }
|
1424
|
|
- else if (this.dialysisOrder == null && this.check.creater == 0) {
|
1425
|
|
- this.$message.error("核对人员未填");
|
1426
|
|
- } else if (
|
1427
|
|
- this.dialysisOrder != null &&
|
1428
|
|
- this.dialysisOrder.start_nurse == this.check.modifier &&
|
1429
|
|
- this.check.creater == 0
|
1430
|
|
- ) {
|
1431
|
|
- this.$message.error("核对人员未填");
|
1432
|
|
- } else if (
|
1433
|
|
- this.dialysisOrder != null &&
|
1434
|
|
- this.dialysisOrder.start_nurse == this.check.creater &&
|
1435
|
|
- this.check.modifier == 0
|
1436
|
|
- ) {
|
1437
|
|
- this.$message.error("核对人员未填");
|
1438
|
|
- } else if (
|
1439
|
|
- this.dialysisOrder != null &&
|
1440
|
|
- this.dialysisOrder.start_nurse != this.check.creater &&
|
1441
|
|
- this.dialysisOrder.start_nurse != this.check.modifier &&
|
1442
|
|
- this.check.creater == 0
|
1443
|
|
- ) {
|
1444
|
|
- this.$message.error("核对人员未填");
|
1445
|
|
- } else if (this.prescription.creater == 0) {
|
1446
|
|
- this.$message.error("医生签名未填");
|
1447
|
|
- } else if (this.tableAdvice.length > 0) {
|
1448
|
|
- let num = 0;
|
1449
|
|
- this.tableAdvice.map((item) => {
|
1450
|
|
- if (item.id > 0 && (item.created_time || item.start_time)) {
|
1451
|
|
- this.users.map((it) => {
|
1452
|
|
- if (it.id == item.advice_doctor) {
|
1453
|
|
- if (it.user_type == 3) {
|
1454
|
|
- num++;
|
1455
|
|
- this.$message.closeAll();
|
1456
|
|
- this.$message.error("存在不是医生保存的医嘱");
|
1457
|
|
- } else if (
|
1458
|
|
- it.id == item.execution_staff &&
|
1459
|
|
- item.execution_staff > 0
|
1460
|
|
- ) {
|
1461
|
|
- if (it.user_type == 2) {
|
1462
|
|
- num++;
|
1463
|
|
- this.$message.closeAll();
|
1464
|
|
- this.$message.error("存在不是护士执行的医嘱");
|
1465
|
|
- }
|
1466
|
|
- } else if (it.id == item.checker && item.checker > 0) {
|
1467
|
|
- if (it.user_type == 2) {
|
1468
|
|
- num++;
|
1469
|
|
- this.$message.closeAll();
|
1470
|
|
- this.$message.error("存在不是护士核对的医嘱");
|
1471
|
|
- }
|
1472
|
|
- }
|
1473
|
|
- } else if (
|
1474
|
|
- it.id == item.execution_staff &&
|
1475
|
|
- item.execution_staff > 0
|
1476
|
|
- ) {
|
1477
|
|
- if (it.user_type == 2) {
|
1478
|
|
- num++;
|
1479
|
|
- this.$message.closeAll();
|
1480
|
|
- this.$message.error("存在不是护士执行的医嘱");
|
1481
|
|
- }
|
1482
|
|
- } else if (it.id == item.checker && item.checker > 0) {
|
1483
|
|
- if (it.user_type == 2) {
|
1484
|
|
- num++;
|
1485
|
|
- this.$message.closeAll();
|
1486
|
|
- this.$message.error("存在不是护士核对的医嘱");
|
1487
|
|
- }
|
1488
|
|
- }
|
1489
|
|
- });
|
1490
|
|
- }
|
1491
|
|
- });
|
1492
|
|
- if (num == 0) {
|
1493
|
|
- this.$message.success("核对完成");
|
1494
|
|
- }
|
1495
|
|
- } else {
|
1496
|
|
- this.$message.success("核对完成");
|
1497
|
|
- }
|
|
1510
|
+ // checkData() {
|
|
1511
|
+ // if (
|
|
1512
|
+ // this.predialysis.blood_access_part_id == "" &&
|
|
1513
|
+ // this.predialysis.blood_access_part_opera_name == ""
|
|
1514
|
+ // ) {
|
|
1515
|
+ // this.$message.error("血管通路未填");
|
|
1516
|
+ // } else if (this.dialysisOrder.dialysis_dialyszers == "") {
|
|
1517
|
+ // this.$message.error("透析器未填");
|
|
1518
|
+ // } else if (this.predialysis.puncture_needle == "") {
|
|
1519
|
+ // this.$message.error("穿刺针未填");
|
|
1520
|
+ // } else if (this.prescription.mode == "") {
|
|
1521
|
+ // this.$message.error("治疗方式未填");
|
|
1522
|
+ // } else if (
|
|
1523
|
+ // this.prescription.displace_liqui_value == 0 &&
|
|
1524
|
+ // this.prescription.mode == 'HDF'
|
|
1525
|
+ // ) {
|
|
1526
|
+ // this.$message.error("置换量未填");
|
|
1527
|
+ // } else if( this.dialysisOrder.dialysis_irrigation == '') {
|
|
1528
|
+ // this.$message.error("灌流器未填");
|
|
1529
|
+ // } else if (this.predialysis.puncture_way == "") {
|
|
1530
|
+ // this.$message.error("穿刺方式未填");
|
|
1531
|
+ // } else if (this.prescription.anticoagulant_name == '') {
|
|
1532
|
+ // this.$message.error("抗凝方式未填");
|
|
1533
|
+ // } else if (this.predialysis.temperature == "") {
|
|
1534
|
+ // this.$message.error("透前体温未填");
|
|
1535
|
+ // } else if (this.predialysis.pulse_frequency == "") {
|
|
1536
|
+ // this.$message.error("透前脉搏未填");
|
|
1537
|
+ // } else if (
|
|
1538
|
+ // this.predialysis.systolic_blood_pressure == 0 ||
|
|
1539
|
+ // this.predialysis.diastolic_blood_pressure == 0
|
|
1540
|
+ // ) {
|
|
1541
|
+ // this.$message.error("透前血压未填完整");
|
|
1542
|
+ // } else if (this.predialysis.weight_before == 0) {
|
|
1543
|
+ // this.$message.error("透前体重未填");
|
|
1544
|
+ // } else if (this.predialysis.dry_weight == 0) {
|
|
1545
|
+ // this.$message.error("干体重未填");
|
|
1546
|
+ // } else if (this.prescription.target_ultrafiltration == 0) {
|
|
1547
|
+ // this.$message.error("医嘱脱水未填");
|
|
1548
|
+ // } else if (
|
|
1549
|
+ // this.prescription.dialysis_duration_hour == 0 &&
|
|
1550
|
+ // this.prescription.dialysis_duration_minute == 0
|
|
1551
|
+ // ) {
|
|
1552
|
+ // this.$message.error("治疗时间未填");
|
|
1553
|
+ // } else if (this.afterdialysis.internal_fistula == "") {
|
|
1554
|
+ // this.$message.error("透后内瘘未填");
|
|
1555
|
+ // } else if (this.afterdialysis.cruor == "") {
|
|
1556
|
+ // this.$message.error("透析器凝血未填");
|
|
1557
|
+ // } else if (
|
|
1558
|
+ // this.afterdialysis.actual_treatment_hour == 0 &&
|
|
1559
|
+ // this.afterdialysis.actual_treatment_minute == ''
|
|
1560
|
+ // ) {
|
|
1561
|
+ // this.$message.error("实际治疗时间未填");
|
|
1562
|
+ // } else if (this.afterdialysis.dialysis_during == '') {
|
|
1563
|
+ // this.$message.error("透析中进食未填");
|
|
1564
|
+ // } else if (this.afterdialysis.weight_after == 0) {
|
|
1565
|
+ // this.$message.error("透后体重未填");
|
|
1566
|
+ // } else if (
|
|
1567
|
+ // this.afterdialysis.systolic_blood_pressure == 0 ||
|
|
1568
|
+ // this.afterdialysis.diastolic_blood_pressure == 0
|
|
1569
|
+ // ) {
|
|
1570
|
+ // this.$message.error("透后血压未填完整");
|
|
1571
|
+ // } else if (this.afterdialysis.pulse_frequency == 0) {
|
|
1572
|
+ // this.$message.error("透后脉搏未填");
|
|
1573
|
+ // } else if (this.afterdialysis.actual_ultrafiltration == 0) {
|
|
1574
|
+ // this.$message.error("实际脱水量未填");
|
|
1575
|
+ // } else if (this.afterdialysis.actual_displacement == "") {
|
|
1576
|
+ // this.$message.error("实际置换量未填");
|
|
1577
|
+ // } else if (this.summary.dialysis_summary == "") {
|
|
1578
|
+ // this.$message.error("透析小结未填");
|
|
1579
|
+ // } else if (
|
|
1580
|
+ // this.dialysisOrder == null ||
|
|
1581
|
+ // this.dialysisOrder.puncture_nurse == 0
|
|
1582
|
+ // ) {
|
|
1583
|
+ // this.$message.error("穿刺护士未填");
|
|
1584
|
+ // } else if(this.dialysisOrder.start_nurse == 0 || this.dialysisOrder == null) {
|
|
1585
|
+ // this.$message.error("责任护士未填");
|
|
1586
|
+ // }
|
|
1587
|
+ // else if (this.dialysisOrder == null && this.check.creater == 0) {
|
|
1588
|
+ // this.$message.error("核对人员未填");
|
|
1589
|
+ // } else if (
|
|
1590
|
+ // this.dialysisOrder != null &&
|
|
1591
|
+ // this.dialysisOrder.start_nurse == this.check.modifier &&
|
|
1592
|
+ // this.check.creater == 0
|
|
1593
|
+ // ) {
|
|
1594
|
+ // this.$message.error("核对人员未填");
|
|
1595
|
+ // } else if (
|
|
1596
|
+ // this.dialysisOrder != null &&
|
|
1597
|
+ // this.dialysisOrder.start_nurse == this.check.creater &&
|
|
1598
|
+ // this.check.modifier == 0
|
|
1599
|
+ // ) {
|
|
1600
|
+ // this.$message.error("核对人员未填");
|
|
1601
|
+ // } else if (
|
|
1602
|
+ // this.dialysisOrder != null &&
|
|
1603
|
+ // this.dialysisOrder.start_nurse != this.check.creater &&
|
|
1604
|
+ // this.dialysisOrder.start_nurse != this.check.modifier &&
|
|
1605
|
+ // this.check.creater == 0
|
|
1606
|
+ // ) {
|
|
1607
|
+ // this.$message.error("核对人员未填");
|
|
1608
|
+ // } else if (this.prescription.creater == 0) {
|
|
1609
|
+ // this.$message.error("医生签名未填");
|
|
1610
|
+ // } else if (this.tableAdvice.length > 0) {
|
|
1611
|
+ // let num = 0;
|
|
1612
|
+ // this.tableAdvice.map((item) => {
|
|
1613
|
+ // if (item.id > 0 && (item.created_time || item.start_time)) {
|
|
1614
|
+ // this.users.map((it) => {
|
|
1615
|
+ // if (it.id == item.advice_doctor) {
|
|
1616
|
+ // if (it.user_type == 3) {
|
|
1617
|
+ // num++;
|
|
1618
|
+ // this.$message.closeAll();
|
|
1619
|
+ // this.$message.error("存在不是医生保存的医嘱");
|
|
1620
|
+ // } else if (
|
|
1621
|
+ // it.id == item.execution_staff &&
|
|
1622
|
+ // item.execution_staff > 0
|
|
1623
|
+ // ) {
|
|
1624
|
+ // if (it.user_type == 2) {
|
|
1625
|
+ // num++;
|
|
1626
|
+ // this.$message.closeAll();
|
|
1627
|
+ // this.$message.error("存在不是护士执行的医嘱");
|
|
1628
|
+ // }
|
|
1629
|
+ // } else if (it.id == item.checker && item.checker > 0) {
|
|
1630
|
+ // if (it.user_type == 2) {
|
|
1631
|
+ // num++;
|
|
1632
|
+ // this.$message.closeAll();
|
|
1633
|
+ // this.$message.error("存在不是护士核对的医嘱");
|
|
1634
|
+ // }
|
|
1635
|
+ // }
|
|
1636
|
+ // } else if (
|
|
1637
|
+ // it.id == item.execution_staff &&
|
|
1638
|
+ // item.execution_staff > 0
|
|
1639
|
+ // ) {
|
|
1640
|
+ // if (it.user_type == 2) {
|
|
1641
|
+ // num++;
|
|
1642
|
+ // this.$message.closeAll();
|
|
1643
|
+ // this.$message.error("存在不是护士执行的医嘱");
|
|
1644
|
+ // }
|
|
1645
|
+ // } else if (it.id == item.checker && item.checker > 0) {
|
|
1646
|
+ // if (it.user_type == 2) {
|
|
1647
|
+ // num++;
|
|
1648
|
+ // this.$message.closeAll();
|
|
1649
|
+ // this.$message.error("存在不是护士核对的医嘱");
|
|
1650
|
+ // }
|
|
1651
|
+ // }
|
|
1652
|
+ // });
|
|
1653
|
+ // }
|
|
1654
|
+ // });
|
|
1655
|
+ // if (num == 0) {
|
|
1656
|
+ // this.$message.success("核对完成");
|
|
1657
|
+ // }
|
|
1658
|
+ // } else {
|
|
1659
|
+ // this.$message.success("核对完成");
|
|
1660
|
+ // }
|
1498
|
1661
|
|
1499
|
|
- },
|
|
1662
|
+ // },
|
1500
|
1663
|
getDisplaceLiquiPart: function (val) {
|
1501
|
1664
|
let displace_liqui_part_name = "/";
|
1502
|
1665
|
const displace_liqui_part = this.displaceLiquiPartOptions;
|
|
@@ -1637,6 +1800,7 @@ export default {
|
1637
|
1800
|
? this.modeOptions[mode_id].name
|
1638
|
1801
|
: "";
|
1639
|
1802
|
},
|
|
1803
|
+ // 数据源
|
1640
|
1804
|
getDialysisRecord() {
|
1641
|
1805
|
this.loading = true;
|
1642
|
1806
|
|
|
@@ -2194,9 +2358,7 @@ export default {
|
2194
|
2358
|
}
|
2195
|
2359
|
|
2196
|
2360
|
if(this.org_id == 0 || this.org_id ==10460){
|
2197
|
|
- console.log("日期搜哦",this.schedule_date_one)
|
2198
|
2361
|
var strBirthdayArr = this.schedule_date_one.split("-")
|
2199
|
|
- console.log("strBirthdayArr",strBirthdayArr)
|
2200
|
2362
|
var yeaer = strBirthdayArr[0]
|
2201
|
2363
|
var month = strBirthdayArr[1]
|
2202
|
2364
|
var day = strBirthdayArr[2]
|
|
@@ -2242,7 +2404,16 @@ export default {
|
2242
|
2404
|
return "0.0";
|
2243
|
2405
|
}
|
2244
|
2406
|
},
|
2245
|
|
-
|
|
2407
|
+ getcheckData(val){
|
|
2408
|
+ if(val.length >0){
|
|
2409
|
+ const a = val.join(',')
|
|
2410
|
+ console.log('a',a);
|
|
2411
|
+ this.$message.error(a +" 未填");
|
|
2412
|
+ return a
|
|
2413
|
+ }else{
|
|
2414
|
+ this.$message.success('核对完成')
|
|
2415
|
+ }
|
|
2416
|
+ }
|
2246
|
2417
|
},
|
2247
|
2418
|
watch: {
|
2248
|
2419
|
"patientInfo.gender": function () {
|