patientList.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. <template>
  2. <view class="patientList">
  3. <view class="search-box">
  4. <seiminSearch class="mSearch-input-box" :mode="2" button="inside" placeholder="输入床号或姓名支持拼音检索" @input="debounceInp"
  5. v-model="keyword"></seiminSearch>
  6. </view>
  7. <view class="search-keyword">
  8. <view class="orderList_listItem" v-for="patient in patientList" :key="patient.id">
  9. <view class="orderList_listItem_header">
  10. <view class="orderList_listItem_header_title">
  11. <block v-if="patient.illnessState">
  12. <view class="associationType_icon red" v-if="patient.illnessState.value === '2'">危</view>
  13. <view class="associationType_icon red" v-else-if="patient.illnessState.value === '3'">重</view>
  14. </block>
  15. <block v-if="patient.careLevel">
  16. <view class="associationType_icon red" v-if="patient.careLevel.value === '0'">特</view>
  17. <view class="associationType_icon red" v-else-if="patient.careLevel.value === '1'">1</view>
  18. <view class="associationType_icon green" v-else-if="patient.careLevel.value === '2'">2</view>
  19. <view class="associationType_icon green" v-else-if="patient.careLevel.value === '3'">3</view>
  20. </block>
  21. <view class="taskNameAndWorkerName">
  22. <text class="workerName">{{patient.patientName || '暂无'}}</text>
  23. </view>
  24. </view>
  25. <text class="orderList_listItem_header_more">{{patient.bedNum }}床</text>
  26. </view>
  27. <view class="orderList_listItem_item">
  28. <view class="orderList_listItem_item_content">
  29. <text class="orderList_listItem_item_name">{{patient.residenceNo || '暂无'}}</text>
  30. <text class="orderList_listItem_item_time">待检{{patient.watingCount}}</text>
  31. </view>
  32. <view class="orderList_listItem_item_btns">
  33. <button type="primary" class="btn" @click.stop="toDetail(patient.patientCode,patient.patientName)">患者详情</button>
  34. <button type="primary" class="btn" @click.stop="buildOrder(patient)">一键建单</button>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <seiminFooterNav></seiminFooterNav>
  40. <seiminModel ref="seiminModel"></seiminModel>
  41. <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
  42. confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker"
  43. @onConfirm="confirmPicker" :pickerList="taskTypeList">
  44. </seiminPicker>
  45. </view>
  46. </template>
  47. <script>
  48. import {
  49. debounce
  50. } from 'lodash/function';
  51. import {
  52. reqFetchDataList,
  53. reqDeptTSPTaskType,
  54. reqBuildTrip,
  55. } from "../../request/api.js";
  56. import {
  57. mapState,
  58. mapMutations,
  59. } from "vuex";
  60. import {
  61. ASSOCIATION_TYPES
  62. } from '../../utils/enum.association_types.js';
  63. export default {
  64. data() {
  65. return {
  66. ASSOCIATION_TYPES,
  67. checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
  68. selectedPatient: {}, //当前选中的患者
  69. taskTypeListResource: [], //任务类型列表(请求的原始数据)
  70. taskTypeList: [], //任务类型列表
  71. pickerTitle: "", //一键建单picker的title
  72. debounceInp: null,
  73. keyword: "",
  74. patientList: [],
  75. totalNum: 0, //工单总数量
  76. idx: 0, //页码
  77. };
  78. },
  79. computed: {
  80. ...mapState("login", ["loginInfo"]),
  81. ...mapState('other', ["deptDisplay"]),
  82. },
  83. methods: {
  84. ...mapMutations('other', ['changeQucikCreateOrderType', 'clearPatientBuildData', 'changePatientBuildData']),
  85. //关闭
  86. closePicker() {
  87. this.$refs.sPicker._close();
  88. },
  89. //打开
  90. openPicker() {
  91. this.$refs.sPicker._open();
  92. },
  93. //确定:接收子组件传来的参数
  94. confirmPicker(checkedObj) {
  95. console.log(checkedObj);
  96. // 补充:清除建单数据
  97. this.clearPatientBuildData();
  98. // 2,获取buildTrip信息
  99. let postData = {
  100. "taskTypeId": checkedObj.value,
  101. "patientCode": this.selectedPatient.patientCode
  102. };
  103. uni.showLoading({
  104. mask: true,
  105. title: '加载中'
  106. })
  107. reqBuildTrip(postData).then(res => {
  108. uni.hideLoading();
  109. let taskType = this.taskTypeListResource.find(v => v.id == checkedObj.value);
  110. let patientTaskType = taskType || {};
  111. if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者其他服务业务']) {
  112. // 患者其他服务业务--无法用status判断,运输过程“默认患者所在科室”没有返回status==200,估计是后端漏掉了这种情况,如果后期后端可以返回status,则可以根据status判断。
  113. if (res.start && res.end) {
  114. if (res.status == 100013 || res.status == 100014 || res.status == 100015) {
  115. this.checkedShowMsg = res.data;
  116. //需要选择起点科室和目标科室
  117. this.changeQucikCreateOrderType({
  118. type: "patient",
  119. taskTypeId: checkedObj.value,
  120. patientTaskType,
  121. selectedPatient: this.selectedPatient,
  122. patientBuildTrip: res,
  123. });
  124. uni.navigateTo({
  125. url: "/pages/quickCreateOrder/quickCreateOrder",
  126. });
  127. } else {
  128. //无需选择科室
  129. this.checkedShowMsg = res.data;
  130. this.changePatientBuildData({
  131. key: 'dept',
  132. value: {
  133. startDept: res.start.start.list[0],
  134. endDept: res.end.end.list[0],
  135. }
  136. });
  137. this.changeQucikCreateOrderType({
  138. type: "patient",
  139. taskTypeId: checkedObj.value,
  140. patientTaskType,
  141. selectedPatient: this.selectedPatient,
  142. patientBuildTrip: res,
  143. });
  144. uni.navigateTo({
  145. url: "/pages/patientBuild/patientBuild",
  146. });
  147. }
  148. } else {
  149. this.$refs.seiminModel.show({
  150. skin: "toast",
  151. icon: "error",
  152. content: res.msg || "获取数据失败",
  153. });
  154. throw new Error(res.msg || '获取数据失败');
  155. }
  156. } else if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
  157. // 患者陪检业务
  158. if (res.status == 200) {
  159. this.checkedShowMsg = res.data;
  160. this.changePatientBuildData({
  161. key: 'dept',
  162. value: {
  163. startDept: {
  164. id: res.startDept,
  165. dept: res.startDeptName,
  166. deptalias: res.startDeptAlias
  167. }, //待改
  168. endDept: {
  169. id: res.startDept,
  170. dept: res.startDeptName,
  171. deptalias: res.startDeptAlias
  172. }, //待改
  173. }
  174. });
  175. this.changeQucikCreateOrderType({
  176. type: "patient",
  177. taskTypeId: checkedObj.value,
  178. patientTaskType,
  179. selectedPatient: this.selectedPatient,
  180. patientBuildTrip: res,
  181. });
  182. uni.navigateTo({
  183. url: "/pages/appointmentInspect/appointmentInspect",
  184. });
  185. } else {
  186. this.$refs.seiminModel.show({
  187. skin: "toast",
  188. icon: "error",
  189. content: res.msg || "获取数据失败",
  190. });
  191. throw new Error(res.msg || '获取数据失败');
  192. }
  193. }
  194. })
  195. },
  196. // 一键建单
  197. buildOrder(patient) {
  198. this.selectedPatient = patient;
  199. // 1,请求任务类型列表
  200. uni.showLoading({
  201. mask: true,
  202. title: '加载中'
  203. })
  204. reqDeptTSPTaskType().then(res => {
  205. uni.hideLoading();
  206. if (res.status == 200) {
  207. res.data = res.data || [];
  208. this.taskTypeListResource = res.data;
  209. this.taskTypeList = res.data.map((v) => ({
  210. value: v.id,
  211. label: v.taskName,
  212. }));
  213. this.pickerTitle = `您选择了<b class="green">${patient.patientName}</b>患者,请选择下方具体服务项`;
  214. this.openPicker();
  215. } else {
  216. this.$refs.seiminModel.show({
  217. skin: "toast",
  218. icon: "error",
  219. content: res.msg || "获取数据失败",
  220. });
  221. throw new Error(res.msg || "获取数据失败");
  222. }
  223. })
  224. },
  225. // 跳转患者详情
  226. toDetail(patientCode,patientName) {
  227. uni.navigateTo({
  228. url: `/pages/patientDetail/patientDetail?patientCode=${patientCode}&patientName=${patientName}`
  229. })
  230. },
  231. //监听输入
  232. inputChange(event = '', idxPlus = false) {
  233. let keyWord = event.detail ? event.detail.value : event;
  234. if (idxPlus) {
  235. //累加
  236. ++this.idx;
  237. } else {
  238. this.idx = 0;
  239. }
  240. let postData = {
  241. "idx": this.idx,
  242. "sum": 9999,
  243. "patient": {
  244. keyWord,
  245. "department": {
  246. "id": this.loginInfo.user.dept.id
  247. }
  248. }
  249. };
  250. uni.showLoading({
  251. title: "加载中",
  252. mask: true,
  253. });
  254. reqFetchDataList("nurse", "patient", postData).then((res) => {
  255. uni.hideLoading();
  256. uni.stopPullDownRefresh();
  257. if (res.status == 200) {
  258. res.list = res.list || [];
  259. if (idxPlus) {
  260. //累加
  261. this.patientList = this.patientList.concat(res.list);
  262. } else {
  263. this.patientList = res.list;
  264. }
  265. this.totalNum = res.totalNum || 0;
  266. } else {
  267. this.$refs.seiminModel.show({
  268. skin: "toast",
  269. icon: "error",
  270. content: res.msg || "获取数据失败",
  271. });
  272. throw new Error(res.msg || "获取数据失败");
  273. }
  274. });
  275. },
  276. // 查询最新列表(上拉)
  277. reachBottom() {
  278. //没有更多
  279. if (this.patientList.length == this.totalNum) {
  280. uni.showToast({
  281. icon: 'none',
  282. title: '没有更多数据了'
  283. })
  284. return;
  285. }
  286. this.inputChange(this.keyword, true);
  287. },
  288. },
  289. onReachBottom() {
  290. this.reachBottom();
  291. },
  292. onPullDownRefresh() {
  293. this.inputChange(this.keyword)
  294. },
  295. created() {
  296. this.debounceInp = debounce(this.inputChange, 500);
  297. },
  298. beforeDestroy() {
  299. this.debounceInp.cancel()
  300. },
  301. onLoad() {
  302. this.inputChange();
  303. },
  304. };
  305. </script>
  306. <style lang="scss" scoped>
  307. .patientList {
  308. padding-bottom: 108rpx;
  309. .search-box {
  310. background-color: rgb(242, 242, 242);
  311. padding: 15rpx 2.5%;
  312. position: fixed;
  313. z-index: 99;
  314. width: 100%;
  315. @include flex(space-between);
  316. .mSearch-input-box {
  317. width: 100%;
  318. }
  319. .input-box {
  320. width: 85%;
  321. flex-shrink: 1;
  322. @include flex(center, center);
  323. &>input {
  324. width: 100%;
  325. height: 60rpx;
  326. font-size: 32rpx;
  327. border: 0;
  328. border-radius: 60rpx;
  329. appearance: none;
  330. padding: 0 3%;
  331. margin: 0;
  332. background-color: #ffffff;
  333. }
  334. }
  335. .search-btn {
  336. width: 15%;
  337. margin: 0 0 0 2%;
  338. flex-shrink: 0;
  339. font-size: 28rpx;
  340. color: #fff;
  341. background: linear-gradient(to right, #ff9801, #ff570a);
  342. border-radius: 60rpx;
  343. @include flex(center, center);
  344. }
  345. }
  346. .search-keyword {
  347. padding: 88rpx 24rpx 0;
  348. // 列表项
  349. .orderList_listItem {
  350. width: 702rpx;
  351. min-height: 320rpx;
  352. background-color: #fff;
  353. position: relative;
  354. margin-top: 8rpx;
  355. border-radius: 8rpx;
  356. padding: 0 24rpx;
  357. font-size: 32rpx;
  358. @include border;
  359. @include semicircle(#F9FAFB, 82rpx);
  360. @include flex(flex-start, stretch, column);
  361. .orderList_listItem_header {
  362. height: 86rpx;
  363. @include border($directive:bottom, $style:dashed);
  364. @include flex(space-between, center);
  365. .orderList_listItem_header_title {
  366. color: #333;
  367. flex: 1;
  368. @include flex(flex-start, center);
  369. .associationType_icon {
  370. width: 48rpx;
  371. height: 48rpx;
  372. border-radius: 50%;
  373. font-size: 24rpx;
  374. margin-right: 8rpx;
  375. @include border($color:#39b199);
  376. @include flex(center, center);
  377. &.green {
  378. color: $defaultColor;
  379. border: 1px solid $defaultColor;
  380. background-color: rgba(73, 184, 86, 0.1);
  381. }
  382. &.red {
  383. color: #FF3B53;
  384. border: 1px solid #FF3B53;
  385. background-color: #FFE8EB;
  386. }
  387. }
  388. .taskNameAndWorkerName {
  389. flex: 1;
  390. @include flex;
  391. .taskName {
  392. max-width: 10em;
  393. @include clamp;
  394. }
  395. .workerName {
  396. flex: 1;
  397. @include clamp;
  398. }
  399. }
  400. }
  401. .orderList_listItem_header_more {
  402. color: #333;
  403. font-weight: bold;
  404. @include clamp;
  405. }
  406. }
  407. .orderList_listItem_item {
  408. height: 88rpx;
  409. color: #333;
  410. font-size: 30rpx;
  411. flex: 1;
  412. @include border(bottom);
  413. @include flex(flex-start, stretch, column);
  414. &:last-of-type {
  415. border-bottom: none;
  416. }
  417. .orderList_listItem_item_content {
  418. min-height: 143rpx;
  419. flex: 1;
  420. @include flex(space-between, center);
  421. .orderList_listItem_item_name {
  422. font-size: 34rpx;
  423. }
  424. .orderList_listItem_item_time {
  425. color: #333;
  426. font-size: 34rpx;
  427. font-weight: bold;
  428. }
  429. }
  430. .orderList_listItem_item_btns {
  431. position: relative;
  432. left: -24rpx;
  433. width: 698rpx;
  434. height: 88rpx;
  435. @include btn_background;
  436. @include flex;
  437. .btn {
  438. flex: 1;
  439. background-color: transparent;
  440. position: relative;
  441. @include flex(center, center);
  442. &::before {
  443. content: '';
  444. position: absolute;
  445. right: 0;
  446. top: 0;
  447. width: 1px;
  448. height: 100%;
  449. @include border(right, #fff);
  450. }
  451. &:last-of-type::before {
  452. border-right: none;
  453. }
  454. &::after {
  455. border: none;
  456. }
  457. }
  458. }
  459. }
  460. }
  461. }
  462. }
  463. </style>