Commit 16ca169f authored by liqin's avatar liqin 💬

更新src/views/screen.vue

parent 39a9c388
...@@ -99,7 +99,7 @@ export default { ...@@ -99,7 +99,7 @@ export default {
}; };
} else if (params.type == "2") { } else if (params.type == "2") {
type = "trend"; type = "trend";
// 趋势dddddd // 趋势
this.dialogData = { this.dialogData = {
data: this.trendEcharts, data: this.trendEcharts,
list: this.trendList, list: this.trendList,
...@@ -122,17 +122,15 @@ export default { ...@@ -122,17 +122,15 @@ export default {
let _this = this; let _this = this;
if (type === "interact") { if (type === "interact") {
httpUrl = httpUrl =
`tBoardStatistic/getInteractionFrequencyPageList?frequencyDate=${frequencyDate}`; "tBoardStatistic/getInteractionFrequencyPageList?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}` url: `${httpUrl}${frequencyDate}`,
}) })
.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