123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <template>
- <div>
- <!-- <van-row class="top_row">
- <van-col :span="14">-->
- <div class="top_row">
- <!-- <div class="head">
- <img :src="$store.getters.user.org.org_logo" alt />
- </div>-->
- <div class="floatLeft">
- <span class="title">{{ $store.getters.user.org.org_short_name }}</span>
- <router-link to="/add_urgent_schedule">
- <p class="order">临时排班</p>
- </router-link>
- </div>
- <!-- </van-col> -->
- <!-- <van-col :span="6">
- <div class="department">
- <ul>
- <li style="position: relative;" :class="index == 0? 'active':'' " @click="ClickTab(0)">
- {{'候诊区'}}
- <span class="redpoint" v-if="un_read_wait_num">{{un_read_wait_num > 99 ? un_read_wait_num+'+':un_read_wait_num}}</span>
- </li>
- <li style="position: relative;" :class="index == 1? 'active':'' " @click="ClickTab(1)">
- {{'透析区'}}
- <span class="redpoint" v-if="un_read_dialysis_num">{{un_read_dialysis_num > 99 ? un_read_dialysis_num+'+':un_read_dialysis_num}}</span>
- </li>
- </ul>
- </div>
- </van-col>-->
- <!-- <van-col :span="10"> -->
- <!-- <router-link to="/add_urgent_schedule">
- <van-button size="small" type="info" class="add_schedule_btn">临时排班</van-button>
- </router-link>-->
- <!-- <div class="search">
- <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
- <i class="iconfont" slot="left-icon"></i>
- <van-button
- slot="button"
- size="small"
- type="info"
- style="border: none;"
- @click="searchWithKeyword"
- >搜索</van-button>
- </van-field>
- </div>-->
- <!-- </van-col>
- </van-row>-->
- <div class="newSearch">
- <!-- <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
- <i class="iconfont" slot="left-icon"></i>
- <van-button
- slot="button"
- size="small"
- type="info"
- style="border: none;"
- @click="searchWithKeyword"
- >搜索</van-button>
- </van-field>-->
- <el-input
- class="newInput"
- prefix-icon="el-icon-search"
- v-model="search_input"
- ref="search_field"
- placeholder="透析号/姓名"
- ></el-input>
- <p class="searchBtn" @click="searchWithKeyword">搜索</p>
- </div>
- <div class="box">
- <div class="newDepartment">
- <ul>
- <li
- style="position: relative;"
- :class="index == 0 ? 'active' : ''"
- @click="ClickTab(0)"
- >
- {{ "候诊区" }}
- <span class="redpoint" v-if="un_read_wait_num">
- {{
- un_read_wait_num > 99
- ? un_read_wait_num + "+"
- : un_read_wait_num
- }}
- </span>
- </li>
- <li
- style="position: relative;"
- :class="index == 1 ? 'active' : ''"
- @click="ClickTab(1)"
- >
- {{ "透析区" }}
- <span class="redpoint" v-if="un_read_dialysis_num">
- {{
- un_read_dialysis_num > 99
- ? un_read_dialysis_num + "+"
- : un_read_dialysis_num
- }}
- </span>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <!-- <div class="top">
- <div class="hospital">
- <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
- </div>
- <div class="department">
- <ul>
- <li v-for="(item,i) in ['候诊室','透析区']" :key="i" :class="index == i? 'active':'' " @click="ClickTab(i)" >{{item}}</li>
- </ul>
- </div>
- <div class="search">
- <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" style="background-color: #ebf1f7; height: 0.6rem; line-height: 0.6rem; padding: 0 0 0 10px; border-radius: 30px;">
- <i class="iconfont" slot="left-icon"></i>
- <van-button slot="button" size="small" type="info" style="border: none;" @click="searchWithKeyword">搜索</van-button>
- </van-field>
- </div>
- <van-button size="small" type="info">临时排班</van-button>
- </div>-->
- <div class="area">
- <waiting-area v-show="index == 0" title="候诊区" :search_keyword="search_keyword"></waiting-area>
- <dialysis-area
- v-show="index == 1"
- title="透析区"
- :search_keyword="search_keyword"
- @clear_search_keyword="clearKeyword"
- ></dialysis-area>
- </div>
- </div>
- </template>
-
- <script>
- import DialysisArea from "./DialysisArea";
- import WaitingArea from "./WaitingArea";
- import { Popover } from "vux";
- import { getDialysisScheduals, getWaitingScheduals } from "@/api/dialysis";
- import { parseTime } from "@/utils/index";
- import { getDialysisOrWaitSelectedConfig } from "@/utils/data_config";
-
- export default {
- name: "RecordPage",
- props: {
- un_read_wait_num: {
- type: Number
- },
- un_read_dialysis_num: {
- type: Number
- }
- },
- data() {
- return {
- index: 1,
- search_input: "",
- search_keyword: "",
- scheduals: [],
- advice_groups: [],
- unReadWaitNum: 0,
- unReadDialysisNum: 0
- };
- },
- components: {
- DialysisArea,
- WaitingArea,
- Popover
- // Group,
- // Cell
- },
-
- methods: {
- ClickTab: function(tabIndex) {
- this.index = tabIndex;
- },
- searchWithKeyword: function() {
- this.$refs.search_field.blur();
- this.search_keyword = this.search_input;
- },
- clearKeyword: function() {
- this.search_input = "";
- this.search_keyword = "";
- }
- },
- created() {
- var index = getDialysisOrWaitSelectedConfig();
- console.log(index);
- if (index != null) {
- this.index = index;
- }
- }
- };
- </script>
-
- <style lang="scss" scoped>
- .top_row {
- // height: 50px;
- font-size: 0.3rem;
- padding: 0 0.3rem 0;
- @media only screen and (min-width: 813px) and (max-width: 1024px) {
- padding: 0.3rem 0.3rem;
- }
- // border-bottom: 1px #e5e5e5 solid;
- // display: flex;
- // align-items: center;
- background: #258ffc;
- .floatLeft {
- line-height: 1rem;
- height: 1rem;
- margin-top: 0.1rem;
- .order {
- float: right;
- font-size: 0.45rem;
- color: #fff;
- }
- }
- .search {
- float: right;
- margin-top: 15px;
- }
- }
- .title {
- font-size: 0.45rem;
- font-weight: 600;
- height: 45px;
- // line-height: 50px;
- margin-left: 8px;
- // color: $title-color;
- color: #fff;
- }
- .newDepartment {
- text-align: center;
- // height: 100%;
- width: 60%;
- margin: 0 auto;
- ul {
- height: 100%;
- display: flex;
- justify-content: space-around;
- align-items: center;
- li {
- float: left;
- font-size: 0.45rem;
- margin: 0 0.2rem;
- height: 0.9rem;
- line-height: 0.85rem;
- padding: 0 0.4rem;
- // color: $title-color;
- color: #fff;
- &.active {
- // background: $main-color;
- background: #ffffff;
- color: #258ffc;
- border-radius: 30px;
- }
- }
- }
- }
-
- .add_schedule_btn {
- margin-left: 10px;
- float: right;
- background-color: #ff7978;
- border: none;
- }
-
- .redpoint {
- display: inline-block;
- height: 30px;
- width: 30px;
- line-height: 26px;
- text-align: center;
- font-size: 0.8em;
- border-radius: 20px;
- color: #fff;
- background: #f56c6c;
- position: absolute;
- top: -6px;
- right: -8px;
- border: 1px solid #fff;
- @media only screen and (max-width: 767px) {
- height: 16px;
- width: 16px;
- line-height: 15px;
- }
- }
- .box {
- height: 1rem;
- margin-top: 0.26rem;
- background: #258ffc;
- }
- .head {
- width: 45px;
- height: 45px;
- border-radius: 50%;
- margin-top: 3px;
- display: inline-block;
- float: left;
- img {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- .newSearch {
- height: 1rem;
- width: 100%;
- background: #fff;
- border-radius: 30px;
- overflow: hidden;
- .searchBtn {
- width: 14%;
- float: right;
- height: 1rem;
- line-height: 1rem;
- text-align: center;
- font-size: 0.45rem;
- color: #258ffc;
- }
- }
- </style>
- <style lang="scss">
- .newInput {
- height: 100%;
- width: 85% !important;
- float: left;
- .el-input__inner {
- height: 100%;
- line-height: 1rem;
- width: 100%;
- border-radius: 30px;
- border: none;
- font-size: 0.45rem;
- @media only screen and (min-width: 768px) {
- padding-left: 0.9rem !important;
- }
- }
- .el-input__icon {
- line-height: 1rem;
- font-size: 0.45rem;
- margin-top: 0.02rem;
- padding-left: 0.1rem;
- @media only screen and (min-width: 768px) {
- margin-top: 1px;
- }
- }
- .el-input__prefix {
- @media only screen and (min-width: 768px) {
- left: 10px;
- }
- }
- }
- </style>
|