123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- <template>
- <Dialog custom-show type="md" title="风速排行" hide-footer @close="handleClose">
- <div>(过去24小时)</div>
- <div class="title-box">
- <el-select
- v-model="timeOption"
- class="custom-select"
- popper-class="custom-select-popper"
- :teleported="false"
- style="width: 236px"
- @change="initData"
- >
- <el-option v-for="item in timeOptions" :key="item.value" :label="item.name" :value="item.value" />
- </el-select>
- </div>
- <div class="table">
- <div class="table-header">
- <div class="td">序号</div>
- <div class="td">
- <el-select
- v-model="queryParams.area"
- placeholder="地市"
- size="large"
- class="custom-select2"
- popper-class="custom-select-popper2"
- :teleported="false"
- >
- <el-option label="区县" value="" />
- <el-option v-for="item in district_type" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </div>
- <div class="td">区县</div>
- <div class="td">站址</div>
- <div class="td td-cursor">
- <span>风速(m/s)</span>
- <i :class="queryParams.sort === 'desc' ? 'desc-icon' : 'asc-icon'" @click="handleSort" />
- </div>
- </div>
- <div v-for="(item, index) in rangeData" :key="index" class="tr">
- <div class="td">
- <div :class="getRankClass(item.rn)">{{ item.rn }}</div>
- </div>
- <div class="td">{{ item.area }}</div>
- <div class="td">{{ item.township }}</div>
- <div class="td btn3" @click="handleClick(item)">
- <div class="chart-icon"></div>
- {{ item.address }}
- </div>
- <div class="gradient-text2 td">{{ item.rainfall }}</div>
- </div>
- </div>
- <div class="footer">
- <el-pagination
- background
- :hide-on-single-page="true"
- layout="total, prev, pager, next"
- :total="total"
- :page-size="queryParams.size"
- :current-page="queryParams.current"
- @current-change="handleChangePage"
- />
- </div>
- </Dialog>
- <WindSpeedChart v-if="showDialog" v-model:show="showDialog" :rainData="rainData" />
- </template>
- <script lang="ts" setup name="RainRank">
- import { getRainfallRange2 } from '@/api/globalMap/rainMonitor';
- import { getNextAreaInfo } from '@/api/common';
- import WindSpeedChart from '@/views/globalMap/RightMenu/WindMonitor/windSpeedChart.vue';
- interface Props {
- modelValue: boolean;
- location: string | number[];
- }
- withDefaults(defineProps<Props>(), {});
- const emits = defineEmits(['update:modelValue']);
- const { proxy } = getCurrentInstance() as ComponentInternalInstance;
- const { district_type } = toRefs<any>(proxy?.useDict('district_type'));
- const timeOption = ref('24');
- const timeOptions = reactive([
- { name: '1小时', value: '1' },
- { name: '3小时', value: '3' },
- { name: '6小时', value: '6' },
- { name: '12小时', value: '12' },
- { name: '24小时', value: '24' }
- ]);
- const rangeData = ref([]);
- const queryParams = reactive({
- current: 1,
- size: 10,
- area: '',
- township: '',
- sort: 'desc'
- });
- const townshipList = ref([]);
- const total = ref(0);
- const showDialog = ref(false);
- const rainData = ref({});
- const getRankClass = (rank) => {
- let res = 'rank-other';
- if (rank === 1) {
- res = 'rank1';
- } else if (rank === 2) {
- res = 'rank2';
- } else if (rank === 3) {
- res = 'rank3';
- }
- return res;
- };
- const handleSort = () => {
- if (queryParams.sort === 'desc') {
- queryParams.sort = 'asc';
- } else {
- queryParams.sort = 'desc';
- }
- initData();
- };
- function handleChangePage(newNum) {
- queryParams.current = newNum;
- initData();
- }
- const initData = () => {
- let area = '';
- for (let i = 0; i < district_type.value.length; i++) {
- if (district_type.value[i].value === queryParams.area) {
- area = district_type.value[i].label;
- }
- }
- const params = {
- current: queryParams.current,
- size: queryParams.size,
- query: {
- area: area,
- township: queryParams.township,
- sort: queryParams.sort,
- timeOption: timeOption.value
- }
- };
- getRainfallRange2(params).then((res) => {
- total.value = res.total;
- rangeData.value = res.rows;
- });
- };
- watch(
- () => queryParams.area,
- () => {
- queryParams.township = '';
- townshipList.value = [];
- if (queryParams.area) {
- getNextAreaInfo(queryParams.area).then((res) => {
- townshipList.value = res.data.list;
- });
- }
- initData();
- },
- { immediate: true }
- );
- const handleClose = () => {
- emits('update:modelValue', false);
- };
- const handleClick = (item) => {
- rainData.value = item;
- showDialog.value = true;
- };
- </script>
- <style lang="scss" scoped>
- .dialog-container {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 9;
- width: 2001px;
- height: 1562px;
- background: url('@/assets/images/map/rightMenu/rainMonitor/dialog2.png') no-repeat;
- padding: 170px 30px 20px 40px;
- font-size: 36px;
- color: #ffffff;
- }
- .title-box {
- position: absolute;
- top: 25px;
- left: 70px;
- display: flex;
- align-items: center;
- .title {
- font-size: 84px;
- margin-right: 20px;
- }
- }
- .close-btn {
- position: absolute;
- top: 0px;
- right: 0px;
- width: 75px;
- height: 70px;
- background: url('@/assets/images/map/rightMenu/close.png') no-repeat;
- background-size: 100% 100%;
- cursor: pointer;
- }
- .table {
- margin-left: 28px;
- .table-header {
- width: 1864px;
- height: 96px;
- background: url('@/assets/images/common/header.png') no-repeat;
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- .td-cursor {
- cursor: pointer;
- }
- }
- .tr {
- width: 1864px;
- height: 96px;
- background: url('@/assets/images/common/tr.png') no-repeat;
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- margin-top: 10px;
- .td {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .btn3 {
- cursor: pointer;
- color: #00d0ee;
- display: flex;
- .chart-icon {
- width: 52px;
- height: 51px;
- background: url('@/assets/images/map/rightMenu/rainMonitor/icon5.png') no-repeat;
- margin-right: 5px;
- }
- }
- }
- .gradient-text2 {
- color: transparent !important;
- }
- .td {
- font-size: 38px;
- color: #edfaff;
- display: flex;
- justify-content: center;
- align-items: center;
- &:nth-child(1) {
- width: 140px;
- }
- &:nth-child(2) {
- width: 220px;
- }
- &:nth-child(3) {
- width: 280px;
- }
- &:nth-child(4) {
- flex: 1;
- }
- &:nth-child(5) {
- width: 230px;
- }
- }
- .down-icon {
- display: inline-block;
- width: 33px;
- height: 15px;
- background: url('@/assets/images/map/rightMenu/rainMonitor/down.png') no-repeat;
- cursor: pointer;
- margin-left: 8px;
- }
- .asc-icon {
- display: inline-block;
- width: 33px;
- height: 33px;
- background: url('@/assets/images/common/asc.png') no-repeat;
- cursor: pointer;
- margin-left: 8px;
- }
- .desc-icon {
- display: inline-block;
- width: 33px;
- height: 33px;
- background: url('@/assets/images/common/desc.png') no-repeat;
- cursor: pointer;
- margin-left: 8px;
- }
- .rank1,
- .rank2,
- .rank3,
- .rank-other {
- width: 50px;
- height: 48px;
- color: #ecfaff;
- font-family: BEBAS-1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .rank1 {
- height: 47px;
- background: url('@/assets/images/map/rightMenu/rainMonitor/first.png') no-repeat;
- }
- .rank2 {
- background: url('@/assets/images/map/rightMenu/rainMonitor/second.png') no-repeat;
- }
- .rank3 {
- background: url('@/assets/images/map/rightMenu/rainMonitor/third.png') no-repeat;
- }
- .rank-other {
- background: url('@/assets/images/map/rightMenu/rainMonitor/other.png') no-repeat;
- }
- }
- .footer {
- display: flex;
- justify-content: flex-end;
- margin-top: 30px;
- padding-right: 40px;
- :deep(.el-pagination__total) {
- color: #a7ccdf;
- font-size: 32px;
- }
- :deep(.el-pagination) {
- .btn-next,
- .btn-prev {
- background-color: transparent;
- border: none;
- .el-icon {
- font-size: 22px;
- color: #a7ccdf;
- }
- }
- .el-pager li {
- width: 64px;
- height: 64px;
- line-height: 64px;
- text-align: center;
- font-size: 32px;
- color: #a7ccdf;
- background-color: #0e3064;
- border: 1px solid #0c57a7;
- margin: 0 6px;
- &:hover {
- background-color: #038dff;
- border: 1px solid #038dff;
- }
- }
- .el-pager li.is-active {
- background-color: #038dff;
- border: 1px solid #038dff;
- }
- }
- }
- </style>
|