index.vue 24 KB

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