|
@@ -52,19 +52,27 @@
|
52
|
52
|
</div>
|
53
|
53
|
|
54
|
54
|
|
55
|
|
- <div class="item" v-if="isShow('拔针后穿刺点渗血')">
|
|
55
|
+ <div class="item" v-if="isShow('拔针后穿刺点渗血')" @click="showSubMenu('puncture_point_oozing_blood')">
|
56
|
56
|
<h2 class="name">拔针后穿刺点渗血</h2>
|
57
|
57
|
<div class="content">
|
58
|
|
- <span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;"><van-switch
|
59
|
|
- v-model="puncture_point_oozing_blood_state" @change="puncturePointOozingBlood"/></div></span>
|
|
58
|
+ <!--<span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;">-->
|
|
59
|
+ <!--<van-switch v-model="puncture_point_oozing_blood_state" @change="puncturePointOozingBlood"/></div></span>-->
|
|
60
|
+ <div class="content">
|
|
61
|
+ <span v-if="formValue.puncture_point_oozing_blood == 0" class="text" style="width: 50px"></span>
|
|
62
|
+ <span v-if="formValue.puncture_point_oozing_blood == 1" class="text" style="width: 50px">有</span>
|
|
63
|
+ <span v-if="formValue.puncture_point_oozing_blood == 2" class="text" style="width: 50px">无</span>
|
|
64
|
+ <span class="iconfont"></span>
|
|
65
|
+ </div>
|
60
|
66
|
</div>
|
61
|
67
|
</div>
|
62
|
68
|
|
63
|
|
- <div class="item" v-if="isShow('穿刺处血肿')">
|
|
69
|
+ <div class="item" v-if="isShow('穿刺处血肿')" @click="showSubMenu('puncture_point_haematoma')">
|
64
|
70
|
<h2 class="name">穿刺处血肿</h2>
|
65
|
71
|
<div class="content">
|
66
|
|
- <span class="text" style="width: 50px;"><div style="padding-top: 0.08rem; height: 0.8rem;"><van-switch
|
67
|
|
- v-model="puncture_point_haematoma_state" @change="puncturePointHaematoma"/></div></span>
|
|
72
|
+ <span v-if="formValue.puncture_point_haematoma == 0" class="text" style="width: 50px"></span>
|
|
73
|
+ <span v-if="formValue.puncture_point_haematoma == 1" class="text" style="width: 50px">有</span>
|
|
74
|
+ <span v-if="formValue.puncture_point_haematoma == 2" class="text" style="width: 50px">无</span>
|
|
75
|
+ <span class="iconfont"></span>
|
68
|
76
|
</div>
|
69
|
77
|
</div>
|
70
|
78
|
|
|
@@ -381,6 +389,15 @@
|
381
|
389
|
puncture_point_haematoma_state: false,
|
382
|
390
|
isShowDialog: true,
|
383
|
391
|
time: '00:00',
|
|
392
|
+ puncture_point_oozing_bloods:[
|
|
393
|
+ {id:1, name:"有"},
|
|
394
|
+ {id:2, name:"无"},
|
|
395
|
+
|
|
396
|
+ ],
|
|
397
|
+ puncture_point_haematomas:[
|
|
398
|
+ {id:1, name:"有"},
|
|
399
|
+ {id:2, name:"无"},
|
|
400
|
+ ],
|
384
|
401
|
//sub menu prop
|
385
|
402
|
visibility: false,
|
386
|
403
|
propForm: {
|
|
@@ -834,6 +851,33 @@
|
834
|
851
|
this.propForm.selectId = this.formValue.dialyzer
|
835
|
852
|
this.propForm.click_ref = "dialyzer"
|
836
|
853
|
break
|
|
854
|
+ case 'puncture_point_oozing_blood':
|
|
855
|
+ this.propForm.type = 20
|
|
856
|
+ this.isShowDialog = false
|
|
857
|
+ this.propForm.title = '拔针后穿刺点渗血'
|
|
858
|
+ this.visibility = true
|
|
859
|
+ this.propForm.isHasOther = 2
|
|
860
|
+
|
|
861
|
+ this.propForm.list = []
|
|
862
|
+ this.propForm.optionList = this.puncture_point_oozing_bloods
|
|
863
|
+ this.propForm.isMultiple = 1
|
|
864
|
+ this.propForm.selectId = this.formValue.puncture_point_oozing_blood
|
|
865
|
+ this.propForm.click_ref = "puncture_point_oozing_blood"
|
|
866
|
+ break
|
|
867
|
+ case 'puncture_point_haematoma':
|
|
868
|
+ this.propForm.type = 21
|
|
869
|
+ this.isShowDialog = false
|
|
870
|
+ this.propForm.title = '穿刺处血肿'
|
|
871
|
+ this.visibility = true
|
|
872
|
+ this.propForm.isHasOther = 2
|
|
873
|
+
|
|
874
|
+ this.propForm.list = []
|
|
875
|
+ this.propForm.optionList = this.puncture_point_haematomas
|
|
876
|
+ this.propForm.isMultiple = 1
|
|
877
|
+ this.propForm.selectId = this.formValue.puncture_point_haematoma
|
|
878
|
+ this.propForm.click_ref = "puncture_point_haematoma"
|
|
879
|
+ break
|
|
880
|
+
|
837
|
881
|
}
|
838
|
882
|
|
839
|
883
|
}, menuCancle: function () {
|
|
@@ -913,6 +957,25 @@
|
913
|
957
|
case 19:
|
914
|
958
|
this.formValue.dialyzer = val.selectId
|
915
|
959
|
|
|
960
|
+ break;
|
|
961
|
+ case 20:
|
|
962
|
+ if(val.selectId ==1) {
|
|
963
|
+ this.formValue.puncture_point_oozing_blood = val.selectId
|
|
964
|
+ this.puncture_point_oozing_blood_state = true
|
|
965
|
+ }else if(val.selectId == 2){
|
|
966
|
+ this.formValue.puncture_point_oozing_blood = val.selectId
|
|
967
|
+ this.puncture_point_oozing_blood_state = false
|
|
968
|
+ }
|
|
969
|
+
|
|
970
|
+ break;
|
|
971
|
+ case 21:
|
|
972
|
+ if(val.selectId ==1) {
|
|
973
|
+ this.formValue.puncture_point_haematoma = val.selectId
|
|
974
|
+ this.puncture_point_haematoma_state = true
|
|
975
|
+ }else if(val.selectId == 2){
|
|
976
|
+ this.formValue.puncture_point_haematoma = val.selectId
|
|
977
|
+ this.puncture_point_haematoma_state = false
|
|
978
|
+ }
|
916
|
979
|
break;
|
917
|
980
|
}
|
918
|
981
|
|
|
@@ -1184,8 +1247,8 @@
|
1184
|
1247
|
}
|
1185
|
1248
|
this.record_date = y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
|
1186
|
1249
|
|
1187
|
|
- this.puncture_point_oozing_blood_state = this.formValue.puncture_point_oozing_blood == 1
|
1188
|
|
- this.puncture_point_haematoma_state = this.formValue.puncture_point_haematoma == 1
|
|
1250
|
+ this.puncture_point_oozing_blood_state = this.formValue.puncture_point_oozing_blood == 0
|
|
1251
|
+ this.puncture_point_haematoma_state = this.formValue.puncture_point_haematoma == 0
|
1189
|
1252
|
},
|
1190
|
1253
|
};
|
1191
|
1254
|
</script>
|