|
@@ -851,235 +851,263 @@
|
851
|
851
|
return anticoagulan_name
|
852
|
852
|
},
|
853
|
853
|
commitInfo: function () {
|
854
|
|
- if (this.targetAdvices.length > 0) {
|
855
|
|
-
|
856
|
|
- if (this.prescription_prop.id == '') {
|
857
|
|
- if (this.status == 2) {
|
858
|
|
- //弹框推送提醒
|
859
|
|
- this.advicePropForm.list = this.targetAdvices
|
860
|
|
- this.advicePropForm.operators = this.admin_users_prop
|
861
|
|
- this.advice_visibility = true
|
862
|
|
- this.isShowDialog = false
|
863
|
|
-
|
864
|
|
- for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
865
|
|
- if (this.advicePropForm.list[i].parent_id == 0 && this.advicePropForm.list[i].isCheck == 1) {
|
866
|
|
- this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
867
|
|
- }
|
868
|
|
- }
|
869
|
|
-
|
870
|
|
- } else if (this.status == 3) {
|
871
|
|
- this.advice_visibility = false
|
872
|
|
- let params = {
|
873
|
|
- advices: this.targetAdvices,
|
874
|
|
- advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
875
|
|
- advice_doctor: this.targetAdvices[0].advice_doctor,
|
876
|
|
- advice_type: this.targetAdvices[0].advice_type,
|
877
|
|
- parent_id: this.patient_id,
|
878
|
|
- 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],
|
879
|
|
- remark: '',
|
880
|
|
- }
|
881
|
|
- CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
882
|
|
- var resp = rs.data
|
883
|
|
- if (resp.state == 1) {
|
884
|
|
-
|
885
|
|
- } else {
|
886
|
|
-
|
887
|
|
- }
|
888
|
|
- })
|
889
|
|
-
|
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
|
894
|
|
- commitDialysisPrescription(ParamsQuery).then(response => {
|
895
|
|
- if (response.data.state == 0) {
|
896
|
|
- Toast.fail(response.data.msg)
|
897
|
|
- return false
|
898
|
|
- } else {
|
899
|
|
- Toast.success('提交成功')
|
900
|
|
- this.$emit('prescription', response.data.data.prescription)
|
901
|
|
- this.$emit('advice')
|
902
|
|
- // for (const key in response.data.data.prescription) {
|
903
|
|
- // // this.prescription_prop[key] = response.data.data.prescription[key];
|
904
|
|
- // }
|
905
|
|
- this.finish()
|
906
|
|
-
|
907
|
|
- }
|
908
|
|
- })
|
909
|
|
- }
|
910
|
854
|
|
|
855
|
+ Toast.loading({forbidClick: true, duration: 0})
|
|
856
|
+ let ParamsQuery = this.dialysisPrescription
|
|
857
|
+ ParamsQuery['patient'] = this.$route.query.patient_id
|
|
858
|
+ ParamsQuery['record_date'] = this.record_date
|
|
859
|
+ commitDialysisPrescription(ParamsQuery).then(response => {
|
|
860
|
+ if (response.data.state == 0) {
|
|
861
|
+ Toast.fail(response.data.msg)
|
|
862
|
+ return false
|
911
|
863
|
} 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
|
|
-
|
944
|
|
- Toast.loading({forbidClick: true, duration: 0})
|
945
|
|
- let ParamsQuery = this.dialysisPrescription
|
946
|
|
- ParamsQuery['patient'] = this.$route.query.patient_id
|
947
|
|
- ParamsQuery['record_date'] = this.record_date
|
948
|
|
- commitDialysisPrescription(ParamsQuery).then(response => {
|
949
|
|
- if (response.data.state == 0) {
|
950
|
|
- Toast.fail(response.data.msg)
|
951
|
|
- return false
|
952
|
|
- } else {
|
953
|
|
- Toast.success('提交成功')
|
954
|
|
-
|
955
|
|
- this.$emit('prescription', response.data.data.prescription)
|
956
|
|
- this.finish()
|
|
864
|
+ Toast.success('提交成功')
|
|
865
|
+ this.$emit('prescription', response.data.data.prescription)
|
|
866
|
+ this.$emit('advice')
|
|
867
|
+ // for (const key in response.data.data.prescription) {
|
|
868
|
+ // // this.prescription_prop[key] = response.data.data.prescription[key];
|
|
869
|
+ // }
|
|
870
|
+ this.finish()
|
957
|
871
|
|
958
|
|
- }
|
959
|
|
- })
|
960
|
872
|
}
|
961
|
|
- }
|
|
873
|
+ })
|
|
874
|
+ // if (this.targetAdvices.length > 0) {
|
|
875
|
+ //
|
|
876
|
+ // if (this.prescription_prop.id == '') {
|
|
877
|
+ // if (this.status == 2) {
|
|
878
|
+ // //弹框推送提醒
|
|
879
|
+ // this.advicePropForm.list = this.targetAdvices
|
|
880
|
+ // this.advicePropForm.operators = this.admin_users_prop
|
|
881
|
+ // this.advice_visibility = true
|
|
882
|
+ // this.isShowDialog = false
|
|
883
|
+ //
|
|
884
|
+ // for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
|
885
|
+ // if (this.advicePropForm.list[i].parent_id == 0 && this.advicePropForm.list[i].isCheck == 1) {
|
|
886
|
+ // this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
|
887
|
+ // }
|
|
888
|
+ // }
|
|
889
|
+ //
|
|
890
|
+ // } else if (this.status == 3) {
|
|
891
|
+ // this.advice_visibility = false
|
|
892
|
+ // let params = {
|
|
893
|
+ // advices: this.targetAdvices,
|
|
894
|
+ // advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
|
895
|
+ // advice_doctor: this.targetAdvices[0].advice_doctor,
|
|
896
|
+ // advice_type: this.targetAdvices[0].advice_type,
|
|
897
|
+ // parent_id: this.patient_id,
|
|
898
|
+ // 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],
|
|
899
|
+ // remark: '',
|
|
900
|
+ // }
|
|
901
|
+ // CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
|
902
|
+ // var resp = rs.data
|
|
903
|
+ // if (resp.state == 1) {
|
|
904
|
+ //
|
|
905
|
+ // } else {
|
|
906
|
+ //
|
|
907
|
+ // }
|
|
908
|
+ // })
|
|
909
|
+ //
|
|
910
|
+ //
|
|
911
|
+ // }
|
|
912
|
+ //
|
|
913
|
+ // } else {
|
|
914
|
+ // if (this.dialysisPrescription.creater == 0) {
|
|
915
|
+ // if (this.status == 2) {
|
|
916
|
+ // //弹框推送提醒
|
|
917
|
+ // this.advicePropForm.list = this.targetAdvices
|
|
918
|
+ // this.advicePropForm.operators = this.admin_users_prop
|
|
919
|
+ // this.advice_visibility = true
|
|
920
|
+ // this.isShowDialog = false
|
|
921
|
+ // for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
|
922
|
+ // if (this.advicePropForm.list[i].parent_id == 0 && this.advicePropForm.list[i].isCheck == 1) {
|
|
923
|
+ // this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
|
924
|
+ // }
|
|
925
|
+ // }
|
|
926
|
+ // } else if (this.status == 3) {
|
|
927
|
+ // this.advice_visibility = false
|
|
928
|
+ // let params = {
|
|
929
|
+ // advices: this.targetAdvices,
|
|
930
|
+ // advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
|
931
|
+ // advice_doctor: this.targetAdvices[0].advice_doctor,
|
|
932
|
+ // advice_type: this.targetAdvices[0].advice_type,
|
|
933
|
+ // parent_id: this.patient_id,
|
|
934
|
+ // 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],
|
|
935
|
+ // remark: '',
|
|
936
|
+ // }
|
|
937
|
+ // CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
|
938
|
+ // var resp = rs.data
|
|
939
|
+ // if (resp.state == 1) {
|
|
940
|
+ // } else {
|
|
941
|
+ // }
|
|
942
|
+ // })
|
|
943
|
+ // }
|
|
944
|
+ // }
|
|
945
|
+ //
|
|
946
|
+ // Toast.loading({forbidClick: true, duration: 0})
|
|
947
|
+ // let ParamsQuery = this.dialysisPrescription
|
|
948
|
+ // ParamsQuery['patient'] = this.$route.query.patient_id
|
|
949
|
+ // ParamsQuery['record_date'] = this.record_date
|
|
950
|
+ // commitDialysisPrescription(ParamsQuery).then(response => {
|
|
951
|
+ // if (response.data.state == 0) {
|
|
952
|
+ // Toast.fail(response.data.msg)
|
|
953
|
+ // return false
|
|
954
|
+ // } else {
|
|
955
|
+ // Toast.success('提交成功')
|
|
956
|
+ //
|
|
957
|
+ // this.$emit('prescription', response.data.data.prescription)
|
|
958
|
+ // this.finish()
|
|
959
|
+ //
|
|
960
|
+ // }
|
|
961
|
+ // })
|
|
962
|
+ // }
|
|
963
|
+ // }
|
962
|
964
|
}, commitSolutionInfo: function () {
|
963
|
965
|
|
964
|
|
- if (this.targetAdvices.length > 0) {
|
965
|
|
-
|
966
|
|
- if (this.prescription_prop.id == '') {
|
967
|
|
- if (this.status == 2) {
|
968
|
|
- //弹框推送提醒
|
969
|
|
- this.advicePropForm.list = this.targetAdvices
|
970
|
|
- this.advicePropForm.operators = this.admin_users_prop
|
971
|
|
- this.advice_visibility = true
|
972
|
|
- this.isShowDialog = false
|
973
|
|
-
|
974
|
|
- for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
975
|
|
- if (this.advicePropForm.list[i].parent_id == 0) {
|
976
|
|
- this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
977
|
|
- }
|
978
|
|
- }
|
979
|
|
-
|
980
|
|
- } else if (this.status == 3) {
|
981
|
|
- let params = {
|
982
|
|
- advices: this.targetAdvices,
|
983
|
|
- advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
984
|
|
- advice_doctor: this.targetAdvices[0].advice_doctor,
|
985
|
|
- advice_type: this.targetAdvices[0].advice_type,
|
986
|
|
- parent_id: this.patient_id,
|
987
|
|
- 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],
|
988
|
|
- remark: '',
|
989
|
|
- }
|
990
|
|
- CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
991
|
|
- var resp = rs.data
|
992
|
|
- if (resp.state == 1) {
|
993
|
|
-
|
994
|
|
- } else {
|
995
|
|
-
|
996
|
|
- }
|
997
|
|
- })
|
998
|
|
-
|
999
|
|
- Toast.loading({forbidClick: true, duration: 0})
|
1000
|
|
- let ParamsQuery = this.dialysisPrescription
|
1001
|
|
- ParamsQuery['patient'] = this.$route.query.patient_id
|
1002
|
|
- ParamsQuery['record_date'] = this.record_date
|
1003
|
|
- postSolution(ParamsQuery).then(response => {
|
1004
|
|
- if (response.data.state == 0) {
|
1005
|
|
- Toast.fail(response.data.msg)
|
1006
|
|
- return false
|
1007
|
|
- } else {
|
1008
|
|
- Toast.success('提交成功')
|
1009
|
|
- // for (const key in response.data.data.solution) {
|
1010
|
|
- // this.solution_prop[key] = response.data.data.solution[key];
|
1011
|
|
- // }
|
1012
|
|
- // for (const key in response.data.data.prescription) {
|
1013
|
|
- // this.prescription_prop[key] = response.data.data.prescription[key];
|
1014
|
|
- // }
|
1015
|
|
- // console.log(response.data.data.prescription)
|
1016
|
|
-
|
1017
|
|
- this.$emit('advice')
|
1018
|
|
- this.$emit('longSolution', response.data.data.solution)
|
1019
|
|
- this.$emit('prescription', response.data.data.prescription)
|
1020
|
|
- this.finish()
|
1021
|
|
-
|
1022
|
|
- }
|
1023
|
|
- })
|
1024
|
|
-
|
1025
|
|
- } else {
|
1026
|
|
-
|
1027
|
|
- Toast.loading({forbidClick: true, duration: 0})
|
1028
|
|
- let ParamsQuery = this.dialysisPrescription
|
1029
|
|
- ParamsQuery['patient'] = this.$route.query.patient_id
|
1030
|
|
- ParamsQuery['record_date'] = this.record_date
|
1031
|
|
- postSolution(ParamsQuery).then(response => {
|
1032
|
|
- if (response.data.state == 0) {
|
1033
|
|
- Toast.fail(response.data.msg)
|
1034
|
|
- return false
|
1035
|
|
- } else {
|
1036
|
|
- Toast.success('提交成功')
|
1037
|
|
- // for (const key in response.data.data.solution) {
|
1038
|
|
- // this.solution_prop[key] = response.data.data.solution[key];
|
1039
|
|
- // }
|
1040
|
|
- // for (const key in response.data.data.prescription) {
|
1041
|
|
- // this.prescription_prop[key] = response.data.data.prescription[key];
|
1042
|
|
- // }
|
1043
|
|
- // console.log(response.data.data.prescription)
|
1044
|
|
-
|
1045
|
|
- this.$emit('longSolution', response.data.data.solution)
|
1046
|
|
- this.$emit('prescription', response.data.data.prescription)
|
1047
|
|
- this.finish()
|
1048
|
|
-
|
1049
|
|
- }
|
1050
|
|
- })
|
1051
|
|
- }
|
|
966
|
+ Toast.loading({forbidClick: true, duration: 0})
|
|
967
|
+ let ParamsQuery = this.dialysisPrescription
|
|
968
|
+ ParamsQuery['patient'] = this.$route.query.patient_id
|
|
969
|
+ ParamsQuery['record_date'] = this.record_date
|
|
970
|
+ postSolution(ParamsQuery).then(response => {
|
|
971
|
+ if (response.data.state == 0) {
|
|
972
|
+ Toast.fail(response.data.msg)
|
|
973
|
+ return false
|
1052
|
974
|
} else {
|
|
975
|
+ Toast.success('提交成功')
|
|
976
|
+ // for (const key in response.data.data.solution) {
|
|
977
|
+ // this.solution_prop[key] = response.data.data.solution[key];
|
|
978
|
+ // }
|
|
979
|
+ // for (const key in response.data.data.prescription) {
|
|
980
|
+ // this.prescription_prop[key] = response.data.data.prescription[key];
|
|
981
|
+ // }
|
|
982
|
+ // console.log(response.data.data.prescription)
|
1053
|
983
|
|
1054
|
|
- Toast.loading({forbidClick: true, duration: 0})
|
1055
|
|
- let ParamsQuery = this.dialysisPrescription
|
1056
|
|
- ParamsQuery['patient'] = this.$route.query.patient_id
|
1057
|
|
- ParamsQuery['record_date'] = this.record_date
|
1058
|
|
- postSolution(ParamsQuery).then(response => {
|
1059
|
|
- if (response.data.state == 0) {
|
1060
|
|
- Toast.fail(response.data.msg)
|
1061
|
|
- return false
|
1062
|
|
- } else {
|
1063
|
|
- Toast.success('提交成功')
|
1064
|
|
- // for (const key in response.data.data.solution) {
|
1065
|
|
- // this.solution_prop[key] = response.data.data.solution[key];
|
1066
|
|
- // }
|
1067
|
|
- // for (const key in response.data.data.prescription) {
|
1068
|
|
- // this.prescription_prop[key] = response.data.data.prescription[key];
|
1069
|
|
- // }
|
1070
|
|
- // console.log(response.data.data.prescription)
|
1071
|
|
- this.$emit('advice')
|
1072
|
|
-
|
1073
|
|
- this.$emit('longSolution', response.data.data.solution)
|
1074
|
|
- this.$emit('prescription', response.data.data.prescription)
|
1075
|
|
- this.finish()
|
1076
|
|
-
|
1077
|
|
- }
|
1078
|
|
- })
|
|
984
|
+ // this.$emit('advice')
|
|
985
|
+ this.$emit('longSolution', response.data.data.solution)
|
|
986
|
+ this.$emit('prescription', response.data.data.prescription)
|
|
987
|
+ this.finish()
|
1079
|
988
|
|
1080
|
989
|
}
|
|
990
|
+ })
|
1081
|
991
|
|
1082
|
|
- }
|
|
992
|
+ // if (this.targetAdvices.length > 0) {
|
|
993
|
+ //
|
|
994
|
+ // if (this.prescription_prop.id == '') {
|
|
995
|
+ // if (this.status == 2) {
|
|
996
|
+ // //弹框推送提醒
|
|
997
|
+ // this.advicePropForm.list = this.targetAdvices
|
|
998
|
+ // this.advicePropForm.operators = this.admin_users_prop
|
|
999
|
+ // this.advice_visibility = true
|
|
1000
|
+ // this.isShowDialog = false
|
|
1001
|
+ //
|
|
1002
|
+ // for (let i = 0; i < this.advicePropForm.list.length; i++) {
|
|
1003
|
+ // if (this.advicePropForm.list[i].parent_id == 0) {
|
|
1004
|
+ // this.advicePropForm.result.push(this.advicePropForm.list[i].id)
|
|
1005
|
+ // }
|
|
1006
|
+ // }
|
|
1007
|
+ //
|
|
1008
|
+ // } else if (this.status == 3) {
|
|
1009
|
+ // let params = {
|
|
1010
|
+ // advices: this.targetAdvices,
|
|
1011
|
+ // advice_date: parseTime(this.$route.query.date, '{y}-{m}-{d}'),
|
|
1012
|
+ // advice_doctor: this.targetAdvices[0].advice_doctor,
|
|
1013
|
+ // advice_type: this.targetAdvices[0].advice_type,
|
|
1014
|
+ // parent_id: this.patient_id,
|
|
1015
|
+ // 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],
|
|
1016
|
+ // remark: '',
|
|
1017
|
+ // }
|
|
1018
|
+ // CreateGroupAdvice(this.$route.query.patient_id, 0, params).then(rs => {
|
|
1019
|
+ // var resp = rs.data
|
|
1020
|
+ // if (resp.state == 1) {
|
|
1021
|
+ //
|
|
1022
|
+ // } else {
|
|
1023
|
+ //
|
|
1024
|
+ // }
|
|
1025
|
+ // })
|
|
1026
|
+ //
|
|
1027
|
+ // Toast.loading({forbidClick: true, duration: 0})
|
|
1028
|
+ // let ParamsQuery = this.dialysisPrescription
|
|
1029
|
+ // ParamsQuery['patient'] = this.$route.query.patient_id
|
|
1030
|
+ // ParamsQuery['record_date'] = this.record_date
|
|
1031
|
+ // postSolution(ParamsQuery).then(response => {
|
|
1032
|
+ // if (response.data.state == 0) {
|
|
1033
|
+ // Toast.fail(response.data.msg)
|
|
1034
|
+ // return false
|
|
1035
|
+ // } else {
|
|
1036
|
+ // Toast.success('提交成功')
|
|
1037
|
+ // // for (const key in response.data.data.solution) {
|
|
1038
|
+ // // this.solution_prop[key] = response.data.data.solution[key];
|
|
1039
|
+ // // }
|
|
1040
|
+ // // for (const key in response.data.data.prescription) {
|
|
1041
|
+ // // this.prescription_prop[key] = response.data.data.prescription[key];
|
|
1042
|
+ // // }
|
|
1043
|
+ // // console.log(response.data.data.prescription)
|
|
1044
|
+ //
|
|
1045
|
+ // this.$emit('advice')
|
|
1046
|
+ // this.$emit('longSolution', response.data.data.solution)
|
|
1047
|
+ // this.$emit('prescription', response.data.data.prescription)
|
|
1048
|
+ // this.finish()
|
|
1049
|
+ //
|
|
1050
|
+ // }
|
|
1051
|
+ // })
|
|
1052
|
+ //
|
|
1053
|
+ // } else {
|
|
1054
|
+ //
|
|
1055
|
+ // Toast.loading({forbidClick: true, duration: 0})
|
|
1056
|
+ // let ParamsQuery = this.dialysisPrescription
|
|
1057
|
+ // ParamsQuery['patient'] = this.$route.query.patient_id
|
|
1058
|
+ // ParamsQuery['record_date'] = this.record_date
|
|
1059
|
+ // postSolution(ParamsQuery).then(response => {
|
|
1060
|
+ // if (response.data.state == 0) {
|
|
1061
|
+ // Toast.fail(response.data.msg)
|
|
1062
|
+ // return false
|
|
1063
|
+ // } else {
|
|
1064
|
+ // Toast.success('提交成功')
|
|
1065
|
+ // // for (const key in response.data.data.solution) {
|
|
1066
|
+ // // this.solution_prop[key] = response.data.data.solution[key];
|
|
1067
|
+ // // }
|
|
1068
|
+ // // for (const key in response.data.data.prescription) {
|
|
1069
|
+ // // this.prescription_prop[key] = response.data.data.prescription[key];
|
|
1070
|
+ // // }
|
|
1071
|
+ // // console.log(response.data.data.prescription)
|
|
1072
|
+ //
|
|
1073
|
+ // this.$emit('longSolution', response.data.data.solution)
|
|
1074
|
+ // this.$emit('prescription', response.data.data.prescription)
|
|
1075
|
+ // this.finish()
|
|
1076
|
+ //
|
|
1077
|
+ // }
|
|
1078
|
+ // })
|
|
1079
|
+ // }
|
|
1080
|
+ // } else {
|
|
1081
|
+ //
|
|
1082
|
+ // Toast.loading({forbidClick: true, duration: 0})
|
|
1083
|
+ // let ParamsQuery = this.dialysisPrescription
|
|
1084
|
+ // ParamsQuery['patient'] = this.$route.query.patient_id
|
|
1085
|
+ // ParamsQuery['record_date'] = this.record_date
|
|
1086
|
+ // postSolution(ParamsQuery).then(response => {
|
|
1087
|
+ // if (response.data.state == 0) {
|
|
1088
|
+ // Toast.fail(response.data.msg)
|
|
1089
|
+ // return false
|
|
1090
|
+ // } else {
|
|
1091
|
+ // Toast.success('提交成功')
|
|
1092
|
+ // // for (const key in response.data.data.solution) {
|
|
1093
|
+ // // this.solution_prop[key] = response.data.data.solution[key];
|
|
1094
|
+ // // }
|
|
1095
|
+ // // for (const key in response.data.data.prescription) {
|
|
1096
|
+ // // this.prescription_prop[key] = response.data.data.prescription[key];
|
|
1097
|
+ // // }
|
|
1098
|
+ // // console.log(response.data.data.prescription)
|
|
1099
|
+ // this.$emit('advice')
|
|
1100
|
+ //
|
|
1101
|
+ // this.$emit('longSolution', response.data.data.solution)
|
|
1102
|
+ // this.$emit('prescription', response.data.data.prescription)
|
|
1103
|
+ // this.finish()
|
|
1104
|
+ //
|
|
1105
|
+ // }
|
|
1106
|
+ // })
|
|
1107
|
+ //
|
|
1108
|
+ // }
|
|
1109
|
+ //
|
|
1110
|
+ // }
|
1083
|
1111
|
|
1084
|
1112
|
}, finish: function () {
|
1085
|
1113
|
this.$emit('finish')
|