|
@@ -1,33 +1,25 @@
|
|
|
<template>
|
|
|
<div class="search-form">
|
|
|
<!-- 站点选择和时间筛选 -->
|
|
|
- <a-row class="r1">
|
|
|
- <a-col :span="6">
|
|
|
+ <a-row class="r1" :gutter="8">
|
|
|
+ <a-col :xl="7" :xxl="6">
|
|
|
<div class="choose-site">
|
|
|
<span class="t1">站点:</span>
|
|
|
- <select-site @set-site-info="changeSite" selectWidth="300px" />
|
|
|
+ <select-site @set-site-info="changeSite" select-width="100%" />
|
|
|
</div>
|
|
|
</a-col>
|
|
|
- <a-col :span="8">
|
|
|
- <span class="t1">统计时间:</span>
|
|
|
- <a-range-picker @change="onChangeDatePicker" :disabledDate="disabledDate" :value="rangeDate"
|
|
|
- style="width:70%" />
|
|
|
+ <a-col :xl="8" :xxl="6">
|
|
|
+ <div class="choose-site">
|
|
|
+ <span class="t1">统计时间:</span>
|
|
|
+ <a-range-picker @change="onChangeDatePicker" :disabledDate="disabledDate" :value="rangeDate" style="width: 70%" />
|
|
|
+ </div>
|
|
|
</a-col>
|
|
|
- <a-col :span="10">
|
|
|
- <a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间
|
|
|
- </a-button>
|
|
|
- <a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''"
|
|
|
- @click="setTime('thirtyDay')">近30天
|
|
|
- </a-button>
|
|
|
- <a-button :class="queryParam.dateType == 'sevenDay' ? 'active' : ''"
|
|
|
- @click="setTime('sevenDay')">近一周
|
|
|
- </a-button>
|
|
|
- <a-button :class="queryParam.dateType == 'yesterday' ? 'active' : ''"
|
|
|
- @click="setTime('yesterday')">昨日
|
|
|
- </a-button>
|
|
|
- <a-button :class="queryParam.dateType == 'today' ? 'active' : ''" @click="setTime('today')">
|
|
|
- 今日
|
|
|
- </a-button>
|
|
|
+ <a-col :xl="9" :xxl="12">
|
|
|
+ <a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间 </a-button>
|
|
|
+ <a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''" @click="setTime('thirtyDay')">近30天 </a-button>
|
|
|
+ <a-button :class="queryParam.dateType == 'sevenDay' ? 'active' : ''" @click="setTime('sevenDay')">近一周 </a-button>
|
|
|
+ <a-button :class="queryParam.dateType == 'yesterday' ? 'active' : ''" @click="setTime('yesterday')">昨日 </a-button>
|
|
|
+ <a-button :class="queryParam.dateType == 'today' ? 'active' : ''" @click="setTime('today')"> 今日 </a-button>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</div>
|
|
@@ -228,7 +220,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 +505,7 @@ const onChangeDatePicker = (date, dateString) => {
|
|
|
|
|
|
//日期选择只能今天之前
|
|
|
function disabledDate(current) {
|
|
|
- return current && current > moment().subtract(0, "days");
|
|
|
+ return current && current > dayjs();
|
|
|
}
|
|
|
|
|
|
const setTime = (time) => {
|
|
@@ -585,10 +576,11 @@ const setTime = (time) => {
|
|
|
}
|
|
|
|
|
|
.t1 {
|
|
|
- font-size: 16px;
|
|
|
+ font-size: 18px;
|
|
|
font-weight: 400;
|
|
|
letter-spacing: 0px;
|
|
|
- line-height: 21px;
|
|
|
+ line-height: 32px;
|
|
|
+ margin-left: 10px;
|
|
|
}
|
|
|
|
|
|
.ant-form-item {
|