You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

630 lines
16 KiB

<template>
<view>
<cpn-navbar title="护理列表" :is-back="true"></cpn-navbar>
<view>
<view>
<u-button :custom-style="{'margin':'24rpx 24rpx 0 24rpx'}" type="warning" @click="refresh"></u-button>
</view>
<!-- 搜索 -->
<view class="search">
<view class="input-content">
<u-input :clearable="false" :value="select.keyword" placeholder="请输入要搜索的内容" height="30" :custom-style="inputStyle"
@input="searchInput"></u-input>
</view>
<view class="icon">
<u-icon name="search" size="46" color="#ABAEBE"></u-icon>
</view>
</view>
<!-- 下拉菜单 -->
<view class="drop-down">
<u-dropdown @open="calendarShow" @close="calendarHide" ref="uDropdown">
<u-dropdown-item v-model="select.status" :title="statusComputed(select.status)"
:options="optionsStatus" @change='nursingList = [],select.page = 1,getList()'>
</u-dropdown-item>
<!-- <u-dropdown-item v-model="select.sex" :title="select.sex || '全部'" :options="optionsSex"-->
<!-- @change="nursingList = [],select.page = 1,getList()">-->
<!-- </u-dropdown-item>-->
<u-dropdown-item title="时间">
</u-dropdown-item>
</u-dropdown>
</view>
<!-- 护理列表 -->
<view class="nursing-list">
<view v-if="nursingList && nursingList.length > 0">
<view v-for="(item,index) in nursingList" :key="index" class="list-item">
<view class="top">
<view class="time">{{item.start_time}}</view>
<view class="status">
<view class="status-icon"
:class="{icon1:item.status === 0,icon2:item.status === 2,icon3:item.status === 1}">
</view>
<view v-if="item.status === 1" class="status-text">护理中</view>
<view v-else-if="item.status === 0" class="status-text">待护理</view>
<view v-else class="status-text">已护理</view>
</view>
</view>
<view class="line"></view>
<view style="padding: 20rpx 40rpx 0;font-size: 32rpx;line-height: 2;font-weight: 600;">
护理人
</view>
<view class="center">
<view class="avatar">
<u-image :src="((item.nurse && item.nurse.idcard) ? getSexByIdcard(item.nurse.idcard) : '无') === '男' ? vuex_male_img : vuex_female_img" height="104"
width="104" shape="circle"></u-image>
</view>
<view class="user-info">
<view class="name">{{item.nurse.name}}</view>
<view class="tel">
<view>
<u-icon name="phone" size="28" color="#1479FF"></u-icon>
</view>
<view class="text">{{item.nurse.phone || '无'}}</view>
</view>
</view>
<view class="sex">
<view class="sex-text">
{{ (item.nurse && item.nurse.idcard) ? getSexByIdcard(item.nurse.idcard) : '无' }}
</view>
</view>
</view>
<view class="line" style="margin-top: 22rpx;"></view>
<view style="padding: 20rpx 40rpx 0;font-size: 32rpx;line-height: 2;font-weight: 600;">
被护理人
</view>
<view class="center">
<view class="avatar">
<u-image :src="((item.customer && item.customer.idcard) ? getSexByIdcard(item.customer.idcard) : '无') === '男' ? vuex_male_img : vuex_female_img" height="104"
width="104" shape="circle"></u-image>
</view>
<view class="user-info">
<view class="name">{{item.customer.name}}</view>
<view class="tel">
<view>
<u-icon name="phone" size="28" color="#1479FF"></u-icon>
</view>
<view class="text">{{item.customer.mobile || '无'}}</view>
</view>
<view class="address">
<view>
<u-icon name="map" size="28" color="#1479FF"></u-icon>
</view>
<view class="text">{{item.customer_address.address || '无'}}</view>
</view>
</view>
<view class="sex">
<view class="sex-text">
{{ (item.customer && item.customer.idcard) ? getSexByIdcard(item.customer.idcard) : '无' }}
</view>
</view>
</view>
<view class="line" style="margin-top: 22rpx;"></view>
<view style="padding: 20rpx 40rpx 0;font-size: 32rpx;line-height: 2;font-weight: 600;">
护理项目
</view>
<view v-if="item.sku" class="sku-list">
<u-collapse>
<u-collapse-item>
<view slot="title" style="flex: 1;">
<view class="sku-list__tag" v-for="sku in item.sku.slice(0,1)" :key="sku.id">
<view>{{ (sku.sku_info ? sku.sku_info.name : sku.sku_id) }}</view>
<view>{{ (sku.time || 0) + '(分钟)' }}</view>
</view>
</view>
<view slot="default" class="sku-list__tag" v-for="sku in item.sku.slice(1)" :key="sku.id">
<view>{{ (sku.sku_info ? sku.sku_info.name : sku.sku_id) }}</view>
<view>{{ (sku.time || 0) + '(分钟)' }}</view>
</view>
</u-collapse-item>
</u-collapse>
</view>
<view class="line"></view>
<view class="bottom">
<view class="show-status">
<view class="status">
<view class="status-icon"
:class="{icon1:item.schedule_list_checks.length <= 0,icon2:item.schedule_list_checks.length > 0}">
</view>
<view class="status-text">{{ item.schedule_list_checks.length > 0 ? "已督查" : "未督查" }}</view>
</view>
<view class="status">
<view class="status-icon"
:class="{icon1:item.schedule_list_callback.length <= 0,icon2:item.schedule_list_callback.length > 0}">
</view>
<view class="status-text">{{ item.schedule_list_callback.length > 0 ? "已回访" : "未回访" }}</view>
</view>
</view>
<view class="operate">
<u-button v-if="item.status === 1 && item.schedule_list_checks.length <= 0"
class="operate-item"
:custom-style="{ width: '100%' }"
type="primary"
size="medium"
plain
ripple
style="flex: 1;"
@click="pageTo('/package_sub/pages/addChecks/addChecks' + '?schedule_list_id=' + item.id)">督查</u-button>
<u-button class="operate-item"
:custom-style="{ width: '100%' }"
style="flex: 1;"
v-if="item.status === 2 && item.schedule_list_callback.length <= 0"
type="primary"
size="medium"
plain
ripple
@click="pageTo('/package_sub/pages/addCallback/addCallback' + '?schedule_list_id=' + item.id)">回访</u-button>
</view>
</view>
</view>
</view>
<view v-else>
<u-empty mode="list" text="暂无护理"></u-empty>
</view>
</view>
</view>
<u-loadmore :status="status" :load-text='loadText' @loadmore='select.page++,getList()' />
<u-calendar v-model="isShowCalendar" max-date="2100-01-01" mode="range" @change='datePick'>
</u-calendar>
</view>
</template>
<script>
import { getSexByIdcard } from "@/common/util"
export default {
data() {
return {
isShowCalendar: false,
inputStyle: {
width: "600rpx",
fontSize: "28rpx",
fontWeight: "500"
},
optionsStatus: [{
label: '全部',
value: ''
},
{
label: '待护理',
value: '0',
},
{
label: '护理中',
value: 1,
},
{
label: '已护理',
value: 2,
},
],
optionsSex: [{
label: '全部',
value: ''
},
{
label: '男',
value: '男',
},
{
label: '女',
value: '女',
},
],
status: 'loadmore',
loadText: {
loadmore: '轻轻上拉或点击',
loading: '努力加载中',
nomore: '实在没有了'
},
nursingList: [],
select: {
page_size: 10,
page: 1,
sex: '',
status: '',
lat: '',
lng: '',
start_date: this.$moment(new Date()).startOf('month').format('YYYY-MM-DD'),
end_date: this.$moment(new Date()).endOf('month').format('YYYY-MM-DD'),
keyword: '',
is_auth: 1,
sort_name:'start_time',
sort_type:'asc'
},
}
},
methods: {
pageTo (url) {
uni.navigateTo({
url
})
},
getSexByIdcard,
refresh(){
this.select = {
page_size: 10,
page: 1,
sex: '',
status: '',
lat: '',
lng: '',
start_date: this.$moment(new Date()).startOf('month').format('YYYY-MM-DD'),
end_date: this.$moment(new Date()).endOf('month').format('YYYY-MM-DD'),
keyword: '',
is_auth: 1,
sort_name:'start_time',
sort_type:'asc'
}
this.nursingList = []
this.getList()
},
calendarShow(e) {
if (e === 1) {
this.isShowCalendar = true
}
},
calendarHide() {
this.isShowCalendar = false
},
datePick(e) {
console.log(e);
this.select.page = 1
this.select.start_date = `${e.startDate}`
this.select.end_date = `${e.endDate}`
this.nursingList = []
this.getList()
},
searchInput(e) {
this.select.keyword = e
this.nursingList = []
this.select.page = 1
this.$u.debounce(this.getList, 1000)
},
async getList() {
let res = await this.$u.api.adminScheduleList(this.select)
if (res.data instanceof Array && res.data.length > 0) {
this.nursingList.push(...res.data)
this.status = 'loadmore'
} else {
this.status = 'nomore'
if (this.select.page > 1) {
this.select.page--
}
}
},
},
computed: {
statusComputed() {
return function(status) {
switch (status) {
case '0':
return "待护理"
break;
case 1:
return "护理中"
break;
case 2:
return "已护理"
break;
default:
return '全部'
}
}
}
},
watch: {
isShowCalendar(val) {
if (!val) {
this.$refs.uDropdown.close()
}
},
},
onReachBottom() {
this.select.page++
this.status = 'loading';
this.getList()
},
onShow() {
this.select.page = 1
this.nursingList = []
uni.getLocation().then(res => {
this.select.lat = res[1]?.latitude
this.select.lng = res[1]?.longitude
this.getList()
})
},
onHide() {
}
}
</script>
<style scoped lang="scss">
//
/deep/.u-collapse-content {
color: #303133 !important;
}
/deep/.u-dropdown__menu {
justify-content: space-evenly !important;
}
/deep/.u-dropdown__menu__item {
width: 336rpx !important;
flex: none !important;
height: 70rpx;
background: #FFFFFF;
border-radius: 10rpx;
justify-content: space-between !important;
}
/deep/.u-dropdown__menu__item .u-flex {
flex: 1;
}
/deep/.u-dropdown__menu__item__text {
flex: 1 !important;
font-size: 32rpx !important;
font-weight: 500 !important;
color: #333333 !important;
text-align: center;
padding: 12rpx 0rpx !important;
}
/deep/.u-dropdown__menu__item__arrow {
width: 70rpx !important;
height: 70rpx !important;
background: rgba(20, 121, 255, 0.1) !important;
border-radius: 10rpx !important;
border: 2rpx solid #FFFFFF !important;
display: flex;
justify-content: center;
align-items: center;
}
/deep/.u-load-more-wrap {
padding: 10px 0;
}
.search {
width: 710rpx;
height: 70rpx;
background: #FFFFFF;
border: 2rpx solid #FAFBFC;
display: flex;
align-items: center;
justify-content: space-between;
margin: 24rpx 24rpx 0 24rpx;
.input-content {
margin-left: 30rpx;
}
.icon {
margin-right: 30rpx;
}
}
.drop-down {
margin-top: 20rpx;
}
.nursing-list {
margin-top: 10rpx;
.list-item {
width: 710rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 10rpx 0rpx rgba(219, 218, 218, 0.5);
margin: 0 20rpx 26rpx 22rpx;
.top {
display: flex;
justify-content: space-between;
align-items: center;
padding: 22rpx 0;
.time {
height: 40rpx;
font-size: 40rpx;
font-weight: 500;
color: #36596A;
line-height: 40rpx;
padding-left: 20rpx;
}
.status {
display: flex;
align-items: center;
.status-icon {
margin-right: 10rpx;
}
.status-text {
width: 84rpx;
height: 40rpx;
font-size: 28rpx;
font-weight: 500;
color: #36596A;
line-height: 40rpx;
margin-right: 20rpx;
}
}
}
.line {
width: 670rpx;
height: 2rpx;
border: 2rpx solid #EEEFF5;
margin: 0 auto;
}
.center {
display: flex;
justify-content: space-between;
padding-top: 24rpx;
.avatar {
padding-top: 4rpx;
padding-left: 20rpx;
}
.user-info {
flex: 1;
padding-left: 24rpx;
.name {
width: 270rpx;
height: 48rpx;
font-size: 32rpx;
font-weight: 500;
color: #333333;
}
.tel {
height: 40rpx;
font-size: 28rpx;
font-weight: 500;
color: #36596A;
line-height: 40rpx;
display: flex;
margin-top: 18rpx;
.text {
margin-left: 10rpx;
}
}
.address {
font-size: 28rpx;
font-weight: 500;
color: #36596A;
line-height: 40rpx;
display: flex;
margin-top: 14rpx;
.text {
margin-left: 10rpx;
}
}
}
.sex {
width: 40rpx;
height: 40rpx;
background: #FDECEC;
opacity: 0.5;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20rpx;
.sex-text {
width: 28rpx;
height: 34rpx;
font-size: 28rpx;
font-weight: 500;
color: #36596A;
line-height: 34rpx;
}
}
}
.bottom {
margin-top: 16rpx;
padding: 0 60rpx 26rpx;
.show-status {
display: flex;
justify-content: space-between;
align-items: center;
.status {
display: flex;
align-items: center;
}
}
.operate {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 16rpx;
}
.operate-item + .operate-item {
margin-left: 40rpx;
}
}
}
}
.sku-list {
padding: 22rpx 60rpx 16rpx;
&__tag {
padding-left: 20rpx;
margin-bottom: 20rpx;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
&::before {
content: "";
width: 12rpx;
height: 12rpx;
border-radius: 100%;
background: #3877f6;
position: absolute;
top: calc(50% - 6rpx);
left: 0;
}
}
}
</style>