|
@@ -49,20 +49,12 @@ export default {
|
49
|
49
|
methods: {
|
50
|
50
|
// 工单实时动态
|
51
|
51
|
async getGroupPraise () {
|
52
|
|
- const startTime = this.$moment()
|
53
|
|
- .startOf('day')
|
54
|
|
- .format('YYYY-MM-DD HH:mm:ss') // 今日
|
55
|
|
- const endTime = this.$moment()
|
56
|
|
- .endOf('day')
|
57
|
|
- .format('YYYY-MM-DD HH:mm:ss') // 今日
|
58
|
52
|
const result = await post(
|
59
|
53
|
'/itsm/report/index',
|
60
|
54
|
{
|
61
|
55
|
parentDutyId: this.parentDutyId,
|
62
|
56
|
hosId: this.hosId,
|
63
|
57
|
dutyId: this.dutyId,
|
64
|
|
- startDate: startTime,
|
65
|
|
- endDate: endTime,
|
66
|
58
|
type: 'itsmIncidentCount'
|
67
|
59
|
}
|
68
|
60
|
)
|