修改
This commit is contained in:
parent
dbba1f37b3
commit
8b30539dad
@ -158,15 +158,16 @@
|
|||||||
},
|
},
|
||||||
//piker选择时间
|
//piker选择时间
|
||||||
timeconfirm(e) {
|
timeconfirm(e) {
|
||||||
this.tiemmask = false
|
this.Detailslist = []
|
||||||
this.newtime = e.year + '.' + e.month
|
this.newtime = e.year + '.' + e.month
|
||||||
this.monthTime = e.year + '-' + e.month + '-01'
|
this.monthTime = e.year + '-' + e.month + '-01'
|
||||||
this.personRevenueDetailsinfo();
|
this.personRevenueDetailsinfo();
|
||||||
this.personRevenueinfo();
|
this.personRevenueinfo();
|
||||||
|
this.tiemmask = false
|
||||||
},
|
},
|
||||||
//日历选择时间
|
//日历选择时间
|
||||||
ucalendarchange(e) {
|
ucalendarchange(e) {
|
||||||
this.tiemmask = false
|
this.Detailslist = []
|
||||||
e.startMonth > 10 ? '' : e.startMonth = '0' + e.startMonth
|
e.startMonth > 10 ? '' : e.startMonth = '0' + e.startMonth
|
||||||
e.startDay > 10 ? '' : e.startDay = '0' + e.startDay
|
e.startDay > 10 ? '' : e.startDay = '0' + e.startDay
|
||||||
e.endMonth > 10 ? '' : e.endMonth = '0' + e.endMonth
|
e.endMonth > 10 ? '' : e.endMonth = '0' + e.endMonth
|
||||||
@ -178,6 +179,7 @@
|
|||||||
this.monthTime = ''
|
this.monthTime = ''
|
||||||
this.personRevenueDetailsinfo();
|
this.personRevenueDetailsinfo();
|
||||||
this.personRevenueinfo();
|
this.personRevenueinfo();
|
||||||
|
this.tiemmask = false
|
||||||
},
|
},
|
||||||
//time
|
//time
|
||||||
timechange(index) {
|
timechange(index) {
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<view class="top">
|
<view class="top">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
<image src="../../static/fuwu.png" mode=""></image>
|
<image src="../../static/fuwu.png" mode=""></image>
|
||||||
<view class="text">
|
<view class="text" v-if="itemlist.nurseItemName">
|
||||||
{{itemlist.nurseItemName}}
|
{{itemlist.nurseItemName}}
|
||||||
</view>
|
</view>
|
||||||
<view class="righttext">
|
<view class="righttext">
|
||||||
@ -17,11 +17,14 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<view class="time">
|
<view class="time">
|
||||||
时间: {{itemlist.serviceDate}}
|
时间:
|
||||||
<span style='padding-left: 10rpx;'>{{itemlist.serviceStartTime}}</span>
|
<span v-if="itemlist.serviceDate">{{itemlist.serviceDate}}</span>
|
||||||
|
<span style='padding-left: 10rpx;'
|
||||||
|
v-if="itemlist.serviceStartTime">{{itemlist.serviceStartTime}}</span>
|
||||||
</view>
|
</view>
|
||||||
<view class="address">
|
<view class="address">
|
||||||
地点:{{itemlist.serviceAddress}}
|
地点:
|
||||||
|
<span v-if="itemlist.serviceAddress">{{itemlist.serviceAddress}}</span>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user