index.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924
  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="isFocus" @blur="blur" placeholder="请输入标本编码/检查单号/患…" :placeholder-style="placeholderStyle"
  9. confirm-type="search" v-model="searchText" :adjust-position="false" />
  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. <seiminScan></seiminScan>
  87. </view>
  88. </template>
  89. <script>
  90. import config from "../../request/config.js";
  91. import {
  92. backPress,
  93. } from '../../utils/index.js';
  94. import {
  95. mapState,
  96. mapMutations,
  97. mapActions
  98. } from "vuex";
  99. import {
  100. reqSpecimenWorkOrderMsg,
  101. reqDeptTaskType,
  102. reqFetchDataList,
  103. } from "../../request/api.js";
  104. import {
  105. GDSTATE
  106. } from "../../utils/enum.gdstate.js";
  107. import {
  108. ASSOCIATION_TYPES
  109. } from "../../utils/enum.association_types.js";
  110. export default {
  111. onBackPress() {
  112. backPress();
  113. },
  114. onShow() {
  115. this.flag = true;
  116. this.searchText = '';
  117. uni.$off('scancodedate');
  118. uni.$on('scancodedate', data => {
  119. let code = data.code || '';
  120. // 过滤
  121. if (code.startsWith('2#')) {
  122. code = code.slice(2);
  123. }
  124. uni.navigateTo({
  125. url: `/pages/search/search?txt=${code}`,
  126. })
  127. })
  128. },
  129. watch: {
  130. // 首页搜索内容
  131. searchText(newVal) {
  132. if (newVal && this.flag) {
  133. this.flag = false;
  134. uni.navigateTo({
  135. url: `/pages/search/search?txt=${newVal}`,
  136. })
  137. }
  138. },
  139. },
  140. data() {
  141. return {
  142. isFocus: false,
  143. reFresh: '',
  144. openSpecimen: false, //标本的开通权限
  145. searchText: '', //首页搜索内容
  146. placeholderStyle: "color:#999;font-size:30rpx;line-height:66rpx;",
  147. urgentNum: 0, //急标数量
  148. ordinaryNum: 0, //普标数量
  149. newOrderList: [], //最新工单列表
  150. quickOtherList: [], //快捷工单列表
  151. hospitalList: [], //当前用户权限中的院区列表
  152. pickerTitle: "", //选择院区picker的title
  153. specimenTaskTypeId: undefined, //标本任务类型id
  154. flag: true, //是否可以跳转
  155. updateTipsForNurses: '', //护士端更新提示
  156. };
  157. },
  158. computed: {
  159. ...mapState("login", ["loginInfo"]),
  160. ...mapState('other', [
  161. "isShowSeiminModel",
  162. "deptDisplay",
  163. "specimenButton",
  164. ]),
  165. },
  166. methods: {
  167. ...mapMutations('other', [
  168. "changeSeiminModel",
  169. "changeQucikCreateOrderType",
  170. "changeDeptDisplay",
  171. "changeSpecimenButton",
  172. "changeNurseDeptSwitchTip",
  173. "changeSearchDeptParams",
  174. ]),
  175. ...mapActions('system', ["vxSystem"]),
  176. blur() {
  177. this.isFocus = false;
  178. },
  179. // 前往标本列表
  180. gotoSpecimenList(type) {
  181. uni.navigateTo({
  182. url: `/pages/specimenList/specimenList?urgent=${type==='urgent'?1:0}`
  183. })
  184. },
  185. // 前往工单详情
  186. toDetail(id) {
  187. uni.navigateTo({
  188. url: `/pages/orderDetail/orderDetail?id=${id}`
  189. })
  190. },
  191. // 跳转到工单列表页面
  192. goToMore() {
  193. uni.navigateTo({
  194. url: '/pages/orderList/orderList'
  195. })
  196. },
  197. // 获取页面数据
  198. init() {
  199. uni.showLoading({
  200. title: "加载中",
  201. });
  202. Promise.all([
  203. this.querySpecimenNumRequest(), //查询急标和普标数量
  204. this.queryWorkOrdersRequest(), //查询最新工单列表
  205. this.queryDeptTaskTypeRequest(), //查询快捷工单(其他临床服务任务类型)
  206. this.queryDeptDisplayRequest(), //护士端科室显示选择(名称还是别名)
  207. this.queryUpdateTipsForNursesRequest(), //护士端更新提示
  208. this.querySpecimenButtonRequest(), //标本按钮文字
  209. this.queryNurseDeptSwitchTipRequest(), //护士科室切换提示自动关闭设置
  210. ]).then((values) => {
  211. uni.hideLoading();
  212. uni.stopPullDownRefresh();
  213. this.querySpecimenNumResponse(values[0]);
  214. this.queryWorkOrdersResponse(values[1]);
  215. this.queryDeptTaskTypeResponse(values[2]);
  216. this.queryDeptDisplayResponse(values[3]);
  217. this.queryUpdateTipsForNursesResponse(values[4]);
  218. this.querySpecimenButtonResponse(values[5]);
  219. this.queryNurseDeptSwitchTipResponse(values[6]);
  220. if (this.isShowSeiminModel) {
  221. // 检测更新
  222. this.checkUpdate();
  223. }
  224. });
  225. },
  226. // 检测更新
  227. checkUpdate() {
  228. uni.showLoading({
  229. mask: true,
  230. title: '加载中'
  231. })
  232. let postData = {
  233. "idx": 0,
  234. "sum": 1,
  235. "systemConfiguration": {
  236. "keyconfig": "pdaVersion"
  237. }
  238. };
  239. reqFetchDataList('simple/data', 'systemConfiguration', postData)
  240. .then((data) => {
  241. uni.hideLoading();
  242. if (data.status == 200) {
  243. const version = data.list[0].valueconfig;
  244. // #ifdef APP-PLUS
  245. plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
  246. console.log(wgtinfo.version); //应用版本号
  247. if (wgtinfo.version === version) {
  248. this.showDeptModel();
  249. this.changeSeiminModel(false);
  250. } else {
  251. this.downloadUrl(`${config.pdaDownloadUrl}/pda-v${version}.apk`);
  252. }
  253. })
  254. // #endif
  255. } else {
  256. this.$refs.seiminModel.show({
  257. skin: "toast",
  258. icon: "error",
  259. content: data.error || "获取版本失败",
  260. });
  261. }
  262. });
  263. },
  264. // 下载更新
  265. downloadUrl(Url = '') {
  266. uni.showLoading({
  267. title: '更新中……',
  268. mask: true,
  269. })
  270. const downloadTask = uni.downloadFile({ //执行下载
  271. url: Url, //下载地址
  272. timeout: 1000 * 30, //30秒超时时间
  273. success: downloadResult => { //下载成功
  274. console.log(downloadResult)
  275. uni.hideLoading();
  276. if (downloadResult.statusCode == 200) {
  277. plus.runtime.install( //安装软件
  278. downloadResult.tempFilePath, {
  279. force: true
  280. },
  281. function(res) {
  282. plus.runtime.restart();
  283. }
  284. );
  285. } else {
  286. this.$refs.seiminModel.show({
  287. skin: "toast",
  288. icon: "error",
  289. content: "下载失败",
  290. });
  291. }
  292. },
  293. fail: err => {
  294. uni.hideLoading();
  295. this.$refs.seiminModel.show({
  296. skin: "toast",
  297. icon: "error",
  298. content: "更新失败",
  299. });
  300. console.log(err)
  301. },
  302. });
  303. },
  304. // 查询急标和普标数量
  305. querySpecimenNumRequest() {
  306. if (this.openSpecimen) {
  307. return reqSpecimenWorkOrderMsg({
  308. deptId: this.loginInfo.user.dept.id,
  309. });
  310. } else {
  311. return Promise.resolve();
  312. }
  313. },
  314. // 查询急标和普标数量
  315. querySpecimenNumResponse(res) {
  316. if (!this.openSpecimen) {
  317. return;
  318. }
  319. if (res.status == 200) {
  320. if (res.specimenCount) {
  321. this.urgentNum = res.specimenCount.urgent;
  322. }
  323. if (res.specimenCount) {
  324. this.ordinaryNum = res.specimenCount.noUrgent;
  325. }
  326. } else {
  327. this.$refs.seiminModel.show({
  328. skin: "toast",
  329. icon: "error",
  330. content: res.msg || "获取数据失败",
  331. });
  332. throw new Error(res.msg || '获取数据失败');
  333. }
  334. },
  335. // 查询最新工单列表
  336. queryWorkOrdersRequest() {
  337. return reqFetchDataList("nurse", "workOrder", {
  338. workOrder: {
  339. createDept: this.loginInfo.user.dept.id,
  340. platform: 2,
  341. searchDays: 2,
  342. },
  343. idx: 0,
  344. sum: 5,
  345. });
  346. },
  347. // 查询最新工单列表
  348. queryWorkOrdersResponse(res) {
  349. if (res.status == 200) {
  350. res.list = res.list || [];
  351. this.newOrderList = res.list.map((v) => {
  352. if (v.gdState) {
  353. if (
  354. v.gdState.value == GDSTATE["待接单"] ||
  355. v.gdState.value == GDSTATE["待抢单"]
  356. ) {
  357. v.stateTextClass = "red";
  358. } else if (
  359. v.gdState.value == GDSTATE["待评价"] ||
  360. v.gdState.value == GDSTATE["已完成"]
  361. ) {
  362. v.stateTextClass = "green";
  363. } else {
  364. v.stateTextClass = "yellow";
  365. }
  366. }
  367. return v;
  368. });
  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. queryDeptTaskTypeRequest() {
  380. return reqDeptTaskType({
  381. deptId: this.loginInfo.user.dept.id,
  382. });
  383. },
  384. // 查询快捷工单(其他临床服务,标本)
  385. queryDeptTaskTypeResponse(res) {
  386. if (res.status == 200) {
  387. res.data = res.data || {};
  388. res.data.allTaskTypes = res.data.allTaskTypes || [];
  389. this.openSpecimen = res.data.openSpecimen;
  390. this.quickOtherList = res.data.allTaskTypes.filter(
  391. (v) => v.associationType ? v.associationType.value == ASSOCIATION_TYPES["其他临床服务"] : false
  392. );
  393. let specimenTaskType = res.data.allTaskTypes.find(
  394. (v) => v.associationType ? v.associationType.value == ASSOCIATION_TYPES["临时标本业务"] : false
  395. );
  396. this.specimenTaskTypeId = specimenTaskType && specimenTaskType.id;
  397. } else {
  398. this.$refs.seiminModel.show({
  399. skin: "toast",
  400. icon: "error",
  401. content: res.msg || "获取数据失败",
  402. });
  403. throw new Error(res.msg || '获取数据失败');
  404. }
  405. },
  406. // 护士端科室显示选择(名称还是别名)
  407. queryDeptDisplayRequest() {
  408. return this.vxSystem({
  409. idx: 0,
  410. sum: 1,
  411. systemConfiguration: {
  412. keyconfig: "deptDisplay",
  413. },
  414. });
  415. },
  416. // 护士端科室显示选择(名称还是别名)
  417. queryDeptDisplayResponse(res) {
  418. if (res.status == 200) {
  419. res.list = res.list || [];
  420. res.list[0] = res.list[0] || {};
  421. if (!res.list[0].id) {
  422. this.$refs.seiminModel.show({
  423. skin: "toast",
  424. icon: "error",
  425. content: "无法获取到【护士端科室显示选择】配置,请前往配置",
  426. });
  427. throw new Error('无法获取到【护士端科室显示选择】配置,请前往配置');
  428. }
  429. this.changeDeptDisplay(res.list[0].valueconfig);
  430. } else {
  431. this.$refs.seiminModel.show({
  432. skin: "toast",
  433. icon: "error",
  434. content: res.msg || "无法获取到【护士端科室显示选择】配置,请前往配置",
  435. });
  436. throw new Error(res.msg || '无法获取到【护士端科室显示选择】配置,请前往配置');
  437. }
  438. },
  439. // 护士端更新提示
  440. queryUpdateTipsForNursesRequest() {
  441. return this.vxSystem({
  442. idx: 0,
  443. sum: 1,
  444. systemConfiguration: {
  445. keyconfig: "updateTipsForNurses",
  446. },
  447. });
  448. },
  449. // 护士端更新提示
  450. queryUpdateTipsForNursesResponse(res) {
  451. if (res.status == 200) {
  452. res.list = res.list || [];
  453. res.list[0] = res.list[0] || {};
  454. if (!res.list[0].id) {
  455. this.$refs.seiminModel.show({
  456. skin: "toast",
  457. icon: "error",
  458. content: "无法获取到【护士端更新提示】配置,请前往配置",
  459. });
  460. throw new Error('无法获取到【护士端更新提示】配置,请前往配置');
  461. }
  462. this.updateTipsForNurses = res.list[0].valueconfig;
  463. } else {
  464. this.$refs.seiminModel.show({
  465. skin: "toast",
  466. icon: "error",
  467. content: res.msg || "无法获取到【护士端更新提示】配置,请前往配置",
  468. });
  469. throw new Error(res.msg || '无法获取到【护士端更新提示】配置,请前往配置');
  470. }
  471. },
  472. // 标本按钮文字
  473. querySpecimenButtonRequest() {
  474. return this.vxSystem({
  475. idx: 0,
  476. sum: 1,
  477. systemConfiguration: {
  478. keyconfig: "specimenButton",
  479. },
  480. });
  481. },
  482. // 标本按钮文字
  483. querySpecimenButtonResponse(res) {
  484. if (res.status == 200) {
  485. res.list = res.list || [];
  486. res.list[0] = res.list[0] || {};
  487. if (!res.list[0].id) {
  488. this.$refs.seiminModel.show({
  489. skin: "toast",
  490. icon: "error",
  491. content: "无法获取到【标本按钮文字】配置,请前往配置",
  492. });
  493. throw new Error('无法获取到【标本按钮文字】配置,请前往配置');
  494. }
  495. this.changeSpecimenButton(res.list[0].valueconfig);
  496. } else {
  497. this.$refs.seiminModel.show({
  498. skin: "toast",
  499. icon: "error",
  500. content: res.msg || "无法获取到【标本按钮文字】配置,请前往配置",
  501. });
  502. throw new Error(res.msg || '无法获取到【标本按钮文字】配置,请前往配置');
  503. }
  504. },
  505. // 护士科室切换提示自动关闭设置
  506. queryNurseDeptSwitchTipRequest() {
  507. return this.vxSystem({
  508. idx: 0,
  509. sum: 1,
  510. systemConfiguration: {
  511. keyconfig: "nurseDeptSwitchTip",
  512. },
  513. });
  514. },
  515. // 护士科室切换提示自动关闭设置
  516. queryNurseDeptSwitchTipResponse(res) {
  517. if (res.status == 200) {
  518. res.list = res.list || [];
  519. res.list[0] = res.list[0] || {};
  520. if (!res.list[0].id) {
  521. this.$refs.seiminModel.show({
  522. skin: "toast",
  523. icon: "error",
  524. content: "无法获取到【护士科室切换提示自动关闭设置】配置,请前往配置",
  525. });
  526. throw new Error('无法获取到【护士科室切换提示自动关闭设置】配置,请前往配置');
  527. }
  528. this.changeNurseDeptSwitchTip(res.list[0].valueconfig);
  529. } else {
  530. this.$refs.seiminModel.show({
  531. skin: "toast",
  532. icon: "error",
  533. content: res.msg || "无法获取到【护士科室切换提示自动关闭设置】配置,请前往配置",
  534. });
  535. throw new Error(res.msg || '无法获取到【护士科室切换提示自动关闭设置】配置,请前往配置');
  536. }
  537. },
  538. // 一键收取标本
  539. collectSpecimens() {
  540. if (!this.specimenTaskTypeId) {
  541. this.$refs.seiminModel.show({
  542. skin: "toast",
  543. icon: "error",
  544. content: "无法获取到临时标本业务",
  545. });
  546. throw new Error('无法获取到标本任务类型id');
  547. }
  548. this.changeQucikCreateOrderType({
  549. type: "specimen",
  550. taskTypeId: this.specimenTaskTypeId,
  551. });
  552. uni.navigateTo({
  553. url: "/pages/quickCreateOrder/quickCreateOrder",
  554. });
  555. },
  556. //其他临床服务快捷建单
  557. quickOrderOther(quickOther) {
  558. this.changeQucikCreateOrderType({
  559. type: "other",
  560. taskTypeId: quickOther.id,
  561. });
  562. uni.navigateTo({
  563. url: "/pages/quickCreateOrder/quickCreateOrder",
  564. });
  565. },
  566. // 切换科室弹窗
  567. showDeptModel() {
  568. const {
  569. user, //当前登录用户
  570. } = this.loginInfo;
  571. const userDept =
  572. user && user.dept ?
  573. this.deptDisplay == 1 ?
  574. user.dept.dept :
  575. user.dept.deptalias :
  576. "";
  577. this.$refs.seiminModel.showChangeDept({
  578. content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
  579. btns: [{
  580. name: "知道了",
  581. textColor: "#49B856",
  582. flex: 2,
  583. click: () => {
  584. this.$refs.seiminModel.close();
  585. }
  586. },
  587. {
  588. name: "前往切换科室",
  589. textColor: "#666",
  590. flex: 3,
  591. click: (e) => {
  592. this.$refs.seiminModel.close();
  593. this.openPicker();
  594. },
  595. },
  596. ],
  597. });
  598. },
  599. //关闭
  600. closePicker() {
  601. this.$refs.sPicker._close();
  602. },
  603. //打开
  604. openPicker() {
  605. this.$refs.sPicker._open();
  606. let index = this.hospitalList.findIndex(v => v.value == this.loginInfo.user.currentHospital.id);
  607. this.$refs.sPicker._changeValue(index);
  608. },
  609. //确定:接收子组件传来的参数
  610. confirmPicker(checkedObj) {
  611. this.changeSearchDeptParams({
  612. backUrl: "/pages/index/index", //返回的url
  613. type: "changeDept_index", //首页切换科室
  614. hospital: checkedObj, //先选择院区
  615. });
  616. uni.navigateTo({
  617. url: "/pages/searchDept/searchDept",
  618. });
  619. },
  620. },
  621. mounted() {
  622. //选择院区picker的title
  623. this.pickerTitle = `您当前所属科室为<b class="green">${this.loginInfo.user.dept.dept}</b>,请您先选择院区`;
  624. //权限中的院区修改数据结构
  625. this.hospitalList = this.loginInfo.infoPermission.hospitals.map((v) => ({
  626. value: v.id,
  627. label: v.hosName,
  628. }));
  629. this.init();
  630. },
  631. onPullDownRefresh() {
  632. this.init();
  633. },
  634. };
  635. </script>
  636. <style lang="scss" scoped>
  637. .index {
  638. padding-bottom: 108rpx;
  639. // 弧形背景
  640. .arc_edge {
  641. @include arc_edge(220rpx);
  642. }
  643. .index_container {
  644. padding: 0 24rpx;
  645. position: relative;
  646. z-index: 2;
  647. // 搜素框
  648. .search {
  649. height: 66rpx;
  650. margin-top: -200rpx;
  651. @include flex(space-between, center);
  652. .search_wrap {
  653. width: 600rpx;
  654. height: 100%;
  655. border-radius: 33rpx;
  656. background-color: #fff;
  657. position: relative;
  658. input {
  659. height: 100%;
  660. padding-left: 33rpx;
  661. padding-right: 147rpx;
  662. }
  663. .searchBtn {
  664. position: absolute;
  665. right: 0;
  666. top: 50%;
  667. transform: translateY(-50%);
  668. line-height: 1em;
  669. color: #666;
  670. font-size: 32rpx;
  671. width: 110rpx;
  672. text-align: center;
  673. padding: 6rpx 0;
  674. @include border(left);
  675. }
  676. }
  677. .icon-saoma {
  678. width: 66rpx;
  679. height: 66rpx;
  680. background-color: #bee1a7;
  681. border-radius: 50%;
  682. color: $defaultColor;
  683. @include flex(center, center);
  684. }
  685. }
  686. // 通告栏
  687. .uni-noticebar {
  688. height: 88rpx;
  689. margin-top: 24rpx;
  690. margin-bottom: 0;
  691. @include border;
  692. }
  693. // 一键收标本
  694. .collect_specimens {
  695. width: 702rpx;
  696. height: 176rpx;
  697. background-color: #fff;
  698. margin-top: 8rpx;
  699. border-radius: 8rpx;
  700. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  701. position: relative;
  702. @include border;
  703. @include flex(center, center);
  704. @include semicircle(#f9fafb);
  705. .collect_icon {
  706. width: 48rpx;
  707. height: 48rpx;
  708. border-radius: 50%;
  709. background-color: rgba(57, 177, 153, 0.3);
  710. font-size: 24rpx;
  711. color: #39b199;
  712. @include border($color:#39b199);
  713. @include flex(center, center);
  714. }
  715. .collect_specimensNum {
  716. margin: 0 35rpx;
  717. width: 277rpx;
  718. font-size: 34rpx;
  719. color: #666;
  720. .collect_num {
  721. font-size: 46rpx;
  722. font-weight: 600;
  723. color: #333;
  724. margin-left: 16rpx;
  725. }
  726. .collect_row {
  727. height: 88rpx;
  728. @include border($directive:bottom, $style:dashed);
  729. @include flex(flex-start, center);
  730. &:last-of-type {
  731. border-bottom: none;
  732. }
  733. }
  734. }
  735. .collect_btn {
  736. margin: 0;
  737. width: 224rpx;
  738. height: 88rpx;
  739. background: linear-gradient(90deg, #74c271 0%, #39b199 100%);
  740. border-radius: 56rpx;
  741. color: #fff;
  742. font-size: 32rpx;
  743. line-height: 88rpx;
  744. @include clamp;
  745. &::after {
  746. border: none;
  747. }
  748. }
  749. }
  750. // 最新工单
  751. .newOrders {
  752. width: 702rpx;
  753. min-height: 530rpx;
  754. background-color: #fff;
  755. margin-top: 8rpx;
  756. border-radius: 8rpx;
  757. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  758. position: relative;
  759. padding: 0 15rpx;
  760. font-size: 32rpx;
  761. @include border;
  762. @include semicircle(#f9fafb, 70rpx);
  763. .newOrders_header {
  764. height: 87rpx;
  765. padding: 0 27rpx;
  766. @include border($directive:bottom, $style:dashed);
  767. @include flex(space-between, center);
  768. .newOrders_header_title {
  769. color: #333;
  770. }
  771. .newOrders_header_more {
  772. color: #666;
  773. }
  774. }
  775. .newOrders_item {
  776. height: 88rpx;
  777. padding: 0 27rpx;
  778. color: #333;
  779. font-size: 30rpx;
  780. position: relative;
  781. @include border(bottom);
  782. @include flex(center, center);
  783. .ji,
  784. .jiaji {
  785. width: 60rpx;
  786. position: absolute;
  787. right: 0;
  788. top: 0;
  789. }
  790. &:last-of-type {
  791. border-bottom: none;
  792. }
  793. .newOrders_item_time {
  794. width: 88rpx;
  795. text-align: center;
  796. }
  797. .newOrders_item_taskType {
  798. flex: 1;
  799. margin-left: 16rpx;
  800. @include clamp(1);
  801. }
  802. .newOrders_item_patientName {
  803. margin-left: 16rpx;
  804. margin-right: 16rpx;
  805. width: 148rpx;
  806. @include clamp(1);
  807. }
  808. .newOrders_item_status {
  809. width: 4em;
  810. }
  811. }
  812. }
  813. // 快捷工单
  814. .quick_other {
  815. width: 702rpx;
  816. background-color: #fff;
  817. margin-top: 8rpx;
  818. border-radius: 8rpx;
  819. // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
  820. position: relative;
  821. padding: 0 15rpx;
  822. font-size: 32rpx;
  823. @include border;
  824. @include semicircle(#f9fafb, 70rpx);
  825. .quick_other_header {
  826. height: 87rpx;
  827. padding: 0 27rpx;
  828. @include border($directive:bottom, $style:dashed);
  829. @include flex(space-between, center);
  830. .quick_other_header_title {
  831. color: #333;
  832. }
  833. }
  834. .quick_other_container {
  835. min-height: 288rpx;
  836. @include flex(flex-start, center);
  837. flex-wrap: wrap;
  838. font-size: 28rpx;
  839. .quick_other_container_item {
  840. width: 96rpx;
  841. height: 96rpx;
  842. border-radius: 8rpx;
  843. margin: 16rpx 35rpx;
  844. color: #fff;
  845. text-align: center;
  846. @include flex(center, center);
  847. .quick_other_container_item_text {
  848. @include clamp(2);
  849. }
  850. &:nth-of-type(8n + 1) {
  851. background-color: #a4c4c1;
  852. }
  853. &:nth-of-type(8n + 2) {
  854. background-color: #56bab6;
  855. }
  856. &:nth-of-type(8n + 3) {
  857. background-color: #39b199;
  858. }
  859. &:nth-of-type(8n + 4) {
  860. background-color: #48717f;
  861. }
  862. &:nth-of-type(8n + 5) {
  863. background-color: #56bab6;
  864. }
  865. &:nth-of-type(8n + 6) {
  866. background-color: #a4c4c1;
  867. }
  868. &:nth-of-type(8n + 7) {
  869. background-color: #48717f;
  870. }
  871. &:nth-of-type(8n + 8) {
  872. background-color: #8e9d9e;
  873. }
  874. }
  875. }
  876. }
  877. }
  878. }
  879. </style>