123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571 |
- <template>
- <view class="index">
- <view class="arc_edge"></view>
- <view class="index_container">
- <!-- 头部搜索 -->
- <view class="search">
- <view class="search_wrap">
- <input focus placeholder="请输入标本编码/检查单号/请…" :placeholder-style="placeholderStyle" confirm-type="search" />
- <view class="searchBtn">
- 搜索
- </view>
- </view>
- <view class="icon-saoma">
- <text class="pda pda-saoma"></text>
- </view>
- </view>
- <!-- 通告栏 -->
- <uni-notice-bar :speed="20" scrollable single showIcon :text="updateTipsForNurses" background-color="#fff"
- color="#666">
- </uni-notice-bar>
- <!-- 一键收标本 -->
- <view class="collect_specimens">
- <view class="collect_icon">
- 标
- </view>
- <view class="collect_specimensNum">
- <view class="urgent collect_row">
- 急标数量<text class="collect_num">{{urgentNum | specimenNum}}</text>
- </view>
- <view class="ordinary collect_row">
- 普标数量<text class="collect_num">{{ordinaryNum | specimenNum}}</text>
- </view>
- </view>
- <button class="collect_btn" type="default" @click="collectSpecimens">{{specimenButton}}</button>
- </view>
- <!-- 最新工单 -->
- <view class="newOrders">
- <view class="newOrders_header">
- <text class="newOrders_header_title">最新工单</text>
- <text class="newOrders_header_more">更多>></text>
- </view>
- <view class="newOrders_item" v-for="newOrder in newOrderList" :key="newOrder.id">
- <view class="newOrders_item_time">{{newOrder.showCreateTime}}</view>
- <text
- class="newOrders_item_taskType">{{newOrder.isHalfInspect === 1 ? "半程陪检" : (newOrder.taskType&&newOrder.taskType.taskName)}}</text>
- <text class="newOrders_item_patientName">{{newOrder.patient&&newOrder.patient.patientName}}</text>
- <text class="newOrders_item_status"
- :class="newOrder.stateTextClass">{{newOrder.gdState&&newOrder.gdState.name}}</text>
- </view>
- </view>
- <!-- 快捷工单 -->
- <view class="quick_other">
- <view class="quick_other_header">
- <text class="quick_other_header_title">快捷工单</text>
- </view>
- <view class="quick_other_container">
- <view class="quick_other_container_item" v-for="quickOther in quickOtherList" :key="quickOther.id">
- <view class="quick_other_container_item_text">
- {{quickOther.taskName}}
- </view>
- </view>
- </view>
- </view>
- </view>
- <seiminFooterNav></seiminFooterNav>
- <seiminModel ref="seiminModel"></seiminModel>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex';
- import {
- reqSpecimenWorkOrderMsg,
- reqDeptTaskType,
- reqFetchDataList
- } from '../../request/api.js';
- import {
- GDSTATE
- } from '../../utils/enum.gdstate.js';
- import {
- ASSOCIATION_TYPES
- } from '../../utils/enum.association_types.js';
- export default {
- data() {
- return {
- placeholderStyle: 'color:#999;font-size:30rpx;',
- urgentNum: 0, //急标数量
- ordinaryNum: 0, //普标数量
- newOrderList: [], //最新工单列表
- quickOtherList: [], //快捷工单列表
- };
- },
- computed: {
- ...mapState('user', ['loginInfo', 'loginInfoUserDeptId']),
- ...mapState(['isShowSeiminModel', 'deptDisplay', 'specimenButton', 'updateTipsForNurses']),
- },
- methods: {
- ...mapMutations(['changeSeiminModel', 'changeQucikCreateOrderType', 'changeDeptDisplay',
- 'changeUpdateTipsForNurses', 'changeSpecimenButton', 'changeNurseDeptSwitchTip'
- ]),
- // 获取页面数据
- init() {
- Promise.all([
- this.querySpecimenNumRequest(), //查询急标和普标数量
- this.queryWorkOrdersRequest(), //查询最新工单列表
- this.queryDeptTaskTypeRequest(), //查询快捷工单(其他临床服务任务类型)
- this.queryDeptDisplayRequest(), //护士端科室显示选择(名称还是别名)
- this.queryUpdateTipsForNursesRequest(), //护士端更新提示
- this.querySpecimenButtonRequest(), //标本按钮文字
- this.queryNurseDeptSwitchTipRequest(), //护士科室切换提示自动关闭设置
- ]).then(values => {
- uni.hideLoading();
- uni.stopPullDownRefresh();
- this.querySpecimenNumResponse(values[0]);
- this.queryWorkOrdersResponse(values[1]);
- this.queryDeptTaskTypeResponse(values[2]);
- this.queryDeptDisplayResponse(values[3]);
- this.queryUpdateTipsForNursesResponse(values[4]);
- this.querySpecimenButtonResponse(values[5]);
- this.queryNurseDeptSwitchTipResponse(values[6]);
- if (this.isShowSeiminModel) {
- this.showDeptModel();
- this.changeSeiminModel(false);
- }
- });
- },
- // 查询急标和普标数量
- querySpecimenNumRequest() {
- return reqSpecimenWorkOrderMsg({
- deptId: this.loginInfoUserDeptId
- })
- },
- // 查询急标和普标数量
- querySpecimenNumResponse(res) {
- if (res.status == 200) {
- if (res.specimenCount) {
- this.urgentNum = res.specimenCount.urgent;
- }
- if (res.specimenCount) {
- this.ordinaryNum = res.specimenCount.noUrgent;
- }
- }
- },
- // 查询最新工单列表
- queryWorkOrdersRequest() {
- return reqFetchDataList('nurse', 'workOrder', {
- "workOrder": {
- "createDept": this.loginInfoUserDeptId,
- "platform": 2,
- "searchDays": 2,
- },
- "idx": 0,
- "sum": 5
- })
- },
- // 查询最新工单列表
- queryWorkOrdersResponse(res) {
- if (res.status == 200) {
- this.newOrderList = res.list.map(v => {
- if (v.gdState) {
- if (v.gdState.value == GDSTATE['待接单'] || v.gdState.value == GDSTATE['待抢单']) {
- v.stateTextClass = 'red';
- } else if (v.gdState.value == GDSTATE['待评价'] || v.gdState.value == GDSTATE['已完成']) {
- v.stateTextClass = 'green';
- } else {
- v.stateTextClass = 'yellow';
- }
- }
- return v;
- });
- }
- },
- // 查询快捷工单(其他临床服务任务类型)
- queryDeptTaskTypeRequest() {
- return reqDeptTaskType({
- deptId: this.loginInfoUserDeptId
- })
- },
- // 查询快捷工单(其他临床服务任务类型)
- queryDeptTaskTypeResponse(res) {
- if (res.status == 200) {
- this.quickOtherList = res.data.allTaskTypes.filter(v => v.associationType.value == ASSOCIATION_TYPES[
- '其他临床服务']);
- let specimenTaskType = res.data.allTaskTypes.find(v => v.associationType.value == ASSOCIATION_TYPES[
- '临时标本业务']);
- this.specimenTaskTypeId = specimenTaskType && specimenTaskType.id;
- }
- },
- // 护士端科室显示选择(名称还是别名)
- queryDeptDisplayRequest() {
- return reqFetchDataList('simple/data', 'systemConfiguration', {
- "idx": 0,
- "sum": 1,
- "systemConfiguration": {
- "keyconfig": "deptDisplay"
- }
- })
- },
- // 护士端科室显示选择(名称还是别名)
- queryDeptDisplayResponse(res) {
- if (res.status == 200) {
- this.changeDeptDisplay(res.list[0].valueconfig);
- }
- },
- // 护士端更新提示
- queryUpdateTipsForNursesRequest() {
- return reqFetchDataList('simple/data', 'systemConfiguration', {
- "idx": 0,
- "sum": 1,
- "systemConfiguration": {
- "keyconfig": "updateTipsForNurses"
- }
- })
- },
- // 护士端更新提示
- queryUpdateTipsForNursesResponse(res) {
- if (res.status == 200) {
- this.changeUpdateTipsForNurses(res.list[0].valueconfig);
- }
- },
- // 标本按钮文字
- querySpecimenButtonRequest() {
- return reqFetchDataList('simple/data', 'systemConfiguration', {
- "idx": 0,
- "sum": 1,
- "systemConfiguration": {
- "keyconfig": "specimenButton"
- }
- })
- },
- // 标本按钮文字
- querySpecimenButtonResponse(res) {
- if (res.status == 200) {
- this.changeSpecimenButton(res.list[0].valueconfig);
- }
- },
- // 护士科室切换提示自动关闭设置
- queryNurseDeptSwitchTipRequest() {
- return reqFetchDataList('simple/data', 'systemConfiguration', {
- "idx": 0,
- "sum": 1,
- "systemConfiguration": {
- "keyconfig": "nurseDeptSwitchTip"
- }
- })
- },
- // 护士科室切换提示自动关闭设置
- queryNurseDeptSwitchTipResponse(res) {
- if (res.status == 200) {
- this.changeNurseDeptSwitchTip(res.list[0].valueconfig);
- }
- },
- // 一键收取标本
- collectSpecimens() {
- uni.navigateTo({
- url: '/pages/quickCreateOrder/quickCreateOrder'
- })
- this.changeQucikCreateOrderType({
- type: 'specimen',
- taskTypeId: this.specimenTaskTypeId
- });
- },
- // 切换科室弹窗
- showDeptModel() {
- const {
- user //当前登录用户
- } = this.loginInfo;
- const userDept = (user && user.dept) ? (this.deptDisplay == 1 ? user.dept.dept : user.dept.deptalias) : '';
- this.$refs.seiminModel.showChangeDept({
- content: `您当前所属科室为<text class="green">${userDept}</text>,如与您实际科室不符点击<text class="red">切换科室</text>。`,
- btns: [{
- name: "知道了",
- textColor: "#49B856",
- flex: 2,
- },
- {
- name: "前往切换科室",
- textColor: "#666",
- flex: 3,
- click: (e) => {
- console.log('切换科室');
- }
- },
- ]
- });
- },
- },
- mounted() {
- uni.showLoading({
- title: '加载中',
- mask: true
- })
- this.init();
- },
- onPullDownRefresh() {
- this.init();
- }
- };
- </script>
- <style lang="scss" scoped>
- .index {
- padding-bottom: 108rpx;
- // 弧形背景
- .arc_edge {
- @include arc_edge;
- }
- .index_container {
- padding: 0 24rpx;
- position: relative;
- z-index: 2;
- // 搜素框
- .search {
- height: 66rpx;
- margin-top: -200rpx;
- @include flex(space-between, center);
- .search_wrap {
- width: 600rpx;
- height: 100%;
- border-radius: 33rpx;
- background-color: #fff;
- position: relative;
- input {
- height: 100%;
- padding-left: 33rpx;
- padding-right: 147rpx;
- }
- .searchBtn {
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- line-height: 1em;
- color: #666;
- font-size: 32rpx;
- width: 110rpx;
- text-align: center;
- border-left: 2rpx solid #E5E9ED;
- padding: 6rpx 0;
- }
- }
- .icon-saoma {
- width: 66rpx;
- height: 66rpx;
- background-color: #BEE1A7;
- border-radius: 50%;
- color: $defaultColor;
- @include flex(center, center);
- }
- }
- // 通告栏
- .uni-noticebar {
- height: 88rpx;
- margin-top: 24rpx;
- margin-bottom: 0;
- border: 1px solid #E5E9ED;
- }
- // 一键收标本
- .collect_specimens {
- width: 702rpx;
- height: 176rpx;
- background-color: #fff;
- margin-top: 8rpx;
- border-radius: 8rpx;
- // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
- border: 1px solid #E5E9ED;
- position: relative;
- @include flex(center, center);
- @include semicircle(#f9fafb);
- .collect_icon {
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- background-color: rgba(57, 177, 153, 0.3);
- border: 1px solid #39B199;
- font-size: 24rpx;
- color: #39B199;
- @include flex(center, center);
- }
- .collect_specimensNum {
- margin: 0 35rpx;
- width: 277rpx;
- font-size: 34rpx;
- color: #666;
- .collect_num {
- font-size: 46rpx;
- font-weight: 600;
- color: #333;
- margin-left: 16rpx;
- }
- .collect_row {
- height: 88rpx;
- @include flex(flex-start, center);
- border-bottom: 1px dashed #E5E9ED;
- &:last-of-type {
- border-bottom: none;
- }
- }
- }
- .collect_btn {
- margin: 0;
- width: 224rpx;
- height: 88rpx;
- background: linear-gradient(90deg, #74C271 0%, #39B199 100%);
- border-radius: 56rpx;
- color: #fff;
- font-size: 32rpx;
- line-height: 88rpx;
- }
- }
- // 最新工单
- .newOrders {
- width: 702rpx;
- min-height: 530rpx;
- background-color: #fff;
- margin-top: 8rpx;
- border-radius: 8rpx;
- // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
- border: 1px solid #E5E9ED;
- position: relative;
- padding: 0 15rpx;
- font-size: 32rpx;
- @include semicircle(#f9fafb, 70rpx);
- .newOrders_header {
- height: 87rpx;
- padding: 0 27rpx;
- border-bottom: 1px dashed #E5E9ED;
- @include flex(space-between, center);
- .newOrders_header_title {
- color: #333;
- }
- .newOrders_header_more {
- color: #666;
- }
- }
- .newOrders_item {
- height: 88rpx;
- padding: 0 27rpx;
- border-bottom: 1px solid #E5E9ED;
- color: #333;
- font-size: 30rpx;
- @include flex(center, center);
- &:last-of-type {
- border-bottom: none;
- }
- .newOrders_item_time {
- width: 140rpx;
- }
- .newOrders_item_taskType {
- flex: 1;
- margin-left: 16rpx;
- @include clamp(1);
- }
- .newOrders_item_patientName {
- margin-left: 16rpx;
- margin-right: 16rpx;
- width: 148rpx;
- @include clamp(1);
- }
- .newOrders_item_status {}
- }
- }
- // 快捷工单
- .quick_other {
- width: 702rpx;
- background-color: #fff;
- margin-top: 8rpx;
- border-radius: 8rpx;
- // box-shadow: 0 0 7rpx 0 rgba(73, 184, 86, 0.09);
- border: 1px solid #E5E9ED;
- position: relative;
- padding: 0 15rpx;
- font-size: 32rpx;
- @include semicircle(#f9fafb, 70rpx);
- .quick_other_header {
- height: 87rpx;
- padding: 0 27rpx;
- border-bottom: 1px dashed #E5E9ED;
- @include flex(space-between, center);
- .quick_other_header_title {
- color: #333;
- }
- }
- .quick_other_container {
- min-height: 288rpx;
- @include flex(flex-start, center);
- flex-wrap: wrap;
- font-size: 28rpx;
- .quick_other_container_item {
- width: 96rpx;
- height: 96rpx;
- border-radius: 8rpx;
- margin: 16rpx 35rpx;
- color: #fff;
- text-align: center;
- @include flex(center, center) .quick_other_container_item_text {
- @include clamp(2);
- }
- &:nth-of-type(8n+1) {
- background-color: #A4C4C1;
- }
- &:nth-of-type(8n+2) {
- background-color: #56BAB6;
- }
- &:nth-of-type(8n+3) {
- background-color: #39B199;
- }
- &:nth-of-type(8n+4) {
- background-color: #48717F;
- }
- &:nth-of-type(8n+5) {
- background-color: #56BAB6;
- }
- &:nth-of-type(8n+6) {
- background-color: #A4C4C1;
- }
- &:nth-of-type(8n+7) {
- background-color: #48717F;
- }
- &:nth-of-type(8n+8) {
- background-color: #8E9D9E;
- }
- }
- }
- }
- }
- }
- </style>
|