|
@@ -228,7 +228,6 @@ import selectSite from "@/components/Adweb/selectSite.vue";
|
|
|
import areaChart from "./chart/areaChart.vue";
|
|
|
import { reactive, ref } from "vue";
|
|
|
import { getAction } from "@/api/manage/manage";
|
|
|
-import moment from "moment";
|
|
|
import MapAdweb from "@/components/chart/mapAdweb.vue";
|
|
|
import "flag-icon-css/css/flag-icons.css";
|
|
|
import dayjs from 'dayjs';
|
|
@@ -514,7 +513,7 @@ const onChangeDatePicker = (date, dateString) => {
|
|
|
|
|
|
//日期选择只能今天之前
|
|
|
function disabledDate(current) {
|
|
|
- return current && current > moment().subtract(0, "days");
|
|
|
+ return current && current > dayjs();
|
|
|
}
|
|
|
|
|
|
const setTime = (time) => {
|