|
@@ -5,7 +5,7 @@
|
5
|
5
|
<div class="DialogTit">
|
6
|
6
|
<span @click="close()" class="iconfont"></span>
|
7
|
7
|
<h1 class="name">透析处方</h1>
|
8
|
|
- <botton>{{patient.name}} [透析号 {{patient.dialysis_no}} ]</botton>
|
|
8
|
+ <botton @click="showmsgtip">{{patient.name}} [透析号 {{patient.dialysis_no}} ]</botton>
|
9
|
9
|
<span @click="commitInfo" class="success" v-if="isPermission()">完成</span>
|
10
|
10
|
<span @click="commitInfo" class="success" v-if="!isPermission()"></span>
|
11
|
11
|
|
|
@@ -310,7 +310,13 @@
|
310
|
310
|
<long-advice-sub-menu :visibility="advice_visibility" v-on:menu-cancle-three="menuCancleThree"
|
311
|
311
|
v-on:menu-comfirm-three="menuComfirmThree" :propsForm="advicePropForm"></long-advice-sub-menu>
|
312
|
312
|
|
313
|
|
- <computer-dialog ref="computer_dialog"></computer-dialog>
|
|
313
|
+ <msg-tip style="width:500px;" :visibility="msgtip_visibility" :predialysis="predialysis"
|
|
314
|
+ :last_predialysis="last_predialysis"
|
|
315
|
+ :record="record"
|
|
316
|
+ :last_record="last_record"
|
|
317
|
+ :patient_prop="patient"
|
|
318
|
+ :prescription_prop="prescription_prop"
|
|
319
|
+ v-on:menu-msg-tip="menuMsgTip"></msg-tip>
|
314
|
320
|
|
315
|
321
|
</div>
|
316
|
322
|
</template>
|
|
@@ -325,8 +331,7 @@ import {getDataConfig} from '@/utils/data'
|
325
|
331
|
|
326
|
332
|
import {parseTime} from '@/utils'
|
327
|
333
|
import LongAdviceSubMenu from './subMenu/LongAdviceSubMenu'
|
328
|
|
-
|
329
|
|
-import OrdersDialog from './OrdersDialog'
|
|
334
|
+import MsgTip from './subMenu/MsgTip'
|
330
|
335
|
|
331
|
336
|
export default {
|
332
|
337
|
name: 'PrescriptionDialog',
|
|
@@ -337,6 +342,18 @@ export default {
|
337
|
342
|
return new Array()
|
338
|
343
|
}
|
339
|
344
|
},
|
|
345
|
+ predialysis:{
|
|
346
|
+ type:Object
|
|
347
|
+ },
|
|
348
|
+ last_predialysis: {
|
|
349
|
+ type:Object
|
|
350
|
+ },
|
|
351
|
+ record:{
|
|
352
|
+ type:Object
|
|
353
|
+ },
|
|
354
|
+ last_record: {
|
|
355
|
+ type:Object
|
|
356
|
+ },
|
340
|
357
|
patient_prop: {
|
341
|
358
|
type: Object
|
342
|
359
|
},
|
|
@@ -388,6 +405,14 @@ waitUploadAdvices: {
|
388
|
405
|
return new Array()
|
389
|
406
|
}
|
390
|
407
|
}
|
|
408
|
+ },
|
|
409
|
+ components: {
|
|
410
|
+ LongAdviceSubMenu,
|
|
411
|
+ MsgTip,
|
|
412
|
+ MultipleSubMenu,
|
|
413
|
+
|
|
414
|
+ // MultipleSubMenu,
|
|
415
|
+ CheckBoxSubMenu
|
391
|
416
|
},
|
392
|
417
|
data () {
|
393
|
418
|
return {
|
|
@@ -396,6 +421,7 @@ waitUploadAdvices: {
|
396
|
421
|
signUrl: '',
|
397
|
422
|
isShowDesc: true,
|
398
|
423
|
advice_visibility: false,
|
|
424
|
+ msgtip_visibility: false,
|
399
|
425
|
time: '03:00',
|
400
|
426
|
timeValue: '',
|
401
|
427
|
isShowSign: false,
|
|
@@ -510,7 +536,13 @@ waitUploadAdvices: {
|
510
|
536
|
}
|
511
|
537
|
},
|
512
|
538
|
|
|
539
|
+
|
513
|
540
|
methods: {
|
|
541
|
+ showmsgtip(){
|
|
542
|
+ this.msgtip_visibility = true
|
|
543
|
+ this.isShowDialog = false
|
|
544
|
+
|
|
545
|
+ },
|
514
|
546
|
isPermission () {
|
515
|
547
|
if (this.$store.getters.user.user.user_type == 3 && (this.$store.getters.user.template_info.template_id == 2 || this.$store.getters.user.template_info.template_id == 6)) {
|
516
|
548
|
return false
|
|
@@ -712,6 +744,11 @@ waitUploadAdvices: {
|
712
|
744
|
this.advice_visibility = false
|
713
|
745
|
this.isShowDialog = true
|
714
|
746
|
},
|
|
747
|
+ menuMsgTip: function () {
|
|
748
|
+ this.msgtip_visibility = false
|
|
749
|
+ this.isShowDialog = true
|
|
750
|
+ },
|
|
751
|
+
|
715
|
752
|
menuComfirmThree: function (targetAdvices) {
|
716
|
753
|
let params = {
|
717
|
754
|
advices: targetAdvices,
|
|
@@ -1417,18 +1454,11 @@ menuComfirmTwo: function (dialysisPrescription) {
|
1417
|
1454
|
this.dialysisPrescription.ultrafiltration = this.getFloat(this.dialysisPrescription.ultrafiltration)
|
1418
|
1455
|
this.dialysisPrescription.target_ultrafiltration = this.getFloat(this.dialysisPrescription.target_ultrafiltration)
|
1419
|
1456
|
},
|
1420
|
|
-
|
1421
|
|
- components: {
|
1422
|
|
- LongAdviceSubMenu,
|
1423
|
|
- MultipleSubMenu,
|
1424
|
|
- OrdersDialog,
|
1425
|
|
- // MultipleSubMenu,
|
1426
|
|
- CheckBoxSubMenu
|
1427
|
|
- },
|
1428
|
1457
|
watch: {
|
1429
|
1458
|
isShowDialog (val) {
|
1430
|
1459
|
if (val) {
|
1431
|
1460
|
this.advice_visibility = false
|
|
1461
|
+
|
1432
|
1462
|
}
|
1433
|
1463
|
}
|
1434
|
1464
|
}
|