index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  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 focus placeholder="请输入标本编码/检查单号/请…" :placeholder-style="placeholderStyle" confirm-type="search" />
  9. <view class="searchBtn">
  10. 搜索
  11. </view>
  12. </view>
  13. <view class="icon-saoma">
  14. <text class="pda pda-saoma"></text>
  15. </view>
  16. </view>
  17. <!-- 一键收标本 -->
  18. <view class="collect_specimens">
  19. <view class="collect_icon">
  20. </view>
  21. <view class="collect_specimensNum">
  22. <view class="urgent collect_row">
  23. 急标数量<text class="collect_num">{{urgentNum | specimenNum}}</text>
  24. </view>
  25. <view class="ordinary collect_row">
  26. 普标数量<text class="collect_num">{{ordinaryNum | specimenNum}}</text>
  27. </view>
  28. </view>
  29. <button class="collect_btn" type="default" @click="collectSpecimens">一键收标本</button>
  30. </view>
  31. <!-- 最新工单 -->
  32. <view class="newOrders">
  33. <view class="newOrders_header">
  34. <text class="newOrders_header_title">最新工单</text>
  35. <text class="newOrders_header_more">更多&gt;&gt;</text>
  36. </view>
  37. <view class="newOrders_item" v-for="newOrder in newOrderList" :key="newOrder.id">
  38. <view class="newOrders_item_time">{{newOrder.showCreateTime}}</view>
  39. <text
  40. class="newOrders_item_taskType">{{newOrder.isHalfInspect === 1 ? "半程陪检" : (newOrder.taskType&&newOrder.taskType.taskName)}}</text>
  41. <text class="newOrders_item_patientName">{{newOrder.patient&&newOrder.patient.patientName}}</text>
  42. <text class="newOrders_item_status"
  43. :class="newOrder.stateTextClass">{{newOrder.gdState&&newOrder.gdState.name}}</text>
  44. </view>
  45. </view>
  46. <!-- 快捷工单 -->
  47. <view class="quick_other">
  48. <view class="quick_other_header">
  49. <text class="quick_other_header_title">快捷工单</text>
  50. </view>
  51. <view class="quick_other_container">
  52. <view class="quick_other_container_item" v-for="quickOther in quickOtherList" :key="quickOther.id">
  53. <view class="quick_other_container_item_text">
  54. {{quickOther.taskName}}
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. <seiminFooterNav></seiminFooterNav>
  61. <seiminModel ref="seiminModel"></seiminModel>
  62. </view>
  63. </template>
  64. <script>
  65. import {
  66. mapState,
  67. mapMutations
  68. } from 'vuex';
  69. import {
  70. reqSpecimenWorkOrderMsg,
  71. reqWorkOrders,
  72. reqDeptTaskType
  73. } from '../../request/api.js';
  74. import {
  75. GDSTATE
  76. } from '../../utils/enum.gdstate.js';
  77. import {
  78. ASSOCIATION_TYPES
  79. } from '../../utils/enum.association_types.js';
  80. export default {
  81. data() {
  82. return {
  83. placeholderStyle: 'color:#999;font-size:30rpx;',
  84. urgentNum: 0, //急标数量
  85. ordinaryNum: 0, //普标数量
  86. newOrderList: [], //最新工单列表
  87. quickOtherList: [], //快捷工单列表
  88. };
  89. },
  90. computed: {
  91. ...mapState('user', ['loginInfo']),
  92. ...mapState(['isShowSeiminModel']),
  93. },
  94. methods: {
  95. ...mapMutations(['changeSeiminModel', 'changeQucikCreateOrderType']),
  96. // 获取页面数据
  97. init() {
  98. let deptId = this.loginInfo.user && this.loginInfo.user.dept.id;
  99. Promise.all([
  100. reqSpecimenWorkOrderMsg({
  101. deptId
  102. }),
  103. reqWorkOrders({
  104. "workOrder": {
  105. "createDept": deptId,
  106. "platform": 2,
  107. "searchDays": 2,
  108. },
  109. "idx": 0,
  110. "sum": 5
  111. }),
  112. reqDeptTaskType({
  113. deptId
  114. })
  115. ]).then(values => {
  116. uni.hideLoading();
  117. uni.stopPullDownRefresh();
  118. this.querySpecimenNum(values[0]);
  119. this.queryWorkOrders(values[1]);
  120. this.queryDeptTaskType(values[2]);
  121. });
  122. },
  123. // 查询急标和普标数量
  124. querySpecimenNum(res) {
  125. if (res.status == 200) {
  126. if (res.specimenCount) {
  127. this.urgentNum = res.specimenCount.urgent;
  128. }
  129. if (res.specimenCount) {
  130. this.ordinaryNum = res.specimenCount.noUrgent;
  131. }
  132. }
  133. },
  134. // 查询最新工单列表
  135. queryWorkOrders(res) {
  136. if (res.status == 200) {
  137. this.newOrderList = res.list.map(v => {
  138. if (v.gdState) {
  139. if (v.gdState.value == GDSTATE['待接单'] || v.gdState.value == GDSTATE['待抢单']) {
  140. v.stateTextClass = 'red';
  141. } else if (v.gdState.value == GDSTATE['待评价'] || v.gdState.value == GDSTATE['已完成']) {
  142. v.stateTextClass = 'green';
  143. } else {
  144. v.stateTextClass = 'yellow';
  145. }
  146. }
  147. return v;
  148. });
  149. }
  150. },
  151. // 查询快捷工单(其他临床服务任务类型)
  152. queryDeptTaskType(res) {
  153. if (res.status == 200) {
  154. this.quickOtherList = res.data.allTaskTypes.filter(v => v.associationType.value == ASSOCIATION_TYPES[
  155. '其他临床服务']);
  156. }
  157. },
  158. // 一键收取标本
  159. collectSpecimens() {
  160. uni.navigateTo({
  161. url: '/pages/quickCreateOrder/quickCreateOrder'
  162. })
  163. this.changeQucikCreateOrderType('specimen');
  164. },
  165. // 切换科室弹窗
  166. showDeptModel() {
  167. const {
  168. user //当前登录用户
  169. } = this.loginInfo;
  170. const userDept = (user && user.dept) ? user.dept.dept : '';
  171. this.$refs.seiminModel.show({
  172. content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
  173. btns: [{
  174. name: "知道了",
  175. textColor: "#49B856",
  176. flex: 2,
  177. },
  178. {
  179. name: "前往切换科室",
  180. textColor: "#666",
  181. flex: 3,
  182. click: (e) => {
  183. console.log('切换科室');
  184. }
  185. },
  186. ]
  187. });
  188. },
  189. },
  190. mounted() {
  191. if (this.isShowSeiminModel) {
  192. this.showDeptModel();
  193. this.changeSeiminModel(false);
  194. }
  195. uni.showLoading({
  196. title: '加载中',
  197. mask: true
  198. })
  199. this.init();
  200. },
  201. onPullDownRefresh() {
  202. this.init();
  203. }
  204. };
  205. </script>
  206. <style lang="scss" scoped>
  207. .index {
  208. padding-bottom: 108rpx;
  209. // 弧形背景
  210. .arc_edge {
  211. @include arc_edge;
  212. }
  213. .index_container {
  214. padding: 0 24rpx;
  215. position: relative;
  216. z-index: 2;
  217. // 搜素框
  218. .search {
  219. height: 66rpx;
  220. margin-top: -200rpx;
  221. @include flex(space-between, center);
  222. .search_wrap {
  223. width: 600rpx;
  224. height: 100%;
  225. border-radius: 33rpx;
  226. background-color: #fff;
  227. position: relative;
  228. input {
  229. height: 100%;
  230. padding-left: 33rpx;
  231. padding-right: 147rpx;
  232. }
  233. .searchBtn {
  234. position: absolute;
  235. right: 0;
  236. top: 50%;
  237. transform: translateY(-50%);
  238. line-height: 1em;
  239. color: #666;
  240. font-size: 32rpx;
  241. width: 110rpx;
  242. text-align: center;
  243. border-left: 2rpx solid #E5E9ED;
  244. padding: 6rpx 0;
  245. }
  246. }
  247. .icon-saoma {
  248. width: 66rpx;
  249. height: 66rpx;
  250. background-color: #BEE1A7;
  251. border-radius: 50%;
  252. color: $defaultColor;
  253. @include flex(center, center);
  254. }
  255. }
  256. // 一键收标本
  257. .collect_specimens {
  258. width: 702rpx;
  259. height: 176rpx;
  260. background-color: #fff;
  261. margin-top: 24rpx;
  262. border-radius: 8rpx;
  263. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  264. border: 1px solid #E5E9ED;
  265. position: relative;
  266. @include flex(center, center);
  267. @include semicircle(#fff);
  268. .collect_icon {
  269. width: 48rpx;
  270. height: 48rpx;
  271. border-radius: 50%;
  272. background-color: rgba(57, 177, 153, 0.3);
  273. border: 1px solid #39B199;
  274. font-size: 24rpx;
  275. color: #39B199;
  276. @include flex(center, center);
  277. }
  278. .collect_specimensNum {
  279. margin: 0 35rpx;
  280. width: 277rpx;
  281. font-size: 34rpx;
  282. color: #666;
  283. .collect_num {
  284. font-size: 46rpx;
  285. font-weight: 600;
  286. color: #333;
  287. margin-left: 16rpx;
  288. }
  289. .collect_row {
  290. height: 88rpx;
  291. @include flex(flex-start, center);
  292. border-bottom: 1px dashed #E5E9ED;
  293. &:last-of-type {
  294. border-bottom: none;
  295. }
  296. }
  297. }
  298. .collect_btn {
  299. margin: 0;
  300. height: 88rpx;
  301. background: linear-gradient(90deg, #74C271 0%, #39B199 100%);
  302. border-radius: 56rpx;
  303. color: #fff;
  304. font-size: 32rpx;
  305. line-height: 88rpx;
  306. }
  307. }
  308. // 最新工单
  309. .newOrders {
  310. width: 702rpx;
  311. min-height: 530rpx;
  312. background-color: #fff;
  313. margin-top: 8rpx;
  314. border-radius: 8rpx;
  315. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  316. border: 1px solid #E5E9ED;
  317. position: relative;
  318. padding: 0 15rpx;
  319. font-size: 32rpx;
  320. @include semicircle(#f9fafb, 70rpx);
  321. .newOrders_header {
  322. height: 87rpx;
  323. padding: 0 27rpx;
  324. border-bottom: 1px dashed #E5E9ED;
  325. @include flex(space-between, center);
  326. .newOrders_header_title {
  327. color: #333;
  328. }
  329. .newOrders_header_more {
  330. color: #666;
  331. }
  332. }
  333. .newOrders_item {
  334. height: 88rpx;
  335. padding: 0 27rpx;
  336. border-bottom: 1px solid #E5E9ED;
  337. color: #333;
  338. font-size: 30rpx;
  339. @include flex(center, center);
  340. &:last-of-type {
  341. border-bottom: none;
  342. }
  343. .newOrders_item_time {
  344. width: 140rpx;
  345. }
  346. .newOrders_item_taskType {
  347. flex: 1;
  348. margin-left: 16rpx;
  349. @include clamp(1);
  350. }
  351. .newOrders_item_patientName {
  352. margin-left: 16rpx;
  353. margin-right: 16rpx;
  354. width: 148rpx;
  355. @include clamp(1);
  356. }
  357. .newOrders_item_status {}
  358. }
  359. }
  360. // 快捷工单
  361. .quick_other {
  362. width: 702rpx;
  363. background-color: #fff;
  364. margin-top: 8rpx;
  365. border-radius: 8rpx;
  366. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  367. border: 1px solid #E5E9ED;
  368. position: relative;
  369. padding: 0 15rpx;
  370. font-size: 32rpx;
  371. @include semicircle(#f9fafb, 70rpx);
  372. .quick_other_header {
  373. height: 87rpx;
  374. padding: 0 27rpx;
  375. border-bottom: 1px dashed #E5E9ED;
  376. @include flex(space-between, center);
  377. .quick_other_header_title {
  378. color: #333;
  379. }
  380. }
  381. .quick_other_container {
  382. min-height: 288rpx;
  383. @include flex(flex-start, center);
  384. flex-wrap: wrap;
  385. font-size: 28rpx;
  386. .quick_other_container_item {
  387. width: 96rpx;
  388. height: 96rpx;
  389. border-radius: 8rpx;
  390. margin: 16rpx 35rpx;
  391. color: #fff;
  392. text-align: center;
  393. @include flex(center, center) .quick_other_container_item_text {
  394. @include clamp(2);
  395. }
  396. &:nth-of-type(8n+1) {
  397. background-color: #A4C4C1;
  398. }
  399. &:nth-of-type(8n+2) {
  400. background-color: #56BAB6;
  401. }
  402. &:nth-of-type(8n+3) {
  403. background-color: #39B199;
  404. }
  405. &:nth-of-type(8n+4) {
  406. background-color: #48717F;
  407. }
  408. &:nth-of-type(8n+5) {
  409. background-color: #56BAB6;
  410. }
  411. &:nth-of-type(8n+6) {
  412. background-color: #A4C4C1;
  413. }
  414. &:nth-of-type(8n+7) {
  415. background-color: #48717F;
  416. }
  417. &:nth-of-type(8n+8) {
  418. background-color: #8E9D9E;
  419. }
  420. }
  421. }
  422. }
  423. }
  424. }
  425. </style>