123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- <template>
- <el-dialog
- class="newDialog"
- title="治疗小结"
- width="854px"
- :visible.sync="isVisibility"
- :modal-append-to-body="false"
- >
- <div class="warnTxt" v-if="showTxt != ''">{{ showTxt }}</div>
- <el-form :model="treatmentSummary" ref="treatmentSummary">
- <el-row :gutter="20">
- <el-col :span="24" v-if="isShow('宣教知识')">
- <el-form-item
- label="宣教知识:"
- :prop="isName('宣教知识')"
- :rules="isCheckmust('宣教知识')"
- >
- <el-select @change="dialysisAfterTeachSelectChange" v-model="value">
- <el-option
- v-for="(item, index) in education"
- :label="item.text"
- :value="item.value"
- :key="index"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col v-if="isShow('宣教知识')">
- <el-form-item
- :prop="isName('宣教知识')"
- :rules="isCheckmust('宣教知识')"
- >
- <el-input
- type="textarea"
- v-model="treatmentSummary.mission"
- :rows="4"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="24" v-if="isShow('透析小结')">
- <el-form-item
- label="透析小结:"
- :prop="isName('透析小结')"
- :rules="isCheckmust('透析小结')"
- >
- <el-select @change="dialysisSummarySelectChange" v-model="value2">
- <el-option
- v-for="(item, index) in summary"
- :label="item.text"
- :value="item.value"
- :key="index"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col v-if="isShow('透析小结')">
- <el-form-item
- :prop="isName('透析小结')"
- :rules="isCheckmust('透析小结')"
- >
- <el-input
- type="textarea"
- v-model="treatmentSummary.dialysis_summary"
- :rows="4"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="24" v-if="isShow('透析护理记录')">
- <el-form-item
- label="透析护理记录:"
- :prop="isName('透析护理记录')"
- :rules="isCheckmust('透析护理记录')"
- >
- <el-select
- @change="dialysisNusingRecordSelectChange"
- v-model="value3"
- >
- <el-option
- v-for="(item, index) in nursingRecord"
- :label="item.text"
- :value="item.value"
- :key="index"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col v-if="isShow('透析护理记录')">
- <el-form-item
- :prop="isName('透析护理记录')"
- :rules="isCheckmust('透析护理记录')"
- >
- <el-input
- type="textarea"
- v-model="treatmentSummary.nursing_record"
- :rows="4"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="24" v-if="isShow('特殊记录')">
- <el-form-item
- label="特殊记录:"
- :prop="isName('特殊记录')"
- :rules="isCheckmust('特殊记录')"
- >
- <el-select
- @change="dialysisSpecialRecordSelectChange"
- v-model="value4"
- >
- <el-option
- v-for="(item, index) in specialRecord"
- :label="item.text"
- :value="item.value"
- :key="index"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col v-if="isShow('特殊记录')">
- <el-form-item
- :prop="isName('特殊记录')"
- :rules="isCheckmust('特殊记录')"
- >
- <el-input
- type="textarea"
- v-model="treatmentSummary.special_record"
- :rows="4"
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="handleCancle">取 消</el-button>
- <el-button
- type="primary"
- @click="handleComfirm('treatmentSummary')"
- v-if="hasPermission"
- >保 存</el-button
- >
- </div>
- </el-dialog>
- </template>
-
- <script>
- import { getDataConfig } from "@/utils/data";
- import { postTreatmentsummary } from "@/api/dialysis";
- import { uParseTime } from "@/utils/tools";
- import store from "@/store";
- import request from "@/utils/request";
- import { parseTime } from "@/utils";
-
- export default {
- name: "treatmentSummaryDialog",
-
- props: {
- treatment_summary: {
- // 治疗小结
- type: Object,
- default: () => {
- return { id: 0 };
- },
- },
- patient: {
- // 患者信息
- type: Object,
- default: () => {
- return { id: 0 };
- },
- },
- },
- data() {
- return {
- showTxt: "",
- hasPermission: true,
- value: "",
- value2: "",
- value3: "",
- value4: "",
- isVisibility: false,
- record_date: "",
- education: [],
- summary: [],
- nursingRecord: [],
- specialRecord: [],
- treatmentSummary: {
- mission: "",
- dialysis_summary: "",
- sj_nurse: "",
- zl_nurse: "",
- hd_nurse: "",
- xj_nurse: "",
- zl_doctor: "",
- nursing_record: "",
- special_record: "",
- },
- //
- date: "",
- };
- },
- methods: {
- isName(name) {
- let filedList = store.getters.xt_user.fileds;
- for (let i = 0; i < filedList.length; i++) {
- if (filedList[i].module == 6 && filedList[i].filed_name_cn == name) {
- return filedList[i].filed_name;
- }
- }
- },
-
- isCheckmust(name) {
- let filedList = store.getters.xt_user.fileds;
- for (let i = 0; i < filedList.length; i++) {
- if (
- filedList[i].module == 6 &&
- filedList[i].filed_name_cn == name &&
- filedList[i].is_write == 1
- ) {
- return [{ required: true, message: `请输入${name}` }];
- }
- }
- },
- show(record, date) {
- this.isVisibility = true;
- this.record = record;
-
- if (date) {
- this.date = date;
- this.record_date = uParseTime(this.date, "{y}-{m}-{d}");
- }
-
- console.log("治疗小结", record);
- this.getPermission();
- },
- hide() {
- this.isVisibility = false;
- },
- dialysisAfterTeachSelectChange: function (values) {
- if (this.treatmentSummary.mission == "") {
- this.treatmentSummary.mission = values;
- } else {
- if (this.treatmentSummary.mission.indexOf(values) == -1) {
- if (
- this.treatmentSummary.mission
- .charAt(this.treatmentSummary.mission.length - 1)
- .indexOf("。") == -1
- ) {
- this.treatmentSummary.mission =
- this.treatmentSummary.mission + "," + values;
- } else {
- this.treatmentSummary.mission =
- this.treatmentSummary.mission + values;
- }
- }
- }
- },
- dialysisSummarySelectChange: function (values) {
- if (this.treatmentSummary.dialysis_summary == "") {
- this.treatmentSummary.dialysis_summary = values;
- } else {
-
- if (this.treatmentSummary.dialysis_summary.indexOf(values) == -1) {
- if (
- this.treatmentSummary.dialysis_summary
- .charAt(this.treatmentSummary.dialysis_summary.length - 1)
- .indexOf("。") == -1
- ) {
- this.treatmentSummary.dialysis_summary =
- this.treatmentSummary.dialysis_summary + "," + values;
- } else {
- this.treatmentSummary.dialysis_summary =
- this.treatmentSummary.dialysis_summary + "," + values;
- this.treatmentSummary.dialysis_summary =
- this.treatmentSummary.dialysis_summary + values;
- }
- }
- }
- },
- dialysisNusingRecordSelectChange: function (values) {
- if (this.treatmentSummary.nursing_record == "") {
- this.treatmentSummary.nursing_record = values;
- } else {
- if (this.treatmentSummary.nursing_record.indexOf(values) == -1) {
- if (
- this.treatmentSummary.nursing_record
- .charAt(this.treatmentSummary.nursing_record.length - 1)
- .indexOf("。") == -1
- ) {
- this.treatmentSummary.nursing_record =
- this.treatmentSummary.nursing_record + "," + values;
- } else {
- this.treatmentSummary.nursing_record =
- this.treatmentSummary.nursing_record + "," + values;
- this.treatmentSummary.nursing_record =
- this.treatmentSummary.nursing_record + values;
- }
- }
- }
- },
- dialysisSpecialRecordSelectChange(values) {
- if (this.treatmentSummary.special_record == "") {
- this.treatmentSummary.special_record = values;
- } else {
- if (this.treatmentSummary.special_record.indexOf(values) == -1) {
- if (
- this.treatmentSummary.special_record
- .charAt(this.treatmentSummary.special_record.length - 1)
- .indexOf("。") == -1
- ) {
- this.treatmentSummary.special_record =
- this.treatmentSummary.special_record + "," + values;
- } else {
- this.treatmentSummary.special_record =
- this.treatmentSummary.special_record + "," + values;
- this.treatmentSummary.special_record =
- this.treatmentSummary.special_record + values;
- }
- }
- }
- },
- handleCancle: function () {
- this.isVisibility = false;
- },
- handleComfirm(formName) {
- this.$refs[formName].validate((valid) => {
- if (valid) {
- const ParamsQuery = this.treatmentSummary;
- ParamsQuery["patient"] = this.patient.id;
- ParamsQuery["record_date"] = this.record_date;
- ParamsQuery["mode"] = "1";
- if (this.treatment_summary.id > 0) {
- ParamsQuery["mode"] = "2";
- if (
- this.treatment_summary.creater !=
- this.$store.getters.xt_user.user.id
- ) {
- ParamsQuery["mode"] = "3";
- }
- }
- postTreatmentsummary(ParamsQuery).then((response) => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false;
- } else {
- this.$notify({
- title: "成功",
- message: "提交成功",
- type: "success",
- duration: 2000,
- });
-
- const summary_resp = response.data.data.summary;
- // prop
- var treatment_summary = this.treatment_summary;
- for (var index in summary_resp) {
- // treatment_summary[index] = summary_resp[index];
- this.$set(treatment_summary, index, summary_resp[index]);
- }
-
- this.hide();
- }
- });
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- getPermission() {
- request
- .get("/api/func_per/get", {
- params: {
- create_url: "/api/dialysis/treatmentsummary?mode=1",
- modify_url: "/api/dialysis/treatmentsummary?mode=2",
- modify_other_url: "/api/dialysis/treatmentsummary?mode=3",
- module: 9,
- },
- })
- .then((res) => {
- if (res.data.state == 0) {
- this.hasPermission = false;
- } else if (res.data.state == 1) {
- if (this.record.id != "" && this.record.creater != 0) {
- // 有数据
- if (this.record.creater == this.$store.getters.user.admin.id) {
- // 创建人是自己
- if (res.data.data.is_has_modify == false) {
- this.hasPermission = false;
- this.showTxt = "你没有修改治疗小结权限";
- }
- } else {
- // 创建人不是自己
- if (res.data.data.is_has_modify_other == false) {
- this.hasPermission = false;
- this.showTxt = "你没有修改他人治疗小结权限";
- }
- }
- } else if (this.record.id == "" || this.record.creater == 0) {
- if (res.data.data.is_has_create == false) {
- this.hasPermission = false;
- this.showTxt = "你没有新增治疗小结权限";
- }
- }
- }
- });
- },
- isShow(name) {
- var filedList = store.getters.xt_user.fileds;
-
- for (let i = 0; i < filedList.length; i++) {
- if (
- filedList[i].module == 6 &&
- filedList[i].filed_name_cn == name &&
- filedList[i].is_show == 1
- ) {
- return true;
- }
- }
- return false;
- },
- },
- watch: {
- isVisibility(val) {},
- "treatment_summary.id": {
- immediate: true,
- deep: true,
- handler(oldVal, newVal) {
- if (oldVal == newVal) {
- for (var index in this.treatmentSummary) {
- this.treatmentSummary[index] = this.treatment_summary[index];
- }
- }
- if (this.treatment_summary.id > 0) {
- for (var index in this.treatmentSummary) {
- this.value = "";
- this.value2 = "";
- this.value3 = "";
- this.value4 = "";
- this.treatmentSummary[index] = this.treatment_summary[index];
- }
- } else if (this.treatment_summary.id == 0) {
- for (var index in this.treatmentSummary) {
- // this.treatmentSummary[index] = this.treatment_summary[index]
- this.value = "";
- this.value2 = "";
- this.value3 = "";
- this.value4 = "";
- this.treatmentSummary = {
- mission: "",
- dialysis_summary: "",
- sj_nurse: "",
- zl_nurse: "",
- hd_nurse: "",
- xj_nurse: "",
- zl_doctor: "",
- nursing_record: "",
- special_record: "",
- };
- }
-
- if(this.$store.getters.xt_user.org.id == 0 || this.$store.getters.xt_user.org.id == 9671 || this.$store.getters.xt_user.org.id == 10340){
- this.treatmentSummary.dialysis_summary = "安全下机"
- }
-
- }
- },
- },
- },
- created() {
- this.education = getDataConfig("education", "education");
- this.summary = getDataConfig("summary", "summary");
-
- this.nursingRecord = getDataConfig("nursing_record", "nursing_record");
-
- this.specialRecord = getDataConfig("special_record", "special_record");
-
- // var date = this.$route.query && this.$route.query.date
- // this.record_date = uParseTime(date, '{y}-{m}-{d}')
-
- if (this.$route.query && this.$route.query.date) {
- var date = this.$route.query && this.$route.query.date;
- this.record_date = uParseTime(date, "{y}-{m}-{d}");
- }
-
- },
- };
- </script>
-
- <style scoped>
- .warnTxt {
- text-align: center;
- margin: 0 auto;
- background: #faa331;
- max-width: 240px;
- padding: 10px 20px;
- border-radius: 4px;
- margin-bottom: 10px;
- color: #fff;
- }
- </style>
- <style lang="scss">
- .newDialog {
- .el-dialog__body {
- padding: 10px 20px 30px;
- }
- }
- </style>
|