|
@@ -639,6 +639,7 @@ import {
|
|
|
} from "@/api/count";
|
|
} from "@/api/count";
|
|
|
import * as echarts from "echarts";
|
|
import * as echarts from "echarts";
|
|
|
import moment from "moment";
|
|
import moment from "moment";
|
|
|
|
|
+import { verifyTableSignSuccess } from "@/api/sign";
|
|
|
let chart1 = null;
|
|
let chart1 = null;
|
|
|
let chartMultiLevelUse = null;
|
|
let chartMultiLevelUse = null;
|
|
|
import NumberScroll from "@/components/AppVue/numberScroll.vue";
|
|
import NumberScroll from "@/components/AppVue/numberScroll.vue";
|
|
@@ -815,6 +816,7 @@ export default {
|
|
|
await this.pullLastDayCount();
|
|
await this.pullLastDayCount();
|
|
|
},
|
|
},
|
|
|
mounted() {
|
|
mounted() {
|
|
|
|
|
+ this.verifyHotDataSign();
|
|
|
const nowDate = new Date();
|
|
const nowDate = new Date();
|
|
|
nowDate.setHours(0, 0, 0, 0);
|
|
nowDate.setHours(0, 0, 0, 0);
|
|
|
this.chartMluTimeRange = [
|
|
this.chartMluTimeRange = [
|
|
@@ -840,7 +842,13 @@ export default {
|
|
|
window.removeEventListener("scroll", this.handleScroll, true);
|
|
window.removeEventListener("scroll", this.handleScroll, true);
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
- goAnchor(id) {
|
|
|
|
|
|
|
+ async verifyHotDataSign() {
|
|
|
|
|
+ const isSuccess = await verifyTableSignSuccess([1652]);
|
|
|
|
|
+ if (!isSuccess) {
|
|
|
|
|
+ this.$message.warning("当前热度数据可能已被篡改,注意甄别");
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ goAnchor(id) {
|
|
|
const anchor = document.getElementById(id);
|
|
const anchor = document.getElementById(id);
|
|
|
if (anchor) {
|
|
if (anchor) {
|
|
|
anchor.scrollIntoView({ behavior: "smooth" });
|
|
anchor.scrollIntoView({ behavior: "smooth" });
|