|
@@ -718,22 +718,22 @@
|
718
|
718
|
}
|
719
|
719
|
})
|
720
|
720
|
Toast.loading({forbidClick: true, duration: 0})
|
721
|
|
- let ParamsQuery = this.dialysisPrescription;
|
722
|
|
- ParamsQuery["patient"] = this.$route.query.patient_id;
|
723
|
|
- ParamsQuery["record_date"] = this.record_date;
|
|
721
|
+ let ParamsQuery = this.dialysisPrescription
|
|
722
|
+ ParamsQuery['patient'] = this.$route.query.patient_id
|
|
723
|
+ ParamsQuery['record_date'] = this.record_date
|
724
|
724
|
commitDialysisPrescription(ParamsQuery).then(response => {
|
725
|
725
|
if (response.data.state == 0) {
|
726
|
|
- Toast.fail(response.data.msg);
|
727
|
|
- return false;
|
|
726
|
+ Toast.fail(response.data.msg)
|
|
727
|
+ return false
|
728
|
728
|
} else {
|
729
|
|
- Toast.success("提交成功");
|
730
|
|
- this.$emit("prescription", response.data.data.prescription);
|
|
729
|
+ Toast.success('提交成功')
|
|
730
|
+ this.$emit('prescription', response.data.data.prescription)
|
731
|
731
|
// for (const key in response.data.data.prescription) {
|
732
|
732
|
// // this.prescription_prop[key] = response.data.data.prescription[key];
|
733
|
733
|
// }
|
734
|
|
- this.finish();
|
|
734
|
+ this.finish()
|
735
|
735
|
}
|
736
|
|
- });
|
|
736
|
+ })
|
737
|
737
|
},
|
738
|
738
|
menuComfirm: function (val) {
|
739
|
739
|
this.visibility = false
|
|
@@ -851,7 +851,7 @@
|
851
|
851
|
return anticoagulan_name
|
852
|
852
|
},
|
853
|
853
|
commitInfo: function () {
|
854
|
|
- if(this.targetAdvices.length > 0) {
|
|
854
|
+ if (this.targetAdvices.length > 0) {
|
855
|
855
|
|
856
|
856
|
if (this.prescription_prop.id == '') {
|
857
|
857
|
if (this.status == 2) {
|
|
@@ -862,12 +862,13 @@
|
862
|
862
|
this.isShowDialog = false
|
863
|
863
|
|
864
|
864
|
for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
865
|
|
- if (this.advicePropForm.list[i].parent_id == 0) {
|
|
865
|
+ if (this.advicePropForm.list[i].parent_id == 0 && this.advicePropForm.list[i].isCheck == 1) {
|
866
|
866
|
this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
867
|
867
|
}
|
868
|
868
|
}
|
869
|
869
|
|
870
|
870
|
} else if (this.status == 3) {
|
|
871
|
+ this.advice_visibility = false
|
871
|
872
|
let params = {
|
872
|
873
|
advices: this.targetAdvices,
|
873
|
874
|
advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
|
@@ -880,7 +881,6 @@
|
880
|
881
|
CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
881
|
882
|
var resp = rs.data
|
882
|
883
|
if (resp.state == 1) {
|
883
|
|
- this.$emit('advice')
|
884
|
884
|
|
885
|
885
|
} else {
|
886
|
886
|
|
|
@@ -888,67 +888,80 @@
|
888
|
888
|
})
|
889
|
889
|
|
890
|
890
|
Toast.loading({forbidClick: true, duration: 0})
|
891
|
|
- let ParamsQuery = this.dialysisPrescription;
|
892
|
|
- ParamsQuery["patient"] = this.$route.query.patient_id;
|
893
|
|
- ParamsQuery["record_date"] = this.record_date;
|
|
891
|
+ let ParamsQuery = this.dialysisPrescription
|
|
892
|
+ ParamsQuery['patient'] = this.$route.query.patient_id
|
|
893
|
+ ParamsQuery['record_date'] = this.record_date
|
894
|
894
|
commitDialysisPrescription(ParamsQuery).then(response => {
|
895
|
895
|
if (response.data.state == 0) {
|
896
|
|
- Toast.fail(response.data.msg);
|
897
|
|
- return false;
|
|
896
|
+ Toast.fail(response.data.msg)
|
|
897
|
+ return false
|
898
|
898
|
} else {
|
899
|
|
- Toast.success("提交成功");
|
900
|
|
- this.$emit("prescription", response.data.data.prescription);
|
|
899
|
+ Toast.success('提交成功')
|
|
900
|
+ this.$emit('prescription', response.data.data.prescription)
|
|
901
|
+ this.$emit('advice')
|
901
|
902
|
// for (const key in response.data.data.prescription) {
|
902
|
903
|
// // this.prescription_prop[key] = response.data.data.prescription[key];
|
903
|
904
|
// }
|
904
|
|
- this.finish();
|
|
905
|
+ this.finish()
|
905
|
906
|
|
906
|
907
|
}
|
907
|
|
- });
|
|
908
|
+ })
|
908
|
909
|
}
|
909
|
910
|
|
910
|
911
|
} else {
|
|
912
|
+ if (this.dialysisPrescription.creater == 0) {
|
|
913
|
+ if (this.status == 2) {
|
|
914
|
+ //弹框推送提醒
|
|
915
|
+ this.advicePropForm.list = this.targetAdvices
|
|
916
|
+ this.advicePropForm.operators = this.admin_users_prop
|
|
917
|
+ this.advice_visibility = true
|
|
918
|
+ this.isShowDialog = false
|
|
919
|
+ for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
|
920
|
+ if (this.advicePropForm.list[i].parent_id == 0 && this.advicePropForm.list[i].isCheck == 1) {
|
|
921
|
+ this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
|
922
|
+ }
|
|
923
|
+ }
|
|
924
|
+ } else if (this.status == 3) {
|
|
925
|
+ this.advice_visibility = false
|
|
926
|
+ let params = {
|
|
927
|
+ advices: this.targetAdvices,
|
|
928
|
+ advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
|
929
|
+ advice_doctor: this.targetAdvices[0].advice_doctor,
|
|
930
|
+ advice_type: this.targetAdvices[0].advice_type,
|
|
931
|
+ parent_id: this.patient_id,
|
|
932
|
+ start_time: parseTime(this.$route.query.date, '{y}-{m}-{d}') + ' ' + parseTime(this.targetAdvices[0].start_time, '{y}-{m}-{d}A{h}:{i}').split('A')[1],
|
|
933
|
+ remark: '',
|
|
934
|
+ }
|
|
935
|
+ CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
|
936
|
+ var resp = rs.data
|
|
937
|
+ if (resp.state == 1) {
|
|
938
|
+ } else {
|
|
939
|
+ }
|
|
940
|
+ })
|
|
941
|
+ }
|
|
942
|
+ }
|
|
943
|
+
|
911
|
944
|
Toast.loading({forbidClick: true, duration: 0})
|
912
|
|
- let ParamsQuery = this.dialysisPrescription;
|
913
|
|
- ParamsQuery["patient"] = this.$route.query.patient_id;
|
914
|
|
- ParamsQuery["record_date"] = this.record_date;
|
|
945
|
+ let ParamsQuery = this.dialysisPrescription
|
|
946
|
+ ParamsQuery['patient'] = this.$route.query.patient_id
|
|
947
|
+ ParamsQuery['record_date'] = this.record_date
|
915
|
948
|
commitDialysisPrescription(ParamsQuery).then(response => {
|
916
|
949
|
if (response.data.state == 0) {
|
917
|
|
- Toast.fail(response.data.msg);
|
918
|
|
- return false;
|
|
950
|
+ Toast.fail(response.data.msg)
|
|
951
|
+ return false
|
919
|
952
|
} else {
|
920
|
|
- Toast.success("提交成功");
|
921
|
|
- this.$emit("prescription", response.data.data.prescription);
|
922
|
|
- this.finish();
|
|
953
|
+ Toast.success('提交成功')
|
|
954
|
+
|
|
955
|
+ this.$emit('prescription', response.data.data.prescription)
|
|
956
|
+ this.finish()
|
923
|
957
|
|
924
|
958
|
}
|
925
|
|
- });
|
|
959
|
+ })
|
926
|
960
|
}
|
927
|
|
- }else{
|
928
|
|
- Toast.loading({forbidClick: true, duration: 0})
|
929
|
|
- let ParamsQuery = this.dialysisPrescription;
|
930
|
|
- ParamsQuery["patient"] = this.$route.query.patient_id;
|
931
|
|
- ParamsQuery["record_date"] = this.record_date;
|
932
|
|
- commitDialysisPrescription(ParamsQuery).then(response => {
|
933
|
|
- if (response.data.state == 0) {
|
934
|
|
- Toast.fail(response.data.msg);
|
935
|
|
- return false;
|
936
|
|
- } else {
|
937
|
|
- Toast.success("提交成功");
|
938
|
|
- this.$emit("prescription", response.data.data.prescription);
|
939
|
|
- this.finish();
|
940
|
|
-
|
941
|
|
- }
|
942
|
|
- });
|
943
|
|
-
|
944
|
|
-
|
945
|
961
|
}
|
946
|
|
-
|
947
|
|
-
|
948
|
|
-
|
949
|
962
|
}, commitSolutionInfo: function () {
|
950
|
963
|
|
951
|
|
- if(this.targetAdvices.length > 0) {
|
|
964
|
+ if (this.targetAdvices.length > 0) {
|
952
|
965
|
|
953
|
966
|
if (this.prescription_prop.id == '') {
|
954
|
967
|
if (this.status == 2) {
|
|
@@ -977,7 +990,7 @@
|
977
|
990
|
CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
978
|
991
|
var resp = rs.data
|
979
|
992
|
if (resp.state == 1) {
|
980
|
|
- this.$emit('advice')
|
|
993
|
+
|
981
|
994
|
} else {
|
982
|
995
|
|
983
|
996
|
}
|
|
@@ -1001,7 +1014,7 @@
|
1001
|
1014
|
// }
|
1002
|
1015
|
// console.log(response.data.data.prescription)
|
1003
|
1016
|
|
1004
|
|
-
|
|
1017
|
+ this.$emit('advice')
|
1005
|
1018
|
this.$emit('longSolution', response.data.data.solution)
|
1006
|
1019
|
this.$emit('prescription', response.data.data.prescription)
|
1007
|
1020
|
this.finish()
|
|
@@ -1029,8 +1042,6 @@
|
1029
|
1042
|
// }
|
1030
|
1043
|
// console.log(response.data.data.prescription)
|
1031
|
1044
|
|
1032
|
|
-
|
1033
|
|
-
|
1034
|
1045
|
this.$emit('longSolution', response.data.data.solution)
|
1035
|
1046
|
this.$emit('prescription', response.data.data.prescription)
|
1036
|
1047
|
this.finish()
|
|
@@ -1070,8 +1081,6 @@
|
1070
|
1081
|
|
1071
|
1082
|
}
|
1072
|
1083
|
|
1073
|
|
-
|
1074
|
|
-
|
1075
|
1084
|
}, finish: function () {
|
1076
|
1085
|
this.$emit('finish')
|
1077
|
1086
|
}, close: function () {
|
|
@@ -1313,6 +1322,12 @@
|
1313
|
1322
|
MultipleSubMenu,
|
1314
|
1323
|
// MultipleSubMenu,
|
1315
|
1324
|
CheckBoxSubMenu
|
|
1325
|
+ }, watch: {
|
|
1326
|
+ isShowDialog (val) {
|
|
1327
|
+ if (val) {
|
|
1328
|
+ this.advice_visibility = false
|
|
1329
|
+ }
|
|
1330
|
+ }
|
1316
|
1331
|
}
|
1317
|
1332
|
}
|
1318
|
1333
|
</script>
|