|
@@ -60,6 +60,7 @@
|
60
|
60
|
<script setup>
|
61
|
61
|
import IncidentListFilter from '@/components/IncidentListFilter.vue';
|
62
|
62
|
import IncidentAttachment from '@/components/IncidentAttachment.vue';
|
|
63
|
+ import { startOfDay, endOfDay, format, startOfWeek, endOfWeek, add } from 'date-fns'
|
63
|
64
|
import { ref, reactive, computed } from 'vue'
|
64
|
65
|
import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
|
65
|
66
|
import { api_getDictionary, api_incident, api_incident_count, api_incidentTask } from "@/http/api.js"
|
|
@@ -119,6 +120,7 @@
|
119
|
120
|
selected: 'todoingAll',
|
120
|
121
|
area: {id: 0, area: '全部'},
|
121
|
122
|
category: {id: 0, category: '全部'},
|
|
123
|
+ acceptDate: [format(startOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd'), format(endOfWeek(add(new Date(), { weeks: -1}), { weekStartsOn: 1 }), 'yyyy-MM-dd')],
|
122
|
124
|
},//筛选框数据
|
123
|
125
|
})
|
124
|
126
|
|
|
@@ -280,6 +282,11 @@
|
280
|
282
|
if(dataInfo.evtFilter && dataInfo.evtFilter.category && dataInfo.evtFilter.category.id){
|
281
|
283
|
postData.incident.levelCategory = { id: dataInfo.evtFilter.category.id };
|
282
|
284
|
}
|
|
285
|
+
|
|
286
|
+ if(dataInfo.evtFilter && Array.isArray(dataInfo.evtFilter.acceptDate) && dataInfo.evtFilter.acceptDate.length){
|
|
287
|
+ postData.incident.acceptDate = format(startOfDay(new Date(dataInfo.evtFilter.acceptDate[0])), 'yyyy-MM-dd HH:mm:ss');
|
|
288
|
+ postData.incident.acceptDateEnd = format(endOfDay(dataInfo.evtFilter.acceptDate[1]), 'yyyy-MM-dd HH:mm:ss');
|
|
289
|
+ }
|
283
|
290
|
|
284
|
291
|
if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
|
285
|
292
|
postData.incident.area = dataInfo.evtFilter.area
|