|
@ -6,7 +6,7 @@ |
|
|
<view class="cu-time">{{ +item.startTime | formatDate }}</view> |
|
|
<view class="cu-time">{{ +item.startTime | formatDate }}</view> |
|
|
<view class="cu-item cuIcon-timefill text-blue"> |
|
|
<view class="cu-item cuIcon-timefill text-blue"> |
|
|
<view class="content shadow-blur bg-blue light"> |
|
|
<view class="content shadow-blur bg-blue light"> |
|
|
{{ +item.startTime | formatDate }} 至 {{ +item.endTime | formatDate }} |
|
|
{{ +item.startTime | formatDate1 }} 至 {{ +item.endTime | formatDate1 }} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="cu-item cuIcon-tagfill text-green"> |
|
|
<view class="cu-item cuIcon-tagfill text-green"> |
|
@ -93,6 +93,11 @@ |
|
|
var data = new Date(time); |
|
|
var data = new Date(time); |
|
|
return formatDate(data, 'MM-dd'); |
|
|
return formatDate(data, 'MM-dd'); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
formatDate1(time) { |
|
|
|
|
|
var data = new Date(time); |
|
|
|
|
|
return formatDate(data, 'MM月dd日 hh:mm'); |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
onLoad() { |
|
|
onLoad() { |
|
|