Commit 227c87b2 authored by liqin's avatar liqin 💬

dddddd

parent 0fce95ed
...@@ -122,15 +122,17 @@ export default { ...@@ -122,15 +122,17 @@ export default {
let _this = this; let _this = this;
if (type === "interact") { if (type === "interact") {
httpUrl = httpUrl =
"tBoardStatistic/getInteractionFrequencyPageList?frequencyDate="; `tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=${frequencyDate}`;
} }
if (type === "trend") { if (type === "trend") {
httpUrl = "tBoardStatistic/getBoardTrendPageList?playDate="; // httpUrl = "tBoardStatistic/getBoardTrendPageList?playDate=";
httpUrl = `tBoardStatistic/getBoardPageList?beginDate=${frequencyDate}&endDate=${frequencyDate}`;
}
} }
_this _this
.$https({ .$https({
method: "post", method: "post",
url: `${httpUrl}${frequencyDate}`, url: `${httpUrl}`,
}) })
.then((res) => { .then((res) => {
if (res.status == 200) { 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