123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- <template>
- <div>
- <div class="Dialog">
- <div class="DialogTit">
- <span class="iconfont" @click="close()"></span>
- <h1 class="name">接诊评估</h1>
- <span class="success" @click="commitInfo">保存</span>
- </div>
- <div class="DialogContent choose">
- <el-form
- class="acceptsForm"
- :model="receiveTreatmentAsses"
- label-width="130px"
- >
- <el-form-item label="入室方式: " v-if="isShow('入室方式')">
- <el-radio v-model="receiveTreatmentAsses.way" label="1"
- >步行</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.way" label="2"
- >扶行</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.way" label="3"
- >轮椅</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.way" label="4"
- >平车</el-radio
- >
- <!--</el-radio-group>-->
- </el-form-item>
- <el-form-item label="病人意识: " v-if="isShow('病人意识')">
- <el-radio v-model="receiveTreatmentAsses.consciousness" label="1"
- >清醒</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.consciousness" label="2"
- >嗜睡</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.consciousness" label="3"
- >昏迷</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.consciousness" label="4"
- >模糊</el-radio
- >
- </el-form-item>
- <el-form-item label="病人食欲: " v-if="isShow('病人食欲')">
- <el-radio v-model="receiveTreatmentAsses.appetite" label="1"
- >正常</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.appetite" label="2"
- >减退</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.appetite" label="3"
- >恶心</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.appetite" label="4"
- >呕吐</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.appetite" label="5"
- >腹泻</el-radio
- >
- </el-form-item>
- <el-form-item label="病人情况: " v-if="isShow('病人情况')">
- <el-radio v-model="receiveTreatmentAsses.condition" label="1"
- >住院</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.condition" label="2"
- >门诊</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.condition" label="3"
- >手术期</el-radio
- >
- </el-form-item>
- <el-form-item label="体位: " v-if="isShow('体位')">
- <el-radio v-model="receiveTreatmentAsses.posture" label="1"
- >自动体位</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.posture" label="2"
- >平卧位</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.posture" label="3"
- >半卧位</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.posture" label="4"
- >端坐位</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.posture" label="5"
- >躁动不安</el-radio
- >
- </el-form-item>
- <el-form-item label="病情: " v-if="isShow('病情')">
- <el-radio v-model="receiveTreatmentAsses.sick_condition" label="1"
- >一般</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.sick_condition" label="2"
- >严重</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.sick_condition" label="3"
- >危</el-radio
- >
- </el-form-item>
- <el-form-item
- label-width="110dp"
- label="其他病情 : "
- v-if="isShow('其他病情')"
- >
- <el-input
- class="illnessInput"
- v-model="receiveTreatmentAsses.sick_condition_other"
- ></el-input>
- </el-form-item>
- <el-form-item
- label-width="110dp"
- label="跌倒风险评估评分 : "
- v-if="isShow('跌倒风险评估评分')"
- >
- <el-input
- class="illnessInput"
- v-model="receiveTreatmentAsses.score"
- style="width: 100px"
- ></el-input>
- </el-form-item>
-
- <el-form-item label="风险程度: " v-if="isShow('风险程度')">
- <el-radio v-model="receiveTreatmentAsses.danger_level" label="1"
- >无</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.danger_level" label="2"
- >低风险</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.danger_level" label="3"
- >中度风险</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.danger_level" label="4"
- >高风险</el-radio
- >
- </el-form-item>
-
- <el-form-item
- label-width="130px"
- label="跌倒风险预防措施: "
- v-if="isShow('跌倒风险预防措施')"
- >
- <el-radio v-model="receiveTreatmentAsses.precaution" label="1"
- >镇定剂</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.precaution" label="2"
- >约束带</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.precaution" label="3"
- >床栏</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.precaution" label="4"
- >加强宣教</el-radio
- >
- </el-form-item>
- <el-form-item
- label-width="110dp"
- label="其他跌倒风险预防措施 : "
- v-if="isShow('其他跌倒风险预防措施')"
- >
- <el-input
- class="illnessInput"
- v-model="receiveTreatmentAsses.precaution_other"
- ></el-input>
- </el-form-item>
-
- <el-form-item label="摄入量: " v-if="isShow('摄入量')">
- <el-radio v-model="receiveTreatmentAsses.intake" label="1"
- >正常</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.intake" label="2"
- >减少</el-radio
- >
- </el-form-item>
- <el-form-item label="营养状况: " v-if="isShow('营养状况')">
- <el-radio v-model="receiveTreatmentAsses.nutrition" label="1"
- >正常</el-radio
- >
- <el-radio v-model="receiveTreatmentAsses.nutrition" label="2"
- >营养不良</el-radio
- >
- </el-form-item>
- <el-form-item label="心理评估: " v-if="isShow('心理评估')">
- <el-radio
- v-model="receiveTreatmentAsses.psychological_assessment"
- label="1"
- >正常</el-radio
- >
- <el-radio
- v-model="receiveTreatmentAsses.psychological_assessment"
- label="2"
- >异常</el-radio
- >
- </el-form-item>
- <el-form-item
- label-width="110dp"
- label="心理评估异常情况 : "
- v-if="
- isShow('心理评估异常情况') &&
- receiveTreatmentAsses.psychological_assessment == 2
- "
- >
- <el-input
- v-model="receiveTreatmentAsses.psychological_assessment_other"
- ></el-input>
- </el-form-item>
-
- <el-form-item
- label-width="110dp"
- label="其他心理评估 : "
- v-if="isShow('其他心理评估')"
- >
- <el-input
- class="illnessInput"
- v-model="receiveTreatmentAsses.psychological_other"
- ></el-input>
- </el-form-item>
- </el-form>
- <!-- <div class="button">
- <button @click="commitInfo" class="submitButton">提交</button>
- </div>-->
- </div>
- <!-- <div class="footer">
- 处方医生:刘小军 医生
- </div>-->
- </div>
- </div>
- </template>
-
- <script>
- import { commitAcceptsAssessment, getLastAccepts } from "@/api/dialysis";
- import { Toast } from "vant";
-
- export default {
- name: "AcceptsDialog",
- data() {
- return {
- receiveTreatmentAsses: {
- way: "1",
- consciousness: "1",
- appetite: "1",
- condition: "1",
- posture: "1",
- sick_condition: "1",
- danger_level: "1",
- intake: "1",
- nutrition: "1",
- psychological_assessment: "1",
- psychological_assessment_other: "",
- sick_condition_other: "",
- score: "",
- psychological_other: "",
- precaution: "1",
- precaution_other: ""
- },
- patient: {
- id: 0
- },
- record_date: ""
- };
- },
- props: {
- accepts: {
- type: Object
- },
- patient_prop: {
- type: Object
- }
- },
- created() {
- if (this.accepts == null || this.accepts.id == "") {
- let ParamsQuery = {};
- ParamsQuery["patient"] = this.$route.query.patient_id;
- getLastAccepts(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- return false;
- } else {
- for (const key in response.data.data.receiveTreatmentAsses) {
- this.accepts[key] = response.data.data.receiveTreatmentAsses[key];
- this.receiveTreatmentAsses.way = this.accepts.way + "";
- this.receiveTreatmentAsses.consciousness =
- this.accepts.consciousness + "";
- this.receiveTreatmentAsses.appetite = this.accepts.appetite + "";
- this.receiveTreatmentAsses.condition = this.accepts.condition + "";
- this.receiveTreatmentAsses.posture = this.accepts.posture + "";
- this.receiveTreatmentAsses.sick_condition =
- this.accepts.sick_condition + "";
- this.receiveTreatmentAsses.danger_level =
- this.accepts.danger_level + "";
- this.receiveTreatmentAsses.intake = this.accepts.intake + "";
- this.receiveTreatmentAsses.nutrition = this.accepts.nutrition + "";
- this.receiveTreatmentAsses.psychological_assessment =
- this.accepts.psychological_assessment + "";
- this.receiveTreatmentAsses.psychological_assessment_other = this.accepts.psychological_assessment_other;
- this.receiveTreatmentAsses.score = this.accepts.score;
- this.receiveTreatmentAsses.sick_condition_other = this.accepts.sick_condition_other;
- this.receiveTreatmentAsses.psychological_other = this.accepts.psychological_other;
-
- this.receiveTreatmentAsses.precaution =
- this.accepts.precaution + "";
- this.receiveTreatmentAsses.precaution_other = this.accepts.precaution_other;
- }
- }
- });
- } else {
- if (
- this.accepts.way == 0 &&
- this.accepts.consciousness == 0 &&
- this.accepts.appetite == 0 &&
- this.accepts.condition == 0 &&
- this.accepts.posture == 0 &&
- this.accepts.sick_condition == 0 &&
- this.accepts.danger_level == 0 &&
- this.accepts.intake == 0 &&
- this.accepts.nutrition == 0 &&
- this.accepts.psychological_assessment == 0 &&
- this.accepts.psychological_assessment_other == "" &&
- this.accepts.sick_condition_other == "" &&
- this.accepts.psychological_other == "" &&
- this.accepts.precaution == 0 &&
- this.accepts.precaution_other == "" &&
- this.accepts.score == ""
- ) {
- let ParamsQuery = {};
- ParamsQuery["patient"] = this.$route.query.patient_id;
- getLastAccepts(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- return false;
- } else {
- for (const key in response.data.data.receiveTreatmentAsses) {
- this.accepts[key] = response.data.data.receiveTreatmentAsses[key];
- this.receiveTreatmentAsses.way = this.accepts.way + "";
- this.receiveTreatmentAsses.consciousness =
- this.accepts.consciousness + "";
- this.receiveTreatmentAsses.appetite = this.accepts.appetite + "";
- this.receiveTreatmentAsses.condition =
- this.accepts.condition + "";
- this.receiveTreatmentAsses.posture = this.accepts.posture + "";
- this.receiveTreatmentAsses.sick_condition =
- this.accepts.sick_condition + "";
- this.receiveTreatmentAsses.danger_level =
- this.accepts.danger_level + "";
- this.receiveTreatmentAsses.intake = this.accepts.intake + "";
- this.receiveTreatmentAsses.nutrition =
- this.accepts.nutrition + "";
- this.receiveTreatmentAsses.psychological_assessment =
- this.accepts.psychological_assessment + "";
- this.receiveTreatmentAsses.psychological_assessment_other =
- this.accepts.psychological_assessment_other + "";
- this.receiveTreatmentAsses.score = this.accepts.score;
- this.receiveTreatmentAsses.sick_condition_other = this.accepts.sick_condition_other;
-
- this.receiveTreatmentAsses.precaution =
- this.accepts.precaution + "";
- this.receiveTreatmentAsses.precaution_other = this.accepts.precaution_other;
- this.receiveTreatmentAsses.psychological_other = this.accepts.psychological_other;
- }
- }
- });
- } else {
- this.receiveTreatmentAsses.way = this.accepts.way + "";
- this.receiveTreatmentAsses.consciousness =
- this.accepts.consciousness + "";
- this.receiveTreatmentAsses.appetite = this.accepts.appetite + "";
- this.receiveTreatmentAsses.condition = this.accepts.condition + "";
- this.receiveTreatmentAsses.posture = this.accepts.posture + "";
- this.receiveTreatmentAsses.sick_condition =
- this.accepts.sick_condition + "";
- this.receiveTreatmentAsses.danger_level =
- this.accepts.danger_level + "";
- this.receiveTreatmentAsses.intake = this.accepts.intake + "";
- this.receiveTreatmentAsses.nutrition = this.accepts.nutrition + "";
- this.receiveTreatmentAsses.psychological_assessment =
- this.accepts.psychological_assessment + "";
- this.receiveTreatmentAsses.psychological_assessment_other =
- this.accepts.psychological_assessment_other + "";
- this.receiveTreatmentAsses.score = this.accepts.score;
- this.receiveTreatmentAsses.sick_condition_other = this.accepts.sick_condition_other;
-
- this.receiveTreatmentAsses.precaution = this.accepts.precaution + "";
- this.receiveTreatmentAsses.precaution_other = this.accepts.precaution_other;
- this.receiveTreatmentAsses.psychological_other = this.accepts.psychological_other;
- }
- }
-
- var date = this.$route.query && this.$route.query.date;
- date *= 1000;
- var newDate = new Date(date);
-
- var y = newDate.getFullYear();
- var m = newDate.getMonth() + 1;
- var d = newDate.getDate();
- if (isNaN(y) || isNaN(m) || isNaN(d)) {
- newDate = new Date();
- y = newDate.getFullYear();
- m = newDate.getMonth() + 1;
- d = newDate.getDate();
- }
- this.record_date =
- y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
- this.patient.id = this.patient_prop.id;
- },
- methods: {
- isShow(name) {
- var filedList = this.$store.getters.user.fileds;
- for (let i = 0; i < filedList.length; i++) {
- if (
- filedList[i].module == 2 &&
- filedList[i].filed_name_cn == name &&
- filedList[i].is_show == 1
- ) {
- return true;
- }
- }
-
- return false;
- },
- commitInfo: function() {
- Toast.loading({ forbidClick: true, duration: 0 });
- let ParamsQuery = this.receiveTreatmentAsses;
- // ParamsQuery["patient"] = this.patient.id
- ParamsQuery["patient"] = this.$route.query.patient_id;
- ParamsQuery["record_date"] = this.record_date;
-
- commitAcceptsAssessment(ParamsQuery).then(response => {
- if (response.data.state == 0) {
- Toast.fail(response.data.msg);
- return false;
- } else {
- Toast.success("提交成功");
- for (const key in response.data.data.receiveTreatmentAsses) {
- this.accepts[key] = response.data.data.receiveTreatmentAsses[key];
- }
- this.finish();
- }
- });
- },
- finish: function() {
- this.$emit("finish");
- },
- close: function() {
- this.$emit("close");
- }
- }
- };
- </script>
-
- <style style="stylesheet/scss" lang="scss" scoped>
- .choose {
- .el-form-item {
- margin-bottom: 0;
- border-bottom: 1px #e5e5e5 solid;
- padding: 0.15rem 0.36rem;
- .el-radio {
- font-size: 18px;
- }
- }
- .button {
- text-align: center;
- margin-top: 1rem;
- .submitButton {
- width: 3rem;
- height: 0.8rem;
- line-height: 0.8rem;
- background: $main-color;
- color: #fff;
- font-size: 0.3rem;
- text-align: center;
- border-radius: 6px;
- }
- }
- }
- </style>
- <style lang="scss">
- .acceptsForm {
- .el-radio {
- margin-right: 14px;
- width: 2.2rem;
- @media only screen and (min-width: 768px) {
- margin-bottom: 0.34rem;
- }
- }
- .el-radio__inner {
- width: 16px !important;
- height: 16px !important;
- @media only screen and (min-width: 768px) {
- width: 26px !important;
- height: 26px !important;
- margin-bottom: 4px !important;
- }
- }
- }
-
- .illnessInput {
- .el-input__inner {
- font-size: 0.45rem;
- @media only screen and (min-width: 768px) {
- height: 60px;
- line-height: 60px;
- font-size: 0.45rem;
- }
- }
- }
- </style>
|