Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

PatientSidebar.vue 9.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. <template>
  2. <div>
  3. <div class="patient-menu">
  4. <el-autocomplete
  5. style="margin:16px 5px"
  6. popper-class="my-autocomplete"
  7. v-model.trim="value"
  8. :fetch-suggestions="querySearchAsync"
  9. :trigger-on-focus="false"
  10. placeholder="病人名字或者透析号"
  11. @select="handleSelect"
  12. >
  13. <i class="el-icon-search el-input__icon" slot="suffix"> </i>
  14. <template slot-scope="{ item }">
  15. <div class="name">{{ item.name }}</div>
  16. </template>
  17. </el-autocomplete>
  18. <el-select
  19. v-model="selectID"
  20. style="margin:0 5px 0px 5px;text-align: center;"
  21. @change="changePatient"
  22. placeholder="请选择"
  23. >
  24. <el-option
  25. v-for="item in patientsList"
  26. :key="item.id"
  27. :label="item.name"
  28. :value="item.id"
  29. >
  30. </el-option>
  31. </el-select>
  32. <el-tree
  33. :data="treeData"
  34. accordion
  35. node-key="name"
  36. :key="treeKey"
  37. :current-node-key="treeKey"
  38. :default-expanded-keys="[defaultActive]"
  39. @node-click="handleNodeClick"
  40. >
  41. </el-tree>
  42. </div>
  43. <div class="patient-app-container ">
  44. <span class="patient-name"
  45. >姓名:{{ currentPatient.name }} &nbsp;&nbsp; 性别:{{
  46. tranSex(currentPatient.gender)
  47. }}
  48. &nbsp;&nbsp; 年龄:{{ getAge(currentPatient) }} &nbsp;&nbsp; 透析号:{{
  49. currentPatient.dialysis_no
  50. }}
  51. </span>
  52. </div>
  53. </div>
  54. </template>
  55. <script>
  56. import { fetchAllList, PostSearch } from '@/api/patient'
  57. import { jsGetAge, uParseTime } from '@/utils/tools'
  58. export default {
  59. name: 'patientSidebar',
  60. value: '',
  61. searchArray: [],
  62. props: {
  63. id: 0,
  64. defaultActive: {
  65. type: String,
  66. default: '1-1'
  67. }
  68. },
  69. data() {
  70. return {
  71. thedefaultActive: 1,
  72. patientsList: null,
  73. currentPatient: {},
  74. selectID: 0,
  75. keyword: '',
  76. value: '',
  77. treeKey: '',
  78. treeData: [
  79. {
  80. name: '1',
  81. label: '电子病历',
  82. children: [
  83. {
  84. name: '1-1',
  85. label: '基本信息'
  86. },
  87. {
  88. name: '1-4',
  89. label: '医嘱管理'
  90. },
  91. {
  92. name: '1-6',
  93. label: '干体重'
  94. },
  95. {
  96. name: '1-2',
  97. label: '病程管理'
  98. },
  99. {
  100. name: '1-3',
  101. label: '检验检查'
  102. },
  103. {
  104. name: '1-5',
  105. label: '抢救记录'
  106. }
  107. ]
  108. },
  109. {
  110. name: '2',
  111. label: '透析管理',
  112. children: [
  113. {
  114. name: '2-1',
  115. label: '长期透析处方'
  116. },
  117. {
  118. name: '2-2',
  119. label: '透析记录'
  120. },
  121. {
  122. name: '2-4',
  123. label: '排班信息'
  124. },
  125. {
  126. name: '2-5',
  127. label: '宣教信息'
  128. }
  129. ]
  130. }
  131. ],
  132. name:""
  133. }
  134. },
  135. methods: {
  136. handleNodeClick(data) {
  137. var name = data.name
  138. this.name = data.name
  139. window.sessionStorage.setItem('patientKey',data.name)
  140. if (name == '1-1') {
  141. this.$router.push({ path: '/patients/patient/' + this.id })
  142. } else if (name == '1-2') {
  143. this.$router.push({ path: '/patients/course?id=' + this.id })
  144. } else if (name == '1-3') {
  145. this.$router.push({ path: '/patients/inspection?id=' + this.id })
  146. } else if (name == '1-4') {
  147. this.$router.push({
  148. path: '/patients/patient/' + this.id + '/doctorAdvice'
  149. })
  150. } else if (name == '1-6') {
  151. this.$router.push({
  152. path: '/patients/patient/' + this.id + '/dryWeight'
  153. })
  154. } else if (name == '1-5') {
  155. this.$router.push({ path: '/patients/rescue?id=' + this.id })
  156. } else if (name == '2-1') {
  157. this.$router.push({
  158. path: '/patients/patient/' + this.id + '/dialysisSolution'
  159. })
  160. } else if (name == '2-2') {
  161. this.$router.push({
  162. path: '/patients/patient/' + this.id + '/dialysisRecord'
  163. })
  164. } else if (name == '2-4') {
  165. this.$router.push({
  166. path: '/patients/patient/' + this.id + '/scheduling'
  167. })
  168. } else if (name == '2-5') {
  169. this.$router.push({
  170. path: '/patients/patient/' + this.id + '/proeducation'
  171. })
  172. }
  173. },
  174. changePatient(value) {
  175. console.log(value)
  176. this.$router.push('/patients/patient/' + value)
  177. },
  178. getList() {
  179. fetchAllList().then(response => {
  180. if (response.data.state == 1) {
  181. this.patientsList = response.data.data.patients
  182. var len = this.patientsList.length
  183. if (len > 0) {
  184. for (let index = 0; index < len; index++) {
  185. if (this.patientsList[index].id == this.id) {
  186. this.currentPatient = this.patientsList[index]
  187. // console.log("curr", this.currentPatient);
  188. this.selectID = this.patientsList[index].id
  189. this.$emit('tran-patient', this.currentPatient)
  190. break
  191. }
  192. }
  193. }
  194. }
  195. })
  196. },
  197. tranAge(birthday) {
  198. var birth = uParseTime(birthday, '{y}-{m}-{d}')
  199. return jsGetAge(birth, '-')
  200. },
  201. tranSex(gender) {
  202. var sex = '未知'
  203. switch (gender) {
  204. case 1:
  205. sex = '男'
  206. break
  207. case 2:
  208. sex = '女'
  209. break
  210. default:
  211. break
  212. }
  213. return sex
  214. },
  215. querySearchAsync(keyword, cb) {
  216. let key = ''
  217. if (keyword != undefined) {
  218. key = keyword
  219. }
  220. let searchArray = []
  221. PostSearch(key).then(response => {
  222. if (response.data.state == 1) {
  223. searchArray = response.data.data.patient
  224. cb(searchArray)
  225. } else {
  226. this.$message.error(response.data.msg)
  227. cb([])
  228. }
  229. })
  230. },
  231. handleSelect(val) {
  232. this.$router.push('/patients/patient/' + val.id)
  233. },
  234. getAge: function(val) {
  235. if (val.id_card_no == undefined) {
  236. return false
  237. }
  238. var thisLen = val.id_card_no.length
  239. var birth = ''
  240. if (thisLen == 15) {
  241. birth = '19' + val.id_card_no.substr(6, 6)
  242. } else {
  243. birth = val.id_card_no.substr(6, 8)
  244. }
  245. var birthtwo =
  246. birth.substr(0, 4) +
  247. '-' +
  248. birth.substr(4, 2) +
  249. '-' +
  250. birth.substr(6, 2)
  251. var age = jsGetAge(birthtwo, '-')
  252. return age
  253. }
  254. },
  255. created() {
  256. var patientKey = window.sessionStorage.getItem('patientKey')
  257. console.log("patient",patientKey)
  258. var query = this.$route.path
  259. if(patientKey){
  260. this.treeKey = patientKey
  261. if(query.indexOf('edit') == -1){
  262. if (patientKey == '1-1') {
  263. this.$router.push({ path: '/patients/patient/' + this.id })
  264. } else if (patientKey == '1-2') {
  265. this.$router.push({ path: '/patients/course?id=' + this.id })
  266. } else if (patientKey == '1-3') {
  267. this.$router.push({ path: '/patients/inspection?id=' + this.id })
  268. } else if (patientKey == '1-4') {
  269. this.$router.push({
  270. path: '/patients/patient/' + this.id + '/doctorAdvice'
  271. })
  272. } else if (patientKey == '1-6') {
  273. this.$router.push({
  274. path: '/patients/patient/' + this.id + '/dryWeight'
  275. })
  276. } else if (patientKey == '1-5') {
  277. this.$router.push({ path: '/patients/rescue?id=' + this.id })
  278. }else if (patientKey == '2-1') {
  279. this.$router.push({
  280. path: '/patients/patient/' + this.id + '/dialysisSolution'
  281. })
  282. } else if (patientKey == '2-2') {
  283. this.$router.push({
  284. path: '/patients/patient/' + this.id + '/dialysisRecord'
  285. })
  286. } else if (patientKey == '2-4') {
  287. this.$router.push({
  288. path: '/patients/patient/' + this.id + '/scheduling'
  289. })
  290. } else if (patientKey == '2-5') {
  291. this.$router.push({
  292. path: '/patients/patient/' + this.id + '/proeducation'
  293. })
  294. }
  295. }else{
  296. this.treeKey = "1-1"
  297. }
  298. }else{
  299. this.treeKey = this.defaultActive
  300. }
  301. this.getList()
  302. },
  303. }
  304. </script>
  305. <style>
  306. .patient-menu .el-tree-node__content {
  307. font-size: 14px;
  308. height: 40px;
  309. font-weight: 400;
  310. }
  311. .patient-menu .el-tree-node__label:hover {
  312. color: #409eff;
  313. }
  314. .patient-menu .el-tree-node:focus > .el-tree-node__content {
  315. color: #409eff;
  316. }
  317. .patient-menu .el-tree-node .el-tree-node.is-current > .el-tree-node__content {
  318. color: #409eff;
  319. }
  320. .patient-menu .el-tree {
  321. background: #f6f8f9;
  322. }
  323. .patient-menu {
  324. -webkit-transition: width 0.28s;
  325. transition: width 0.28s;
  326. width: 180px !important;
  327. height: 100%;
  328. position: relative;
  329. font-size: 0px;
  330. top: 0;
  331. float: left;
  332. bottom: 0;
  333. left: 0;
  334. /* z-index: 99; */
  335. overflow: hidden;
  336. }
  337. .patient-center-menu .el-icon-arrow-down:before {
  338. content: "";
  339. }
  340. </style>