|
|
|
@ -3,6 +3,9 @@
|
|
|
|
<cpn-navbar title="护理列表"></cpn-navbar>
|
|
|
|
<cpn-navbar title="护理列表"></cpn-navbar>
|
|
|
|
|
|
|
|
|
|
|
|
<view>
|
|
|
|
<view>
|
|
|
|
|
|
|
|
<view>
|
|
|
|
|
|
|
|
<u-button :custom-style="{'margin':'24rpx 24rpx 0 24rpx'}" type="warning" @click="refresh">刷新</u-button>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
<!-- 搜索 -->
|
|
|
|
<!-- 搜索 -->
|
|
|
|
<view class="search">
|
|
|
|
<view class="search">
|
|
|
|
<view class="input-content">
|
|
|
|
<view class="input-content">
|
|
|
|
@ -177,6 +180,24 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
refresh(){
|
|
|
|
|
|
|
|
this.select = {
|
|
|
|
|
|
|
|
page_size: 10,
|
|
|
|
|
|
|
|
page: 1,
|
|
|
|
|
|
|
|
sex: '',
|
|
|
|
|
|
|
|
status: '',
|
|
|
|
|
|
|
|
lat: '',
|
|
|
|
|
|
|
|
lng: '',
|
|
|
|
|
|
|
|
start_time: this.$moment(new Date()).startOf('month').format('YYYY-MM-DD'),
|
|
|
|
|
|
|
|
end_time: this.$moment(new Date()).endOf('month').format('YYYY-MM-DD'),
|
|
|
|
|
|
|
|
keyword: '',
|
|
|
|
|
|
|
|
sort_name:'start_time',
|
|
|
|
|
|
|
|
sort_type:'asc'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.nursingList = []
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
calendarShow(e) {
|
|
|
|
calendarShow(e) {
|
|
|
|
if (e === 2) {
|
|
|
|
if (e === 2) {
|
|
|
|
this.isShowCalendar = true
|
|
|
|
this.isShowCalendar = true
|
|
|
|
@ -191,7 +212,6 @@
|
|
|
|
this.select.start_time = `${e.startDate}`
|
|
|
|
this.select.start_time = `${e.startDate}`
|
|
|
|
this.select.end_time = `${e.endDate}`
|
|
|
|
this.select.end_time = `${e.endDate}`
|
|
|
|
this.nursingList = []
|
|
|
|
this.nursingList = []
|
|
|
|
console.log(this.select);
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
this.getList()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|