index.vue 25 KB

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