血透系统pad前端

TreatmentDialog.vue 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. <template>
  2. <div>
  3. <div class="Dialog" v-show="isShowDialog">
  4. <div class="DialogTit">
  5. <span @click="close()" class="iconfont">&#xe6e9;</span>
  6. <h1 class="name">治疗小结</h1>
  7. <span @click="commitInfo" class="success">保存</span>
  8. </div>
  9. <div class="DialogContent choose" id="dialogTop">
  10. <el-form :model="dialysisSummary" label-width="120px">
  11. <el-form-item label="透后宣教 : ">
  12. <!-- <el-select @change="dialysisAfterTeachSelectChange" v-model="dialysisSummary.text1" placeholder="请选择">
  13. <el-option v-for="(s, index) in teach" :label="s.text" :value="s.value" :key="index"></el-option>
  14. </el-select>-->
  15. <el-input
  16. readonly
  17. v-model="dialysisSummary.propagandaAndEducationContentSelect"
  18. placeholder="请选择"
  19. @focus="showSubMenu('education')"
  20. ></el-input>
  21. </el-form-item>
  22. <el-form-item label-width="0">
  23. <el-input
  24. class="newTextarea"
  25. type="textarea"
  26. v-model="dialysisSummary.propagandaAndEducationContent"
  27. :rows="5"
  28. ></el-input>
  29. </el-form-item>
  30. <el-form-item label="透析小结 : ">
  31. <el-input
  32. readonly
  33. v-model="dialysisSummary.summaryContentSelect"
  34. placeholder="请选择"
  35. @focus="showSubMenu('summary')"
  36. ></el-input>
  37. </el-form-item>
  38. <el-form-item label-width="0">
  39. <el-input
  40. class="newTextarea"
  41. @focus="lastInputFocus"
  42. @blur="lastInputBlur"
  43. type="textarea"
  44. v-model="dialysisSummary.summaryContent"
  45. :rows="5"
  46. ></el-input>
  47. </el-form-item>
  48. </el-form>
  49. <!-- <div class="button">
  50. <button @click="commitInfo" class="submitButton">提交</button>
  51. </div>-->
  52. </div>
  53. </div>
  54. <check-box-sub-menu
  55. :visibility="visibility"
  56. v-on:menu-cancle="menuCancle"
  57. v-on:menu-comfirm="menuComfirm"
  58. :propsForm="propForm"
  59. ></check-box-sub-menu>
  60. </div>
  61. </template>
  62. <script>
  63. import { commitTreatmentSummary } from "@/api/dialysis";
  64. import { Toast } from "vant";
  65. import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
  66. import { getDataConfig } from "@/utils/data";
  67. export default {
  68. name: "TreatmentDialog",
  69. data() {
  70. return {
  71. isShowDialog: true,
  72. visibility: false,
  73. propForm: {
  74. title: "",
  75. list: [],
  76. optionList: [],
  77. isMultiple: 2,
  78. result: [], //选中的值
  79. type: 1, //用来区分不同子菜单,方便对返回值进行赋值
  80. selectId: 0
  81. },
  82. dialysisSummary: {
  83. text: "",
  84. propagandaAndEducationContent: "",
  85. propagandaAndEducationContentSelect: "",
  86. text2: "",
  87. summaryContent: "",
  88. summaryContentSelect: "",
  89. changeMedicalNurse: "",
  90. treatNurse: "",
  91. checkStaff: "",
  92. deboardNurse: "",
  93. treatDoctor: ""
  94. },
  95. summary: [],
  96. summaryObj: {},
  97. teach: [],
  98. teachObj: {},
  99. title: "治疗小结 ",
  100. record_date: "",
  101. patient: {
  102. id: 0
  103. }
  104. };
  105. },
  106. props: {
  107. record: {
  108. type: Object
  109. },
  110. patient_prop: {
  111. type: Object
  112. }
  113. },
  114. created() {
  115. // this.summary = this.$store.getters.summary;
  116. this.summary = getDataConfig("summary", "summary");
  117. // console.log("this.summary",this.summary)
  118. // this.teach = this.$store.getters.teach;
  119. this.teach = getDataConfig("education", "education");
  120. if (this.teach.length > 0) {
  121. var tlen = this.teach.length;
  122. for (let index = 0; index < tlen; index++) {
  123. this.teach[index].name = this.teach[index].text;
  124. this.teachObj[this.teach[index].id] = this.teach[index];
  125. }
  126. }
  127. if (this.summary.length > 0) {
  128. var tlen = this.summary.length;
  129. for (let index = 0; index < tlen; index++) {
  130. this.summary[index].name = this.summary[index].text;
  131. this.summaryObj[this.summary[index].id] = this.summary[index];
  132. }
  133. }
  134. var date = this.$route.query && this.$route.query.date;
  135. date *= 1000;
  136. var newDate = new Date(date);
  137. var y = newDate.getFullYear();
  138. var m = newDate.getMonth() + 1;
  139. var d = newDate.getDate();
  140. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  141. newDate = new Date();
  142. y = newDate.getFullYear();
  143. m = newDate.getMonth() + 1;
  144. d = newDate.getDate();
  145. }
  146. this.record_date =
  147. y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  148. // this.patient.id = this.patient_prop.id
  149. if (this.record != null && this.record.id != "") {
  150. for (const key in this.record) {
  151. this.dialysisSummary[key] = this.record[key];
  152. }
  153. if (this.record.mission != "undefined") {
  154. this.dialysisSummary.propagandaAndEducationContent = this.record.mission;
  155. }
  156. if (this.record.dialysis_summary != "undefined") {
  157. this.dialysisSummary.summaryContent = this.record.dialysis_summary;
  158. }
  159. }
  160. },
  161. methods: {
  162. lastInputFocus: function(event) {
  163. var input = event.target;
  164. setTimeout(function() {
  165. input.style.marginBottom = "2rem";
  166. input.parentNode.scrollIntoView();
  167. }, 0);
  168. },
  169. lastInputBlur: function(event) {
  170. var input = event.target;
  171. setTimeout(function() {
  172. input.style.marginBottom = "";
  173. }, 0);
  174. },
  175. showSubMenu: function(val) {
  176. switch (val) {
  177. case "education":
  178. this.propForm.type = 1;
  179. this.isShowDialog = false;
  180. this.propForm.title = "透后宣教";
  181. this.visibility = true;
  182. this.propForm.list = [];
  183. this.propForm.optionList = this.teach;
  184. this.propForm.isMultiple = 1;
  185. this.propForm.selectId = this.dialysisSummary.xjid;
  186. break;
  187. case "summary":
  188. this.propForm.type = 2;
  189. this.isShowDialog = false;
  190. this.propForm.title = "透析小结";
  191. this.visibility = true;
  192. this.propForm.list = [];
  193. this.propForm.optionList = this.summary;
  194. this.propForm.isMultiple = 1;
  195. this.propForm.selectId = this.dialysisSummary.xxjid;
  196. break;
  197. }
  198. },
  199. menuCancle: function() {
  200. this.visibility = false;
  201. this.isShowDialog = true;
  202. },
  203. menuComfirm: function(val) {
  204. this.visibility = false;
  205. this.isShowDialog = true;
  206. switch (val.type) {
  207. case 1:
  208. if (val.selectId in this.teachObj) {
  209. var theValue = this.teachObj[val.selectId].value;
  210. this.dialysisAfterTeachSelectChange(theValue);
  211. this.dialysisSummary.xjid = val.selectId;
  212. this.dialysisSummary.propagandaAndEducationContentSelect = this.teachObj[
  213. val.selectId
  214. ].name;
  215. }
  216. break;
  217. case 2:
  218. if (val.selectId in this.summaryObj) {
  219. var theValue = this.summaryObj[val.selectId].value;
  220. this.dialysisSummarySelectChange(theValue);
  221. this.dialysisSummary.xxjid = val.selectId;
  222. this.dialysisSummary.summaryContentSelect = this.summaryObj[
  223. val.selectId
  224. ].name;
  225. }
  226. break;
  227. }
  228. },
  229. dialysisSummarySelectChange: function(values) {
  230. if (this.dialysisSummary.summaryContent == null) {
  231. this.dialysisSummary.summaryContent == "";
  232. }
  233. if (this.dialysisSummary.summaryContent == "") {
  234. this.dialysisSummary.summaryContent = values;
  235. } else {
  236. if (this.dialysisSummary.summaryContent.indexOf(values) == -1) {
  237. if (
  238. this.dialysisSummary.summaryContent
  239. .charAt(this.dialysisSummary.summaryContent.length - 1)
  240. .indexOf("。") == -1
  241. ) {
  242. this.dialysisSummary.summaryContent =
  243. this.dialysisSummary.summaryContent + "," + values;
  244. } else {
  245. this.dialysisSummary.summaryContent =
  246. this.dialysisSummary.summaryContent + "," + values;
  247. this.dialysisSummary.summaryContent =
  248. this.dialysisSummary.summaryContent + values;
  249. }
  250. }
  251. }
  252. },
  253. dialysisAfterTeachSelectChange: function(values) {
  254. if (this.dialysisSummary.propagandaAndEducationContent == null) {
  255. this.dialysisSummary.propagandaAndEducationContent == "";
  256. }
  257. if (this.dialysisSummary.propagandaAndEducationContent == "") {
  258. this.dialysisSummary.propagandaAndEducationContent = values;
  259. } else {
  260. if (
  261. this.dialysisSummary.propagandaAndEducationContent.indexOf(values) ==
  262. -1
  263. ) {
  264. if (
  265. this.dialysisSummary.propagandaAndEducationContent
  266. .charAt(
  267. this.dialysisSummary.propagandaAndEducationContent.length - 1
  268. )
  269. .indexOf("。") == -1
  270. ) {
  271. this.dialysisSummary.propagandaAndEducationContent =
  272. this.dialysisSummary.propagandaAndEducationContent + "," + values;
  273. } else {
  274. this.dialysisSummary.propagandaAndEducationContent =
  275. this.dialysisSummary.propagandaAndEducationContent + values;
  276. }
  277. }
  278. }
  279. },
  280. commitInfo: function() {
  281. Toast.loading({ forbidClick: true, duration: 0 });
  282. let ParamsQuery = this.dialysisSummary;
  283. ParamsQuery["patient"] = this.$route.query.patient_id;
  284. ParamsQuery["record_date"] = this.record_date;
  285. commitTreatmentSummary(ParamsQuery).then(response => {
  286. if (response.data.state == 0) {
  287. Toast.fail(response.data.msg);
  288. return false;
  289. } else {
  290. Toast.success("提交成功");
  291. this.$emit("did_update", response.data.data.summary);
  292. for (const key in response.data.data.summary) {
  293. this.record[key] = response.data.data.summary[key];
  294. }
  295. }
  296. });
  297. },
  298. close: function() {
  299. this.$emit("close");
  300. },
  301. open: function() {
  302. this.isShowDialog = true;
  303. this.visibility = false;
  304. var dialogTop = document.querySelector("#dialogTop");
  305. if (dialogTop != null) {
  306. this.$nextTick(() => {
  307. dialogTop.scrollTop = 0;
  308. });
  309. }
  310. }
  311. },
  312. components: {
  313. CheckBoxSubMenu
  314. }
  315. };
  316. </script>
  317. <style style="stylesheet/scss" lang="scss" scoped>
  318. .choose {
  319. padding: 0.6rem 0.6rem 0 0.6rem;
  320. .button {
  321. text-align: center;
  322. .submitButton {
  323. width: 3rem;
  324. height: 0.8rem;
  325. line-height: 0.8rem;
  326. background: $main-color;
  327. color: #fff;
  328. font-size: 0.3rem;
  329. text-align: center;
  330. border-radius: 6px;
  331. }
  332. }
  333. }
  334. </style>
  335. <style lang="scss">
  336. .newTextarea {
  337. font-size: 0.45rem;
  338. }
  339. </style>