diff --git a/packages/xbot/AppAiStatistics/AppAiStatistics.vue b/packages/xbot/AppAiStatistics/AppAiStatistics.vue index c5c15e0c..b158e249 100644 --- a/packages/xbot/AppAiStatistics/AppAiStatistics.vue +++ b/packages/xbot/AppAiStatistics/AppAiStatistics.vue @@ -170,24 +170,37 @@ export default { }) } - // var barX = [] - // this.info.typeList.map((item) => { - // barX.push(item.wordName) - // this.barData.push(item.c) + // this.info.ranking.map((item, index)=> { + // if(index < 100) { + // item.rank = index+1 + // this.tableData.push(item) + // } // }) - // if(this.barData.length) { - // this.$nextTick(() => { - // this.barChartInit(barX, this.barData) - // }) - // } - // this.info.wordNames.map((item) => { - // var i = { name: item.wordName, value: item.wordCount }; - // this.wordData.push(i); + } + }) + + this.instance.post('/app/appmasssendingtaskbaidu/statistics3', null, { + params: { + // deptFullId: departmentId, + areaId: this.areaId, + type: this.type, + startTime: this.startTime, + endTime: this.endTime, + } + }).then(res => { + if (res?.data) { + this.info.ranking = res.data + // var trendX = [] + // this.totalEcount = 0 + // this.info.trend.map((item) => { + // trendX.push(item.ymd) + // this.totalEcount = this.totalEcount + item.ecount + // this.trendData.push(item.ecount) // }) - // if(this.wordData.length) { + // if(this.trendData.length) { // this.$nextTick(() => { - // this.wordChartInit(this.wordData) + // this.trendChartInit(trendX, this.trendData) // }) // } diff --git a/packages/xbot/AppSessionArchiveXbot/components/List.vue b/packages/xbot/AppSessionArchiveXbot/components/List.vue index 1bdd7e5a..9fc43d75 100644 --- a/packages/xbot/AppSessionArchiveXbot/components/List.vue +++ b/packages/xbot/AppSessionArchiveXbot/components/List.vue @@ -229,6 +229,7 @@ export default { this.getTags() document.querySelector('html').addEventListener('click', this.bindEvent) document.addEventListener('keydown', (event) => { + console.log(event) if (event.ctrlKey && event.shiftKey && event.altKey && event.code === 'KeyD') { this.getType() } diff --git a/packages/xbot/AppTaskAi/components/List.vue b/packages/xbot/AppTaskAi/components/List.vue index a1955b88..20621d6a 100644 --- a/packages/xbot/AppTaskAi/components/List.vue +++ b/packages/xbot/AppTaskAi/components/List.vue @@ -96,7 +96,6 @@