Commit 227c87b2 authored by liqin's avatar liqin 💬

dddddd

parent 0fce95ed
......@@ -121,16 +121,18 @@ export default {
let httpUrl = "";
let _this = this;
if (type === "interact") {
httpUrl =
"tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=";
}
if (type === "trend") {
httpUrl = "tBoardStatistic/getBoardTrendPageList?playDate=";
httpUrl =
`tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=${frequencyDate}`;
}
if (type === "trend") {
// httpUrl = "tBoardStatistic/getBoardTrendPageList?playDate=";
httpUrl = `tBoardStatistic/getBoardPageList?beginDate=${frequencyDate}&endDate=${frequencyDate}`;
}
}
_this
.$https({
method: "post",
url: `${httpUrl}${frequencyDate}`,
url: `${httpUrl}`,
})
.then((res) => {
if (res.status == 200) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment