index.vue 24 KB

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