123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- <template>
- <div class="courseManagement">
- <div>
- <div class="toolBox">
- <div class="toolOne" @click="startShow = true">
- <div style="display: flex;align-items: center;">
- {{ startTime }}
- <van-icon name="arrow-down" />
- </div>
- </div>
- <div class="toolOne" @click="endShow = true">
- <div style="display: flex;align-items: center;">
- {{ endTime }}
- <van-icon name="arrow-down" />
- </div>
- </div>
- </div>
- <div class="adviceBox" v-show="showOne">
- <van-list
- v-model="loading"
- finished-text="没有更多了"
- @load="onLoad"
- :finished="finished"
- >
- <div
- class="adviceOne"
- v-for="(item, index) in this.courseManagement"
- :key="item.id"
- >
- <div class="adviceTitle">
- <p>{{ getTime(item.record_time) }}</p>
- <van-icon
- class="ellipsis"
- name="ellipsis"
- @click="toDeleteCourseManagement(item.id, index)"
- />
- </div>
- <div class="statOrder">
- <div class="statOrderTitle">
- <span>{{ item.title }}</span>
- </div>
- <div class="orderContent">
- <p>
- <span v-html="item.content"></span>
- </p>
- </div>
- <div class="doctorBox">
- <p>记录医生:{{ item.user_name }}</p>
- </div>
- </div>
- <div class="all" @click="toCourseDetail(item.id)">全部</div>
- </div>
- </van-list>
- </div>
- <div class="noimgBox" v-show="showTwo">
- <img src="../../../assets/images/none.png" alt />
- </div>
- </div>
- <div class="add">
- <div style="display: flex;align-items: center;">
- <van-icon class="addIcon" name="add" />新增
- </div>
- </div>
-
- <!-- 弹出层 -->
- <div>
- <van-popup
- v-model="typeShow"
- position="bottom"
- :style="{ height: '40%' }"
- >
- <van-picker
- show-toolbar
- :columns="columns"
- @cancel="onCancel"
- @confirm="onConfirm"
- />
- </van-popup>
- <van-popup
- v-model="startShow"
- position="bottom"
- :style="{ height: '40%' }"
- >
- <van-datetime-picker
- v-model="currentDate"
- type="date"
- :min-date="minDate"
- :max-date="maxDate"
- @confirm="getstartTime"
- @cancel="startShow = false"
- />
- </van-popup>
- <van-popup v-model="endShow" position="bottom" :style="{ height: '40%' }">
- <van-datetime-picker
- v-model="currentDate"
- type="date"
- :min-date="minDate"
- :max-date="maxDate"
- @confirm="getstartTime2"
- @cancel="endShow = false"
- />
- </van-popup>
-
- <van-action-sheet
- v-model="newShow"
- :actions="actions"
- cancel-text="取消"
- @cancel="onCancel"
- @select="onDeleteConfirm"
- />
- </div>
- </div>
- </template>
-
- <script>
- import {
- getCourseManagement,
- DeleteCouseManage,
- getPatientDetail
- } from "@/api/patient/patient";
- import { uParseTime } from "@/utils/tools";
- import { clearStyle } from "@/libs/clearStyle";
- import Vue from "vue";
- import { Dialog } from "vant";
- const moment = require("moment");
- export default {
- props: {
- active: Number
- },
- data() {
- return {
- newShow: false,
- startShow: false,
- endShow: false,
- startTime: moment()
- .subtract(30, "days")
- .format("YYYY-MM-DD"),
- endTime: moment(new Date()).format("YYYY-MM-DD"),
- minDate: new Date(1970, 0, 1),
- maxDate: new Date(2025, 10, 1),
- currentDate: new Date(),
- actions: [{ name: "编辑" }, { name: "删除" }],
- limit: 10,
- page: 1,
- total: 0,
- loading: false,
- finished: false,
- typeShow: false,
- columns: [],
- courseManagement: [],
- patientid: 0,
- list: [],
- patient_id: 0,
- patient_index: 0,
- showOne: true,
- showTwo: false
- };
- },
- methods: {
- onCancel() {
- this.typeShow = false;
- },
- onConfirm(value) {
- this.type = value;
- this.typeShow = false;
- },
- getstartTime(value) {
- console.log(value);
- let year = value.getFullYear();
- let month = value.getMonth() + 1;
- let day = value.getDate();
- if (month >= 1 && month <= 9) {
- month = `0${month}`;
- }
- if (day >= 1 && day <= 9) {
- day = `0${day}`;
- }
-
- this.startTime = `${year}-${month}-${day}`;
- this.startShow = false;
- },
- getstartTime2(value) {
- console.log(value);
- let year = value.getFullYear();
- let month = value.getMonth() + 1;
- let day = value.getDate();
- if (month >= 1 && month <= 9) {
- month = `0${month}`;
- }
- if (day >= 1 && day <= 9) {
- day = `0${day}`;
- }
-
- this.endTime = `${year}-${month}-${day}`;
- this.endShow = false;
- },
- getTime(time) {
- // return uParseTime(time, "{y}-{m}-{d} {h}:{i}:{s}");
- return uParseTime(time, "{y}-{m}-{d}");
- },
- getCourseManagement(patientid) {
- getCourseManagement(
- patientid,
- this.limit,
- this.page,
- this.startTime,
- this.endTime
- ).then(response => {
- if (response.data.state == 1) {
- var coursemanagement = response.data.data.coursemanagement;
- console.log("病程管理", coursemanagement);
- this.courseManagement = clearStyle(coursemanagement);
- var total = response.data.data.total;
- this.total = total;
- console.log("总共", total);
- }
- });
- },
- onLoad() {
- setTimeout(() => {
- for (let i = 0; i < this.limit; i++) {
- this.list.push(this.list.length + 1);
- }
- // 加载状态结束
- this.loading = false;
- if (this.courseManagement.length > 10) {
- this.page++;
- }
- this.getCourseManagement(this.patientid);
- // 数据全部加载完成
- if (this.list.length >= this.total) {
- this.finished = true;
- }
- }, 1000);
- },
- toDeleteCourseManagement(id, index) {
- this.patient_id = id;
- this.patient_index = index;
- this.newShow = true;
- console.log("数据", this.patient_id, "下标", this.patient_index);
- },
- onDeleteConfirm(value) {
- if (value.name == "删除") {
- this.DeleteCouseManage(this.patient_id);
- }
- },
- DeleteCouseManage(id, index) {
- Dialog.confirm({
- title: "删除提示!",
- message: "确认删除该条信息吗?,删除后将无法恢复!"
- }).then(() => {
- DeleteCouseManage(id).then(response => {
- if (response.data.state === 1) {
- var msg = response.data.data.msg;
- console.log("msg", msg);
- this.courseManagement.splice(index, 1);
- this.newShow = false;
- }
- });
- });
- },
- toCourseDetail(id) {
- var patientid = this.$route.query.patientid;
- this.$router.push(
- "/coursedetail?id=" +
- id +
- "&patientid=" +
- patientid +
- "&active=" +
- this.active
- );
- },
- getPatientDetail(patientid) {
- getPatientDetail(patientid).then(response => {
- if (response.data.state === 1) {
- var patientDetail = response.data.data.patientDetail;
- if (patientDetail.blood_patients == 0) {
- this.showOne = false;
- this.showTwo = true;
- }
- if (patientDetail.blood_patients == 1) {
- this.showOne = true;
- this.showTwo = false;
- }
- console.log("病人详情", patientDetail);
- this.patientName = patientDetail.name;
- }
- });
- }
- },
- created() {
- var patientid = this.$route.query.patientid;
- this.patientid = patientid;
- console.log("干体重id", patientid);
- this.getCourseManagement(patientid);
- this.getPatientDetail(patientid);
- }
- };
- </script>
-
- <style lang="scss" scoped>
- .courseManagement {
- height: 100%;
- overflow-y: auto;
- .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: 1.25rem;
- }
- }
- .adviceBox {
- padding: 0 1.125rem;
- margin-bottom: 3.125rem;
- }
- .adviceOne {
- box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
- padding-bottom: 0.625rem;
- }
- .adviceTitle {
- padding-top: 0.625rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- p {
- color: #000000;
- font-weight: bold;
- font-size: 0.9375rem;
- }
- .ellipsis {
- font-size: 1.25rem;
- color: #cccccc;
- }
- }
- .statOrderTitle {
- color: #5b98ff;
- font-size: 0.8125rem;
- font-weight: bold;
- margin: 0.625rem 0;
- }
- .longOrderTitle {
- color: #ff964a;
- font-size: 0.8125rem;
- font-weight: bold;
- margin: 0.625rem 0;
- }
- .orderContent {
- font-size: 0.875rem;
- color: rgba(49, 50, 52, 1);
- p {
- line-height: 1.125rem;
- }
- }
- .doctorBox {
- font-size: 0.75rem;
- color: rgba(152, 152, 152, 1);
- line-height: 1.125rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 0.625rem;
- }
- .all {
- font-size: 0.8125rem;
- color: #5b98ff;
- margin-top: 0.625rem;
- }
- .noimgBox {
- margin-top: 40%;
- img {
- width: 6.25rem;
- height: 6.25rem;
- margin: 0 auto;
- display: block;
- }
- }
- .add {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 2.75rem;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- justify-content: space-around;
- font-size: 0.9375rem;
- color: #979798;
- .addIcon {
- color: #5b98ff;
- font-size: 1.25rem;
- margin-right: 0.25rem;
- }
- }
- }
- ::-webkit-scrollbar {
- width: 0;
- }
- </style>
|