patientList.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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)">患者详情</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="28rpx" @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. export default {
  61. data() {
  62. return {
  63. checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
  64. selectedPatient: {}, //当前选中的患者
  65. taskTypeList: [], //任务类型列表
  66. pickerTitle: "", //一键建单picker的title
  67. debounceInp: null,
  68. keyword: "",
  69. patientList: [],
  70. totalNum: 0, //工单总数量
  71. idx: 0, //页码
  72. };
  73. },
  74. computed: {
  75. ...mapState("login", ["loginInfo"]),
  76. ...mapState('other', ["deptDisplay"]),
  77. },
  78. methods: {
  79. ...mapMutations('other', ['changeQucikCreateOrderType']),
  80. //关闭
  81. closePicker() {
  82. this.$refs.sPicker._close();
  83. },
  84. //打开
  85. openPicker() {
  86. this.$refs.sPicker._open();
  87. },
  88. //确定:接收子组件传来的参数
  89. confirmPicker(checkedObj) {
  90. console.log(checkedObj);
  91. // 2,获取buildTrip信息
  92. let postData = {
  93. "taskTypeId": checkedObj.value,
  94. "patientCode": this.selectedPatient.patientCode
  95. };
  96. uni.showLoading({
  97. mask: true,
  98. title: '加载中'
  99. })
  100. reqBuildTrip(postData).then(res => {
  101. uni.hideLoading();
  102. let taskType = this.taskTypeList.find(v => v.value == checkedObj.value);
  103. let patientTaskTypeName = taskType ? taskType.label : '';
  104. if (res.status == 100015) {
  105. this.checkedShowMsg = res.data;
  106. //需要选择起点科室和目标科室
  107. uni.navigateTo({
  108. url: "/pages/quickCreateOrder/quickCreateOrder",
  109. });
  110. this.changeQucikCreateOrderType({
  111. type: "patient",
  112. taskTypeId: checkedObj.value,
  113. patientTaskTypeName,
  114. patientBuildTrip: res,
  115. });
  116. } else if (res.status == 100013) {
  117. this.checkedShowMsg = res.data;
  118. //需要选择起点科室
  119. uni.navigateTo({
  120. url: "/pages/quickCreateOrder/quickCreateOrder",
  121. });
  122. this.changeQucikCreateOrderType({
  123. type: "patient",
  124. taskTypeId: checkedObj.value,
  125. patientTaskTypeName,
  126. patientBuildTrip: res,
  127. });
  128. } else if (res.status == 100014) {
  129. this.checkedShowMsg = res.data;
  130. //需要选择目标科室
  131. uni.navigateTo({
  132. url: "/pages/quickCreateOrder/quickCreateOrder",
  133. });
  134. this.changeQucikCreateOrderType({
  135. type: "patient",
  136. taskTypeId: checkedObj.value,
  137. patientTaskTypeName,
  138. patientBuildTrip: res,
  139. });
  140. } else {
  141. //无需选择科室
  142. this.checkedShowMsg = res.data;
  143. this.changeQucikCreateOrderType({
  144. type: "patient",
  145. taskTypeId: checkedObj.value,
  146. patientTaskTypeName,
  147. patientBuildTrip: res,
  148. });
  149. }
  150. })
  151. },
  152. // 一键建单
  153. buildOrder(patient) {
  154. this.selectedPatient = patient;
  155. // 1,请求任务类型列表
  156. uni.showLoading({
  157. mask: true,
  158. title: '加载中'
  159. })
  160. reqDeptTSPTaskType().then(res => {
  161. uni.hideLoading();
  162. if (res.status == 200) {
  163. res.data = res.data || [];
  164. this.taskTypeList = res.data.map((v) => ({
  165. value: v.id,
  166. label: v.taskName,
  167. }));
  168. this.pickerTitle = `您选择了<b class="green">${patient.patientName}</b>患者,请选择下方具体服务项`;
  169. this.openPicker();
  170. } else {
  171. this.$refs.seiminModel.show({
  172. skin: "toast",
  173. icon: "error",
  174. content: res.msg || "获取数据失败",
  175. });
  176. throw new Error(res.msg || "获取数据失败");
  177. }
  178. })
  179. },
  180. // 跳转患者详情
  181. toDetail(patientCode) {
  182. uni.navigateTo({
  183. url: `/pages/patientDetail/patientDetail?patientCode=${patientCode}`
  184. })
  185. },
  186. //监听输入
  187. inputChange(event = '', idxPlus = false) {
  188. let keyWord = event.detail ? event.detail.value : event;
  189. if (idxPlus) {
  190. //累加
  191. ++this.idx;
  192. } else {
  193. this.idx = 0;
  194. }
  195. let postData = {
  196. "idx": this.idx,
  197. "sum": 9999,
  198. "patient": {
  199. keyWord,
  200. "department": {
  201. "id": this.loginInfo.user.dept.id
  202. }
  203. }
  204. };
  205. uni.showLoading({
  206. title: "加载中",
  207. mask: true,
  208. });
  209. reqFetchDataList("nurse", "patient", postData).then((res) => {
  210. uni.hideLoading();
  211. if (res.status == 200) {
  212. res.list = res.list || [];
  213. if (idxPlus) {
  214. //累加
  215. this.patientList = this.patientList.concat(res.list);
  216. } else {
  217. this.patientList = res.list;
  218. }
  219. this.totalNum = res.totalNum || 0;
  220. } else {
  221. this.$refs.seiminModel.show({
  222. skin: "toast",
  223. icon: "error",
  224. content: res.msg || "获取数据失败",
  225. });
  226. throw new Error(res.msg || "获取数据失败");
  227. }
  228. });
  229. },
  230. // 查询最新列表(上拉)
  231. reachBottom() {
  232. //没有更多
  233. if (this.patientList.length == this.totalNum) {
  234. uni.showToast({
  235. icon: 'none',
  236. title: '没有更多数据了'
  237. })
  238. return;
  239. }
  240. this.inputChange(this.keyword, true);
  241. },
  242. },
  243. onReachBottom() {
  244. this.reachBottom();
  245. },
  246. created() {
  247. this.debounceInp = debounce(this.inputChange, 500);
  248. },
  249. beforeDestroy() {
  250. this.debounceInp.cancel()
  251. },
  252. onLoad() {
  253. this.inputChange('');
  254. },
  255. };
  256. </script>
  257. <style lang="scss" scoped>
  258. .patientList {
  259. padding-bottom: 108rpx;
  260. .search-box {
  261. background-color: rgb(242, 242, 242);
  262. padding: 15rpx 2.5%;
  263. position: fixed;
  264. z-index: 99;
  265. width: 100%;
  266. @include flex(space-between);
  267. .mSearch-input-box {
  268. width: 100%;
  269. }
  270. .input-box {
  271. width: 85%;
  272. flex-shrink: 1;
  273. @include flex(center, center);
  274. &>input {
  275. width: 100%;
  276. height: 60rpx;
  277. font-size: 32rpx;
  278. border: 0;
  279. border-radius: 60rpx;
  280. appearance: none;
  281. padding: 0 3%;
  282. margin: 0;
  283. background-color: #ffffff;
  284. }
  285. }
  286. .search-btn {
  287. width: 15%;
  288. margin: 0 0 0 2%;
  289. flex-shrink: 0;
  290. font-size: 28rpx;
  291. color: #fff;
  292. background: linear-gradient(to right, #ff9801, #ff570a);
  293. border-radius: 60rpx;
  294. @include flex(center, center);
  295. }
  296. }
  297. .search-keyword {
  298. padding: 88rpx 24rpx 0;
  299. // 列表项
  300. .orderList_listItem {
  301. width: 702rpx;
  302. min-height: 320rpx;
  303. background-color: #fff;
  304. position: relative;
  305. margin-top: 8rpx;
  306. border-radius: 8rpx;
  307. padding: 0 24rpx;
  308. font-size: 32rpx;
  309. @include border;
  310. @include semicircle(#F9FAFB, 82rpx);
  311. @include flex(flex-start, stretch, column);
  312. .orderList_listItem_header {
  313. height: 86rpx;
  314. @include border($directive:bottom, $style:dashed);
  315. @include flex(space-between, center);
  316. .orderList_listItem_header_title {
  317. color: #333;
  318. flex: 1;
  319. @include flex(flex-start, center);
  320. .associationType_icon {
  321. width: 48rpx;
  322. height: 48rpx;
  323. border-radius: 50%;
  324. font-size: 24rpx;
  325. margin-right: 8rpx;
  326. @include border($color:#39b199);
  327. @include flex(center, center);
  328. &.green {
  329. color: $defaultColor;
  330. border: 1px solid $defaultColor;
  331. background-color: rgba(73, 184, 86, 0.1);
  332. }
  333. &.red {
  334. color: #FF3B53;
  335. border: 1px solid #FF3B53;
  336. background-color: #FFE8EB;
  337. }
  338. }
  339. .taskNameAndWorkerName {
  340. flex: 1;
  341. @include flex;
  342. .taskName {
  343. max-width: 10em;
  344. @include clamp;
  345. }
  346. .workerName {
  347. flex: 1;
  348. @include clamp;
  349. }
  350. }
  351. }
  352. .orderList_listItem_header_more {
  353. color: #333;
  354. font-weight: bold;
  355. @include clamp;
  356. }
  357. }
  358. .orderList_listItem_item {
  359. height: 88rpx;
  360. color: #333;
  361. font-size: 30rpx;
  362. flex: 1;
  363. @include border(bottom);
  364. @include flex(flex-start, stretch, column);
  365. &:last-of-type {
  366. border-bottom: none;
  367. }
  368. .orderList_listItem_item_content {
  369. min-height: 143rpx;
  370. flex: 1;
  371. @include flex(space-between, center);
  372. .orderList_listItem_item_name {
  373. font-size: 34rpx;
  374. }
  375. .orderList_listItem_item_time {
  376. color: #333;
  377. font-size: 34rpx;
  378. font-weight: bold;
  379. }
  380. }
  381. .orderList_listItem_item_btns {
  382. position: relative;
  383. left: -24rpx;
  384. width: 698rpx;
  385. height: 88rpx;
  386. @include btn_background;
  387. @include flex;
  388. .btn {
  389. flex: 1;
  390. background-color: transparent;
  391. position: relative;
  392. @include flex(center, center);
  393. &::before {
  394. content: '';
  395. position: absolute;
  396. right: 0;
  397. top: 0;
  398. width: 1px;
  399. height: 100%;
  400. @include border(right, #fff);
  401. }
  402. &:last-of-type::before {
  403. border-right: none;
  404. }
  405. &::after {
  406. border: none;
  407. }
  408. }
  409. }
  410. }
  411. }
  412. }
  413. }
  414. </style>