123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <template>
- <div class="page_patientManagement">
- <van-sticky>
- <div class="patientManagementTitle">
- <i class="iconfont icon-zuojiantou jiantou" @click="toback"></i>
- <span class="titleName">患者管理</span>
- <div class="iconBox" @click="addPatient">
- <van-icon class="iconOne add" name="add-o" />
- </div>
- </div>
- </van-sticky>
- <div class="searchBox">
- <van-search
- v-model="value"
- placeholder="搜索患者透析号/姓名/首拼"
- @search="SearchAllPatient"
- />
- </div>
- <div class="chooseBox">
- <van-tabs v-model="active" sticky>
- <van-tab title="全部患者">
- <div class="patientBox">
- <van-list
- v-model="loading"
- finished-text="没有更多了"
- @load="onLoad"
- :finished="finished"
- >
- <div
- class="patientOne"
- v-for="(item, index) in patients"
- :key="index"
- @click="toPatientDetail(item.id)"
- >
- <img :src="item.avatar" alt />
- <p>{{ item.name }}</p>
- </div>
- </van-list>
- </div>
- </van-tab>
- <van-tab title="血透患者">
- <Blood :searchValue="value"></Blood>
- </van-tab>
- <van-tab title="慢病患者">
- <Slow :searchValue="value"></Slow>
- </van-tab>
- <van-tab title="会员患者">
- <Member :searchValue="value"></Member>
- </van-tab>
- </van-tabs>
- </div>
- <!-- 弹出层 -->
- <div>
- <van-popup
- v-model="typeShow"
- position="bottom"
- :style="{ height: '40%' }"
- >
- <van-picker
- show-toolbar
- :columns="columns"
- @cancel="onCancel"
- @confirm="onConfirm"
- />
- </van-popup>
- </div>
- </div>
- </template>
-
- <script>
- import "../../styles/resetStyle.scss";
- import {
- getBloodDialysisPatient,
- SearchAllPatient
- } from "@/api/patient/patient";
- import Slow from "@/pages/patientManagement/components/Slow";
- import Member from "@/pages/patientManagement/components/Member";
- import Blood from "@/pages/patientManagement/components/Blood";
- import { setRem, setHeight } from "@/libs/functionRem";
- export default {
- components: {
- Slow,
- Member,
- Blood
- },
- data() {
- return {
- value: "",
- typeShow: false,
- startShow: false,
- endShow: false,
- type: "归转状态",
- columns: [
- "杭州",
- "宁波",
- "温州",
- "嘉兴",
- "湖州",
- "杭州",
- "宁波",
- "温州",
- "嘉兴",
- "湖州"
- ],
- searchVal: "",
- active: 0,
- list: [],
- loading: false,
- finished: false,
- page: 1,
- limit: 10,
- total: 0,
- patients: []
- };
- },
- methods: {
- onCancel() {
- this.typeShow = false;
- },
- onConfirm(value) {
- this.type = value;
- this.typeShow = false;
- },
- onLoad() {
- setTimeout(() => {
- for (let i = 0; i < this.limit; i++) {
- this.list.push(this.list.length + 1);
- }
- // 加载状态结束
- this.loading = false;
- if (this.patients.length >= 10) {
- this.page++;
- this.getBloodDialysisPatient(this.page, this.limit);
- }
- // 数据全部加载完成
- if (this.list.length >= this.total) {
- this.finished = true;
- }
- }, 1000);
- },
- getBloodDialysisPatient() {
- getBloodDialysisPatient(this.page, this.limit).then(response => {
- if (response.data.state == 1) {
- var patient = response.data.data.patient;
- // console.log("病人信息", patient);
- let arr = this.patients;
- arr.push(...patient);
- this.patients = arr;
- var total = response.data.data.total;
- this.total = total;
- // console.log("总计", total);
- }
- });
- },
-
- addPatient() {
- this.$router.push("/addPatints");
- },
- toPatientDetail(id) {
- this.$router.push("/patientdetail?patientid=" + id);
- },
- toback() {
- this.$router.push("/homeIndex");
- },
- SearchAllPatient(val) {
- SearchAllPatient(val).then(response => {
- if (response.data.state === 1) {
- var patient = response.data.data.patient;
- console.log("patient", patient);
- }
- });
- }
- },
- created() {
- setRem();
- setHeight();
- this.getBloodDialysisPatient();
- }
- };
- </script>
-
- <style lang="scss" scoped>
- .page_patientManagement {
- overflow-y: auto;
- height: 100%;
- .patientManagementTitle {
- background: #fff;
- padding: 0 1.125rem;
- height: 3.125rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .jiantou {
- font-size: 1.5rem;
- font-weight: 600;
- margin-right: 2rem;
- }
- .titleName {
- font-size: 1.125rem;
- font-weight: 600;
- color: #000;
- }
- .iconBox {
- display: flex;
- align-items: center;
- float: right;
- }
- .iconOne {
- font-size: 1.5rem;
- }
- .add {
- margin-left: 1.25rem;
- }
- .toolBox {
- display: flex;
- height: 3.125rem;
-
- align-items: center;
-
- .toolOne {
- width: 5.625rem;
- height: 1.875rem;
- background: rgba(246, 246, 246, 1);
- border-radius: 5px;
- text-align: center;
- font-size: 0.8125rem;
- color: #8d8d8d;
- display: flex;
- align-items: center;
- justify-content: space-around;
- margin-left: 0.875rem;
- }
- }
- .van-dropdown-menu__title {
- width: 5.625rem;
- height: 1.875rem;
- line-height: 1.875rem;
- background: rgba(246, 246, 246, 1);
- border-radius: 5px;
- color: #8d8d8d;
- font-size: 0.875rem;
- }
- .van-dropdown-menu__title::after {
- right: 0.5rem;
- }
- .patientBox {
- padding: 0 0.875rem;
- background: #fff;
- .patientOne {
- display: flex;
- align-items: center;
- height: 3.75rem;
- img {
- width: 2.5rem;
- height: 2.5rem;
- margin-right: 0.875rem;
- }
- }
- }
- }
- ::-webkit-scrollbar {
- width: 0;
- }
- </style>
-
- <style lang="scss">
- .page_patientManagement {
- .searchBox {
- .van-cell__value {
- display: flex;
- align-items: center;
- }
- .van-field__body {
- width: 100%;
- }
- }
- }
- </style>
|