热词统计增加下方表格

master
chc 2022-08-11 10:32:26 +08:00
parent b77b4c0ef8
commit db51df89f7
1 changed files with 13 additions and 0 deletions

View File

@ -15,7 +15,9 @@
</div> </div>
</Affix> </Affix>
</div> </div>
<div id="container"></div> <div id="container"></div>
<Table border :columns="columns" :data="hotWordsData"></Table>
</div> </div>
</template> </template>
@ -37,6 +39,16 @@ export default {
month: "", month: "",
top: 50 top: 50
}, },
columns:[
{
title: "热词名称",
key: "keywords",
},
{
title: "搜索次数",
key: "score",
},
],
hotWordsChart:"", // hotWordsChart:"", //
hotWordsData:[] // hotWordsData:[] //
}; };
@ -95,4 +107,5 @@ export default {
.affix-time { .affix-time {
padding-left: 15px; padding-left: 15px;
} }
</style> </style>