diff --git a/packages/xbot/AppAiStatistics/AppAiStatistics.vue b/packages/xbot/AppAiStatistics/AppAiStatistics.vue
index 72a541cd..682394b8 100644
--- a/packages/xbot/AppAiStatistics/AppAiStatistics.vue
+++ b/packages/xbot/AppAiStatistics/AppAiStatistics.vue
@@ -29,7 +29,7 @@
{{ totalInfo['昨日'] || 0 }}
-
+
-
+
@@ -196,11 +192,12 @@ export default {
// }
this.info.ranking.map((item, index)=> {
- if(index < 5) {
+ if(index < 100) {
item.rank = index+1
this.tableData.push(item)
}
})
+
}
})
},
@@ -398,6 +395,18 @@ export default {
}
}
+ :deep .ai-detail__content--wrapper {
+ height: 100%;
+ }
+ .chart-content {
+ height: calc(100% - 140px);
+ }
+
+ :deep .ai-table {
+ height: calc(100% - 40px);
+ overflow-y: scroll;
+ }
+
.chartBox {
background: #F9F9F9;
box-shadow: 0px 4px 6px -2px rgba(15, 15, 21, 0.1500);
@@ -405,10 +414,11 @@ export default {
padding: 16px;
box-sizing: border-box;
margin-top: 6px;
+ height: 100%;
.chart {
width: 100%;
- height: 300px;
+ height: 100%;
}
}