index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. <template>
  2. <view class="index">
  3. <view class="arc_edge"></view>
  4. <view class="index_container">
  5. <!-- 头部搜索 -->
  6. <view class="search">
  7. <view class="search_wrap">
  8. <input
  9. focus
  10. placeholder="请输入标本编码/检查单号/请…"
  11. :placeholder-style="placeholderStyle"
  12. confirm-type="search"
  13. />
  14. <view class="searchBtn"> 搜索 </view>
  15. </view>
  16. <view class="icon-saoma">
  17. <text class="pda pda-saoma"></text>
  18. </view>
  19. </view>
  20. <!-- 通告栏 -->
  21. <uni-notice-bar
  22. :speed="20"
  23. scrollable
  24. single
  25. showIcon
  26. :text="updateTipsForNurses"
  27. background-color="#fff"
  28. color="#666"
  29. >
  30. </uni-notice-bar>
  31. <!-- 一键收标本 -->
  32. <view class="collect_specimens">
  33. <view class="collect_icon"> 标 </view>
  34. <view class="collect_specimensNum">
  35. <view class="urgent collect_row">
  36. 急标数量<text class="collect_num">{{
  37. urgentNum | specimenNum
  38. }}</text>
  39. </view>
  40. <view class="ordinary collect_row">
  41. 普标数量<text class="collect_num">{{
  42. ordinaryNum | specimenNum
  43. }}</text>
  44. </view>
  45. </view>
  46. <button class="collect_btn" type="default" @click="collectSpecimens">
  47. {{ specimenButton }}
  48. </button>
  49. </view>
  50. <!-- 最新工单 -->
  51. <view class="newOrders">
  52. <view class="newOrders_header">
  53. <text class="newOrders_header_title">最新工单</text>
  54. <text class="newOrders_header_more">更多&gt;&gt;</text>
  55. </view>
  56. <view
  57. class="newOrders_item"
  58. v-for="newOrder in newOrderList"
  59. :key="newOrder.id"
  60. >
  61. <view class="newOrders_item_time">{{ newOrder.showCreateTime }}</view>
  62. <text class="newOrders_item_taskType">{{
  63. newOrder.isHalfInspect === 1
  64. ? "半程陪检"
  65. : newOrder.taskType && newOrder.taskType.taskName
  66. }}</text>
  67. <text class="newOrders_item_patientName">{{
  68. newOrder.patient && newOrder.patient.patientName
  69. }}</text>
  70. <text
  71. class="newOrders_item_status"
  72. :class="newOrder.stateTextClass"
  73. >{{ newOrder.gdState && newOrder.gdState.name }}</text
  74. >
  75. </view>
  76. </view>
  77. <!-- 快捷工单 -->
  78. <view class="quick_other">
  79. <view class="quick_other_header">
  80. <text class="quick_other_header_title">快捷工单</text>
  81. </view>
  82. <view class="quick_other_container">
  83. <view
  84. class="quick_other_container_item"
  85. v-for="quickOther in quickOtherList"
  86. :key="quickOther.id"
  87. >
  88. <view
  89. class="quick_other_container_item_text"
  90. @click="quickOrderOther(quickOther)"
  91. >
  92. {{ quickOther.taskName }}
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <seiminFooterNav></seiminFooterNav>
  99. <seiminModel ref="seiminModel"></seiminModel>
  100. <seiminPicker
  101. ref="sPicker"
  102. :title="pickerTitle"
  103. titleColor="#808080"
  104. titleFontSize="28rpx"
  105. confirmColor="#333"
  106. confirmFontSize="38rpx"
  107. confirmFontWeight="500"
  108. itemFontSize="28rpx"
  109. @onClose="closePicker"
  110. @onConfirm="confirmPicker"
  111. :pickerList="hospitalList"
  112. >
  113. </seiminPicker>
  114. </view>
  115. </template>
  116. <script>
  117. import { mapState, mapMutations } from "vuex";
  118. import {
  119. reqSpecimenWorkOrderMsg,
  120. reqDeptTaskType,
  121. reqFetchDataList,
  122. } from "../../request/api.js";
  123. import { GDSTATE } from "../../utils/enum.gdstate.js";
  124. import { ASSOCIATION_TYPES } from "../../utils/enum.association_types.js";
  125. export default {
  126. data() {
  127. return {
  128. placeholderStyle: "color:#999;font-size:30rpx;",
  129. urgentNum: 0, //急标数量
  130. ordinaryNum: 0, //普标数量
  131. newOrderList: [], //最新工单列表
  132. quickOtherList: [], //快捷工单列表
  133. hospitalList: [], //当前用户权限中的院区列表
  134. // list: [{
  135. // value: '1',
  136. // label: '身份证'
  137. // },
  138. // {
  139. // value: '2',
  140. // label: '驾驶证'
  141. // },
  142. // {
  143. // value: '3',
  144. // label: '护照'
  145. // },
  146. // {
  147. // value: '4',
  148. // label: '其他证件'
  149. // },
  150. // ],
  151. pickerTitle: "", //选择院区picker的title
  152. };
  153. },
  154. computed: {
  155. ...mapState("user", ["loginInfo"]),
  156. ...mapState([
  157. "isShowSeiminModel",
  158. "deptDisplay",
  159. "specimenButton",
  160. "updateTipsForNurses",
  161. ]),
  162. },
  163. methods: {
  164. ...mapMutations([
  165. "changeSeiminModel",
  166. "changeQucikCreateOrderType",
  167. "changeDeptDisplay",
  168. "changeUpdateTipsForNurses",
  169. "changeSpecimenButton",
  170. "changeNurseDeptSwitchTip",
  171. "changeSearchDeptParams",
  172. ]),
  173. // 获取页面数据
  174. init() {
  175. Promise.all([
  176. this.querySpecimenNumRequest(), //查询急标和普标数量
  177. this.queryWorkOrdersRequest(), //查询最新工单列表
  178. this.queryDeptTaskTypeRequest(), //查询快捷工单(其他临床服务任务类型)
  179. this.queryDeptDisplayRequest(), //护士端科室显示选择(名称还是别名)
  180. this.queryUpdateTipsForNursesRequest(), //护士端更新提示
  181. this.querySpecimenButtonRequest(), //标本按钮文字
  182. this.queryNurseDeptSwitchTipRequest(), //护士科室切换提示自动关闭设置
  183. ]).then((values) => {
  184. uni.hideLoading();
  185. uni.stopPullDownRefresh();
  186. this.querySpecimenNumResponse(values[0]);
  187. this.queryWorkOrdersResponse(values[1]);
  188. this.queryDeptTaskTypeResponse(values[2]);
  189. this.queryDeptDisplayResponse(values[3]);
  190. this.queryUpdateTipsForNursesResponse(values[4]);
  191. this.querySpecimenButtonResponse(values[5]);
  192. this.queryNurseDeptSwitchTipResponse(values[6]);
  193. if (this.isShowSeiminModel) {
  194. this.showDeptModel();
  195. this.changeSeiminModel(false);
  196. }
  197. });
  198. },
  199. // 查询急标和普标数量
  200. querySpecimenNumRequest() {
  201. return reqSpecimenWorkOrderMsg({
  202. deptId: this.loginInfo.user.dept.id,
  203. });
  204. },
  205. // 查询急标和普标数量
  206. querySpecimenNumResponse(res) {
  207. if (res.status == 200) {
  208. if (res.specimenCount) {
  209. this.urgentNum = res.specimenCount.urgent;
  210. }
  211. if (res.specimenCount) {
  212. this.ordinaryNum = res.specimenCount.noUrgent;
  213. }
  214. }
  215. },
  216. // 查询最新工单列表
  217. queryWorkOrdersRequest() {
  218. return reqFetchDataList("nurse", "workOrder", {
  219. workOrder: {
  220. createDept: this.loginInfo.user.dept.id,
  221. platform: 2,
  222. searchDays: 2,
  223. },
  224. idx: 0,
  225. sum: 5,
  226. });
  227. },
  228. // 查询最新工单列表
  229. queryWorkOrdersResponse(res) {
  230. if (res.status == 200) {
  231. this.newOrderList = res.list.map((v) => {
  232. if (v.gdState) {
  233. if (
  234. v.gdState.value == GDSTATE["待接单"] ||
  235. v.gdState.value == GDSTATE["待抢单"]
  236. ) {
  237. v.stateTextClass = "red";
  238. } else if (
  239. v.gdState.value == GDSTATE["待评价"] ||
  240. v.gdState.value == GDSTATE["已完成"]
  241. ) {
  242. v.stateTextClass = "green";
  243. } else {
  244. v.stateTextClass = "yellow";
  245. }
  246. }
  247. return v;
  248. });
  249. }
  250. },
  251. // 查询快捷工单(其他临床服务任务类型)
  252. queryDeptTaskTypeRequest() {
  253. return reqDeptTaskType({
  254. deptId: this.loginInfo.user.dept.id,
  255. });
  256. },
  257. // 查询快捷工单(其他临床服务任务类型)
  258. queryDeptTaskTypeResponse(res) {
  259. if (res.status == 200) {
  260. this.quickOtherList = res.data.allTaskTypes.filter(
  261. (v) => v.associationType.value == ASSOCIATION_TYPES["其他临床服务"]
  262. );
  263. let specimenTaskType = res.data.allTaskTypes.find(
  264. (v) => v.associationType.value == ASSOCIATION_TYPES["临时标本业务"]
  265. );
  266. this.specimenTaskTypeId = specimenTaskType && specimenTaskType.id;
  267. }
  268. },
  269. // 护士端科室显示选择(名称还是别名)
  270. queryDeptDisplayRequest() {
  271. return reqFetchDataList("simple/data", "systemConfiguration", {
  272. idx: 0,
  273. sum: 1,
  274. systemConfiguration: {
  275. keyconfig: "deptDisplay",
  276. },
  277. });
  278. },
  279. // 护士端科室显示选择(名称还是别名)
  280. queryDeptDisplayResponse(res) {
  281. if (res.status == 200) {
  282. this.changeDeptDisplay(res.list[0].valueconfig);
  283. }
  284. },
  285. // 护士端更新提示
  286. queryUpdateTipsForNursesRequest() {
  287. return reqFetchDataList("simple/data", "systemConfiguration", {
  288. idx: 0,
  289. sum: 1,
  290. systemConfiguration: {
  291. keyconfig: "updateTipsForNurses",
  292. },
  293. });
  294. },
  295. // 护士端更新提示
  296. queryUpdateTipsForNursesResponse(res) {
  297. if (res.status == 200) {
  298. this.changeUpdateTipsForNurses(res.list[0].valueconfig);
  299. }
  300. },
  301. // 标本按钮文字
  302. querySpecimenButtonRequest() {
  303. return reqFetchDataList("simple/data", "systemConfiguration", {
  304. idx: 0,
  305. sum: 1,
  306. systemConfiguration: {
  307. keyconfig: "specimenButton",
  308. },
  309. });
  310. },
  311. // 标本按钮文字
  312. querySpecimenButtonResponse(res) {
  313. if (res.status == 200) {
  314. this.changeSpecimenButton(res.list[0].valueconfig);
  315. }
  316. },
  317. // 护士科室切换提示自动关闭设置
  318. queryNurseDeptSwitchTipRequest() {
  319. return reqFetchDataList("simple/data", "systemConfiguration", {
  320. idx: 0,
  321. sum: 1,
  322. systemConfiguration: {
  323. keyconfig: "nurseDeptSwitchTip",
  324. },
  325. });
  326. },
  327. // 护士科室切换提示自动关闭设置
  328. queryNurseDeptSwitchTipResponse(res) {
  329. if (res.status == 200) {
  330. this.changeNurseDeptSwitchTip(res.list[0].valueconfig);
  331. }
  332. },
  333. // 一键收取标本
  334. collectSpecimens() {
  335. uni.navigateTo({
  336. url: "/pages/quickCreateOrder/quickCreateOrder",
  337. });
  338. this.changeQucikCreateOrderType({
  339. type: "specimen",
  340. taskTypeId: this.specimenTaskTypeId,
  341. });
  342. },
  343. //其他临床服务快捷建单
  344. quickOrderOther(quickOther) {
  345. uni.navigateTo({
  346. url: "/pages/quickCreateOrder/quickCreateOrder",
  347. });
  348. this.changeQucikCreateOrderType({
  349. type: "other",
  350. taskTypeId: quickOther.id,
  351. });
  352. },
  353. // 切换科室弹窗
  354. showDeptModel() {
  355. const {
  356. user, //当前登录用户
  357. } = this.loginInfo;
  358. const userDept =
  359. user && user.dept
  360. ? this.deptDisplay == 1
  361. ? user.dept.dept
  362. : user.dept.deptalias
  363. : "";
  364. this.$refs.seiminModel.showChangeDept({
  365. content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
  366. btns: [
  367. {
  368. name: "知道了",
  369. textColor: "#49B856",
  370. flex: 2,
  371. },
  372. {
  373. name: "前往切换科室",
  374. textColor: "#666",
  375. flex: 3,
  376. click: (e) => {
  377. this.$refs.seiminModel.close();
  378. this.openPicker();
  379. },
  380. },
  381. ],
  382. });
  383. },
  384. //关闭
  385. closePicker() {
  386. this.$refs.sPicker._close();
  387. },
  388. //打开
  389. openPicker() {
  390. this.$refs.sPicker._open();
  391. },
  392. //确定:接收子组件传来的参数
  393. confirmPicker(checkedObj) {
  394. this.changeSearchDeptParams({
  395. backUrl: "/pages/index/index", //返回的url
  396. type: "changeDept_index", //首页切换科室
  397. hospital: checkedObj, //先选择院区
  398. });
  399. uni.navigateTo({
  400. url: "/pages/searchDept/searchDept",
  401. });
  402. },
  403. },
  404. mounted() {
  405. //选择院区picker的title
  406. this.pickerTitle = `您当前所属科室为<b class="green">${this.loginInfo.user.dept.dept}</b>,请您先选择院区`;
  407. //权限中的院区修改数据结构
  408. this.hospitalList = this.loginInfo.infoPermission.hospitals.map((v) => ({
  409. value: v.id,
  410. label: v.hosName,
  411. }));
  412. uni.showLoading({
  413. title: "加载中",
  414. mask: true,
  415. });
  416. this.init();
  417. },
  418. onPullDownRefresh() {
  419. this.init();
  420. },
  421. };
  422. </script>
  423. <style lang="scss" scoped>
  424. .index {
  425. padding-bottom: 108rpx;
  426. // 弧形背景
  427. .arc_edge {
  428. @include arc_edge;
  429. }
  430. .index_container {
  431. padding: 0 24rpx;
  432. position: relative;
  433. z-index: 2;
  434. // 搜素框
  435. .search {
  436. height: 66rpx;
  437. margin-top: -200rpx;
  438. @include flex(space-between, center);
  439. .search_wrap {
  440. width: 600rpx;
  441. height: 100%;
  442. border-radius: 33rpx;
  443. background-color: #fff;
  444. position: relative;
  445. input {
  446. height: 100%;
  447. padding-left: 33rpx;
  448. padding-right: 147rpx;
  449. }
  450. .searchBtn {
  451. position: absolute;
  452. right: 0;
  453. top: 50%;
  454. transform: translateY(-50%);
  455. line-height: 1em;
  456. color: #666;
  457. font-size: 32rpx;
  458. width: 110rpx;
  459. text-align: center;
  460. border-left: 2rpx solid #e5e9ed;
  461. padding: 6rpx 0;
  462. }
  463. }
  464. .icon-saoma {
  465. width: 66rpx;
  466. height: 66rpx;
  467. background-color: #bee1a7;
  468. border-radius: 50%;
  469. color: $defaultColor;
  470. @include flex(center, center);
  471. }
  472. }
  473. // 通告栏
  474. .uni-noticebar {
  475. height: 88rpx;
  476. margin-top: 24rpx;
  477. margin-bottom: 0;
  478. border: 1px solid #e5e9ed;
  479. }
  480. // 一键收标本
  481. .collect_specimens {
  482. width: 702rpx;
  483. height: 176rpx;
  484. background-color: #fff;
  485. margin-top: 8rpx;
  486. border-radius: 8rpx;
  487. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  488. border: 1px solid #e5e9ed;
  489. position: relative;
  490. @include flex(center, center);
  491. @include semicircle(#f9fafb);
  492. .collect_icon {
  493. width: 48rpx;
  494. height: 48rpx;
  495. border-radius: 50%;
  496. background-color: rgba(57, 177, 153, 0.3);
  497. border: 1px solid #39b199;
  498. font-size: 24rpx;
  499. color: #39b199;
  500. @include flex(center, center);
  501. }
  502. .collect_specimensNum {
  503. margin: 0 35rpx;
  504. width: 277rpx;
  505. font-size: 34rpx;
  506. color: #666;
  507. .collect_num {
  508. font-size: 46rpx;
  509. font-weight: 600;
  510. color: #333;
  511. margin-left: 16rpx;
  512. }
  513. .collect_row {
  514. height: 88rpx;
  515. @include flex(flex-start, center);
  516. border-bottom: 1px dashed #e5e9ed;
  517. &:last-of-type {
  518. border-bottom: none;
  519. }
  520. }
  521. }
  522. .collect_btn {
  523. margin: 0;
  524. width: 224rpx;
  525. height: 88rpx;
  526. background: linear-gradient(90deg, #74c271 0%, #39b199 100%);
  527. border-radius: 56rpx;
  528. color: #fff;
  529. font-size: 32rpx;
  530. line-height: 88rpx;
  531. }
  532. }
  533. // 最新工单
  534. .newOrders {
  535. width: 702rpx;
  536. min-height: 530rpx;
  537. background-color: #fff;
  538. margin-top: 8rpx;
  539. border-radius: 8rpx;
  540. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  541. border: 1px solid #e5e9ed;
  542. position: relative;
  543. padding: 0 15rpx;
  544. font-size: 32rpx;
  545. @include semicircle(#f9fafb, 70rpx);
  546. .newOrders_header {
  547. height: 87rpx;
  548. padding: 0 27rpx;
  549. border-bottom: 1px dashed #e5e9ed;
  550. @include flex(space-between, center);
  551. .newOrders_header_title {
  552. color: #333;
  553. }
  554. .newOrders_header_more {
  555. color: #666;
  556. }
  557. }
  558. .newOrders_item {
  559. height: 88rpx;
  560. padding: 0 27rpx;
  561. border-bottom: 1px solid #e5e9ed;
  562. color: #333;
  563. font-size: 30rpx;
  564. @include flex(center, center);
  565. &:last-of-type {
  566. border-bottom: none;
  567. }
  568. .newOrders_item_time {
  569. width: 140rpx;
  570. }
  571. .newOrders_item_taskType {
  572. flex: 1;
  573. margin-left: 16rpx;
  574. @include clamp(1);
  575. }
  576. .newOrders_item_patientName {
  577. margin-left: 16rpx;
  578. margin-right: 16rpx;
  579. width: 148rpx;
  580. @include clamp(1);
  581. }
  582. .newOrders_item_status {
  583. }
  584. }
  585. }
  586. // 快捷工单
  587. .quick_other {
  588. width: 702rpx;
  589. background-color: #fff;
  590. margin-top: 8rpx;
  591. border-radius: 8rpx;
  592. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  593. border: 1px solid #e5e9ed;
  594. position: relative;
  595. padding: 0 15rpx;
  596. font-size: 32rpx;
  597. @include semicircle(#f9fafb, 70rpx);
  598. .quick_other_header {
  599. height: 87rpx;
  600. padding: 0 27rpx;
  601. border-bottom: 1px dashed #e5e9ed;
  602. @include flex(space-between, center);
  603. .quick_other_header_title {
  604. color: #333;
  605. }
  606. }
  607. .quick_other_container {
  608. min-height: 288rpx;
  609. @include flex(flex-start, center);
  610. flex-wrap: wrap;
  611. font-size: 28rpx;
  612. .quick_other_container_item {
  613. width: 96rpx;
  614. height: 96rpx;
  615. border-radius: 8rpx;
  616. margin: 16rpx 35rpx;
  617. color: #fff;
  618. text-align: center;
  619. @include flex(center, center);
  620. .quick_other_container_item_text {
  621. @include clamp(2);
  622. }
  623. &:nth-of-type(8n + 1) {
  624. background-color: #a4c4c1;
  625. }
  626. &:nth-of-type(8n + 2) {
  627. background-color: #56bab6;
  628. }
  629. &:nth-of-type(8n + 3) {
  630. background-color: #39b199;
  631. }
  632. &:nth-of-type(8n + 4) {
  633. background-color: #48717f;
  634. }
  635. &:nth-of-type(8n + 5) {
  636. background-color: #56bab6;
  637. }
  638. &:nth-of-type(8n + 6) {
  639. background-color: #a4c4c1;
  640. }
  641. &:nth-of-type(8n + 7) {
  642. background-color: #48717f;
  643. }
  644. &:nth-of-type(8n + 8) {
  645. background-color: #8e9d9e;
  646. }
  647. }
  648. }
  649. }
  650. }
  651. }
  652. </style>