Browse Source

气象数据

wangqin
zhangzhang 11 months ago
parent
commit
718cbdcf67
  1. 56
      ruoyi-ui/src/views/JiHeExpressway/components/Card1/index.vue
  2. 11
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/dutyOfficer/components/ModifyDutyInformationTable.vue
  3. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/index.vue
  4. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/components/railwayDay/assets/charts.js
  5. 5
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/TemperatureTrend/assets/charts.js
  6. 157
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/TemperatureTrend/index.vue
  7. 5
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/visibilityTrends/assets/charts.js
  8. 152
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/visibilityTrends/index.vue
  9. 297
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/weaterData/index.vue
  10. 64
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/index.vue

56
ruoyi-ui/src/views/JiHeExpressway/components/Card1/index.vue

@ -1,32 +1,34 @@
<template> <template>
<BorderRadiusImage <div @click="onClick">
class="Card" <BorderRadiusImage
borderRadius="2px" class="Card"
borderColor="linear-gradient(360deg, rgba(55, 231, 255, 0.3), rgba(55, 231, 255, 0))" borderRadius="2px"
borderWidth="2px" borderColor="linear-gradient(360deg, rgba(55, 231, 255, 0.3), rgba(55, 231, 255, 0))"
> borderWidth="2px"
<div class="info" :style="{ gap }"> >
<p v-for="(item, index) in keyMap" :key="index"> <div class="info" :style="{ gap }">
<span>{{ item.label }}: </span> <p v-for="(item, index) in keyMap" :key="index">
<span> <span>{{ item.label }}: </span>
<slot :name="`form-${item.key}`" :data="cardData"> <span>
{{ getValue(item.key) }}{{ item.suffix }} <slot :name="`form-${item.key}`" :data="cardData">
</slot> {{ getValue(item.key) }}{{ item.suffix }}
</span> </slot>
</p> </span>
</div> </p>
</div>
<div class="bottom" v-if="hasBtn"> <div class="bottom" v-if="hasBtn">
<slot name="button"> <slot name="button">
<Button> <Button>
{{ buttonText }} {{ buttonText }}
</Button> </Button>
</slot> </slot>
</div> </div>
<!-- <div class="status" :style="{ background: 'linear-gradient(123deg, #00B3CC 0%, rgba(0, 179, 204, 0) 100%)' }"> <!-- <div class="status" :style="{ background: 'linear-gradient(123deg, #00B3CC 0%, rgba(0, 179, 204, 0) 100%)' }">
<span class="text">正常</span> <span class="text">正常</span>
</div> --> </div> -->
</BorderRadiusImage> </BorderRadiusImage>
</div>
</template> </template>
<script> <script>
@ -107,6 +109,10 @@ export default {
getValue(key) { getValue(key) {
return pathGet(this.cardData, key) ?? "-"; return pathGet(this.cardData, key) ?? "-";
}, },
onClick() {
this.$emit("click", this.data);
},
}, },
}; };
</script> </script>

11
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/dutyOfficer/components/ModifyDutyInformationTable.vue

@ -32,7 +32,7 @@
<p <p
v-for="(item, index) in dayShift" v-for="(item, index) in dayShift"
:key="`${item.id}_${index}`" :key="`${item.id}_${index}`"
@click="removeDutyPerson(item,'dayShift')" @click="removeDutyPerson(item, 'dayShift')"
> >
{{ item.name }} {{ item.name }}
</p> </p>
@ -46,7 +46,7 @@
<p <p
v-for="(item, index) in graveyardShift" v-for="(item, index) in graveyardShift"
:key="`${index}_${item.id}`" :key="`${index}_${item.id}`"
@click="removeDutyPerson(item,'graveyardShift')" @click="removeDutyPerson(item, 'graveyardShift')"
> >
{{ item.name }} {{ item.name }}
</p> </p>
@ -139,7 +139,7 @@ export default {
}, },
set(bool) { set(bool) {
//, //,
if(!bool) { if (!bool) {
this.dayShift = []; this.dayShift = [];
this.graveyardShift = []; this.graveyardShift = [];
this.peopleList = []; this.peopleList = [];
@ -184,7 +184,7 @@ export default {
this[this.active].push(item); this[this.active].push(item);
}, },
removeDutyPerson(item, activeCheck) { removeDutyPerson(item, activeCheck) {
if(activeCheck != this.active) return; if (activeCheck != this.active) return;
const index = this[this.active].findIndex( const index = this[this.active].findIndex(
(_item) => _item.id === item.id (_item) => _item.id === item.id
@ -393,7 +393,8 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.ModifyDutyInformationTable { .ModifyDutyInformationTable {
width: 947px; width: 947px;
height: 658px; // height: 658px;
height: 570px;
color: #fff; color: #fff;
display: flex; display: flex;
flex-direction: column; flex-direction: column;

2
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/event/EventDetailDialog/index.vue

@ -1,5 +1,5 @@
<template> <template>
<Dialog v-model="modelVisible" title="事件详情" width="880px" top="15%"> <Dialog v-model="modelVisible" title="事件详情" width="890px" top="15%">
<div <div
class="EventDetail" class="EventDetail"
:style="{ :style="{

2
ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/components/railwayDay/assets/charts.js

@ -58,7 +58,7 @@ var options = {
grid: { grid: {
top: "15%", //上边距 top: "15%", //上边距
right: "0", //右边距 right: "0", //右边距
left: "15px", //左边距 left: "30px", //左边距
bottom: "0%", //下边距 bottom: "0%", //下边距
containLabel: true, containLabel: true,
}, },

5
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/TemperatureTrend/assets/charts.js

@ -108,10 +108,7 @@ var options = {
showSymbol: false, showSymbol: false,
smooth: true, // 是否曲线 smooth: true, // 是否曲线
name: "实时数据", // 图例对应类别 name: "实时数据", // 图例对应类别
data: [ data: [], // 纵坐标数据
12, 12, 23, 23, 30, 12, 26, 28, 31, 23, 25, 12, 18, 18, 18, 18, 23, 21,
20, 20, 20, 20, 20, 22, 22, 12, 12, 12,
], // 纵坐标数据
lineStyle: { lineStyle: {
color: "#FFD15C", color: "#FFD15C",
}, },

157
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/TemperatureTrend/index.vue

@ -1,75 +1,98 @@
<template> <template>
<div class='congestion'> <div class="congestion">
<WgtTitle :title="'气温变化趋势'"></WgtTitle> <WgtTitle :title="'气温变化趋势'"></WgtTitle>
<div class="board"> <div class="board">
<div class="charts" id="temperatureTrend"></div> <div class="charts" id="temperatureTrend"></div>
</div>
</div> </div>
</template> </div>
</template>
<script>
<script>
import WgtTitle from '../../../../../widgets/title' import WgtTitle from "../../../../../widgets/title";
import * as echarts from "echarts"; import * as echarts from "echarts";
import chartsStatistics from "./assets/charts"; import temperatureCharts from "./assets/charts";
export default { import {
name: 'temperatureTrend', getListLatest,
components: { getDeviceNameListLatest,
WgtTitle getIdDevices,
} from "@/api/perception/meteorologyCheck";
export default {
name: "temperatureTrend",
components: {
WgtTitle,
},
props: {
data: {
type: Array,
}, },
data() { },
return { watch: {
myChart:null, data: {
} handler(data) {
}, let newData = [];
data.forEach((item) => {
created() { newData.push(item.avgVisibility);
},
methods: {
reiszeChart(){
this.$nextTick(() => {
if ( this.myChart ) {
this.myChart.resize();
}
}); });
} temperatureCharts.series[0].data = newData;
}, this.myChart.setOption(temperatureCharts);
update(){ },
deep: true,
}, },
mounted() { },
setTimeout(() => { data() {
this.$nextTick(() => { return {
this.myChart = echarts.init(document.getElementById('temperatureTrend')); myChart: null,
this.myChart.setOption(chartsStatistics); };
}); },
created() {},
methods: {
reiszeChart() {
this.$nextTick(() => {
if (this.myChart) {
this.myChart.resize();
}
}); });
}, },
},
update() {},
mounted() {
setTimeout(() => {
this.$nextTick(() => {
this.myChart = echarts.init(
document.getElementById("temperatureTrend")
);
this.myChart.setOption(temperatureCharts);
});
});
},
};
</script>
<style lang="scss" scoped>
.congestion {
display: flex;
flex-direction: column;
.board {
flex: 1;
padding: 0px 20px;
background: linear-gradient(180deg, rgba(6, 66, 88, 0.2) 0%, #064258 100%);
border-radius: 5px 5px 5px 5px;
opacity: 1;
border: 1px solid;
border-image: linear-gradient(
360deg,
rgba(55, 231, 255, 0.3),
rgba(55, 231, 255, 0)
)
1 1;
display: flex;
justify-content: space-between;
align-items: center;
} }
</script> }
.charts {
<style lang='scss' scoped> height: 200px;
.congestion { width: 100%;
display: flex; flex-direction: column; }
.board{ </style>
flex: 1;
padding: 0px 20px;
background: linear-gradient(180deg, rgba(6,66,88,0.2) 0%, #064258 100%);
border-radius: 5px 5px 5px 5px;
opacity: 1;
border: 1px solid;
border-image: linear-gradient(360deg, rgba(55, 231, 255,0.3), rgba(55, 231, 255, 0)) 1 1;
display: flex;
justify-content: space-between;
align-items: center;
}
}
.charts {
height:200px;
width: 100%;
}
</style>

5
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/visibilityTrends/assets/charts.js

@ -107,10 +107,7 @@ var options = {
showSymbol: false, showSymbol: false,
smooth: true, // 是否曲线 smooth: true, // 是否曲线
name: "实时数据", // 图例对应类别 name: "实时数据", // 图例对应类别
data: [ data: [], // 纵坐标数据
12, 12, 23, 23, 30, 12, 26, 28, 31, 23, 25, 12, 18, 18, 18, 18, 23, 21,
20, 20, 20, 20, 20, 22, 22, 12, 12, 12,
], // 纵坐标数据
lineStyle: { lineStyle: {
color: "#0783FA", color: "#0783FA",
}, },

152
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/visibilityTrends/index.vue

@ -1,74 +1,94 @@
<template> <template>
<div class='congestion'> <div class="congestion">
<WgtTitle :title="'能见度变化趋势'"></WgtTitle> <WgtTitle :title="'能见度变化趋势'"></WgtTitle>
<div class="board"> <div class="board">
<div class="charts" id="VisibilityTrends"></div> <div class="charts" id="VisibilityTrends"></div>
</div>
</div> </div>
</template> </div>
</template>
<script>
<script>
import WgtTitle from '../../../../../widgets/title' import WgtTitle from "../../../../../widgets/title";
import * as echarts from "echarts"; import * as echarts from "echarts";
import chartsStatistics from "./assets/charts"; import visibilityCharts from "./assets/charts";
export default { export default {
name: 'VisibilityTrends', name: "VisibilityTrends",
components: { components: {
WgtTitle WgtTitle,
},
props: {
data: {
type: Array,
}, },
data() { },
return { watch: {
myChart:null, data: {
} handler(data) {
}, let newData = [];
data.forEach((item) => {
created() { newData.push(item.avgTemperature);
},
methods: {
reiszeChart(){
this.$nextTick(() => {
if ( this.myChart ) {
this.myChart.resize();
}
}); });
} visibilityCharts.series[0].data = newData;
}, this.myChart.setOption(visibilityCharts);
update(){ },
deep: true,
}, },
mounted() { },
setTimeout(() => { data() {
this.$nextTick(() => { return {
this.myChart = echarts.init(document.getElementById('VisibilityTrends')); myChart: null,
this.myChart.setOption(chartsStatistics); };
}); },
created() {},
methods: {
reiszeChart() {
this.$nextTick(() => {
if (this.myChart) {
this.myChart.resize();
}
}); });
}, },
},
update() {},
mounted() {
setTimeout(() => {
this.$nextTick(() => {
this.myChart = echarts.init(
document.getElementById("VisibilityTrends")
);
this.myChart.setOption(visibilityCharts);
});
});
},
};
</script>
<style lang="scss" scoped>
.congestion {
display: flex;
flex-direction: column;
align-items: stretch;
.board {
flex: 1;
padding: 0px 20px;
background: linear-gradient(180deg, rgba(6, 66, 88, 0.2) 0%, #064258 100%);
border-radius: 5px 5px 5px 5px;
opacity: 1;
border: 1px solid;
border-image: linear-gradient(
360deg,
rgba(55, 231, 255, 0.3),
rgba(55, 231, 255, 0)
)
1 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: stretch;
} }
</script> }
.charts {
<style lang='scss' scoped> height: 200px;
.congestion { }
display: flex; flex-direction: column; align-items: stretch; </style>
.board{
flex: 1;
padding: 0px 20px;
background: linear-gradient(180deg, rgba(6,66,88,0.2) 0%, #064258 100%);
border-radius: 5px 5px 5px 5px;
opacity: 1;
border: 1px solid;
border-image: linear-gradient(360deg, rgba(55, 231, 255,0.3), rgba(55, 231, 255, 0)) 1 1;
display: flex; flex-direction: column;
justify-content: center;
align-items: stretch;
}
}
.charts {
height:200px;
}
</style>

297
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/weaterData/index.vue

@ -1,156 +1,167 @@
<template> <template>
<div class='congestion'> <div class="congestion">
<WgtTitle :title="'气象监测数据'"></WgtTitle> <WgtTitle :title="'气象监测数据'"></WgtTitle>
<div class="board"> <div class="board">
<div class="showRoad"> <div class="showRoad">
<div :class="it.type?it.type+' item':'item'" v-for="(it,index) in dataList" > <div class="item">
<span class="label" >{{ it.text }}</span> <span class="label">温度</span>
<span class="text" >{{ it.value }}</span> <span class="text">{{
</div> data.temperature ? data.temperature + "℃" : "-"
}}</span>
</div> </div>
</div> <div class="item">
<span class="label">湿度</span>
<span class="text">{{
data.humidity ? data.humidity + "mm" : "-"
}}</span>
</div>
<div class="item">
<span class="label">风向</span>
<span class="text">{{
data.windDirection ? data.windDirection + "°" : "-"
}}</span>
</div>
<div class="item">
<span class="label">风速</span>
<span class="text">{{
data.windSpeed ? data.windSpeed + "级" : "-"
}}</span>
</div>
<div class="item">
<span class="label">能见度</span>
<span class="text">{{
data.visibilityType ? data.visibilityType + "级" : "-"
}}</span>
</div>
<!-- <div class="item">
<span class="label">能见度类型</span>
<span class="text">{{ data.visibilityType }}</span>
</div> -->
<!-- <div class="item">
<span class="label">降雨类型</span>
<span class="text">{{
data.recipitationType ? data.recipitationType : "-"
}}</span>
</div> -->
<div class="item">
<span class="label">降雨量</span>
<span class="text">{{
data.rainfall ? data.rainfall + "mm" : "-"
}}</span>
</div>
<div class="item">
<span class="label">路面温度</span>
<span class="text">{{
data.remoteRoadSurfaceTemperature
? data.remoteRoadSurfaceTemperature + "℃"
: "-"
}}</span>
</div>
<div class="item">
<span class="label"> 气压</span>
<span class="text">{{
data.atmosphericPressure ? data.atmosphericPressure + "Pa" : "-"
}}</span>
</div>
</div>
</div> </div>
</template> </div>
</template>
<script>
<script>
import WgtTitle from '../../../../../widgets/title' import WgtTitle from "../../../../../widgets/title";
export default { export default {
name: 'MonthStatistics', name: "MonthStatistics",
components: { components: {
WgtTitle WgtTitle,
}, },
data() { props: {
return { data: {
myChart:null, type: Object,
dataList:[ default: () => {},
{
text:"天气状态:",
value:"无降水",
class:"km"
},
{
text:"风速:",
value:"55m/s",
class:"km"
},
{
text:"天气温度:",
value:"23°C",
class:"km"
},
{
text:"风向:",
value:"东南风",
class:"km"
},
{
text:"路面温度:",
value:"23°C",
class:"km"
}, {
text:"风级:",
value:"2级",
class:"km"
}, {
text:"空气湿度:",
value:"79.40%",
class:"km"
}, {
text:"道路危险等级:",
value:"0级",
class:"km"
}, {
text:"能见度:",
value:"2610.00m",
class:"km"
}, {
text:"能见度:",
value:"0.00m",
class:"km"
}, {
text:"能见度:",
value:"0.00m",
class:"km"
}, {
text:"能见度:",
value:"0.00m",
class:"km"
}
]
}
},
created() {
},
methods: {
}, },
mounted() { },
setTimeout(() => { watch: {
this.$nextTick(() => { data: {
handler(newVal) {
}); console.log(newVal);
}); },
deep: true,
}, },
} },
</script> data() {
return {
<style lang='scss' scoped> myChart: null,
.congestion { dataList: [],
width: 100%; display: flex; };
.board{ },
flex: 1; created() {},
width: 100%; methods: {},
padding: 0px 20px; mounted() {
background: linear-gradient(180deg, rgba(6,66,88,0.2) 0%, #064258 100%); setTimeout(() => {
border-radius: 5px 5px 5px 5px; this.$nextTick(() => {});
opacity: 1; });
border: 1px solid; },
border-image: linear-gradient(360deg, rgba(55, 231, 255,0.3), rgba(55, 231, 255, 0)) 1 1; };
display: flex; </script>
justify-content: space-between;
align-items: center;
flex-direction: row;
overflow: auto;
.showRoad { <style lang="scss" scoped>
display: flex; .congestion {
flex-wrap: wrap; width: 100%;
display: flex;
.board {
flex: 1;
width: 100%;
padding: 0px 20px;
background: linear-gradient(180deg, rgba(6, 66, 88, 0.2) 0%, #064258 100%);
border-radius: 5px 5px 5px 5px;
opacity: 1;
border: 1px solid;
border-image: linear-gradient(
360deg,
rgba(55, 231, 255, 0.3),
rgba(55, 231, 255, 0)
)
1 1;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
overflow: auto;
> .item { .showRoad {
display: inline-flex; display: flex;
width:50%; flex-wrap: wrap;
height:23px;
margin-top:12px;
flex-direction: row;
> span.label { > .item {
width:50%; display: inline-flex;
height:25px; width: 50%;
font-size: 12px; height: 23px;
font-family: PingFang SC, PingFang SC; margin-top: 12px;
font-weight: 400; flex-direction: row;
color: #00B3CC;
}
>span.text { > span.label {
font-size: 14px; width: 50%;
font-family: PingFang SC, PingFang SC; height: 25px;
font-weight: 400; font-size: 12px;
color: #FFFFFF; font-family: PingFang SC, PingFang SC;
} font-weight: 400;
color: #00b3cc;
} }
}
> span.text {
font-size: 14px;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #ffffff;
}
}
} }
} }
.charts { }
height:180px; .charts {
width: 100%; height: 180px;
} width: 100%;
}
</style> </style>

64
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/index.vue

@ -2,24 +2,40 @@
<div class="congestion"> <div class="congestion">
<div class="queryList"> <div class="queryList">
<Card <Card
v-for="(item, index) in data" v-for="(item, index) in dataList"
:cardData="item" :cardData="item"
:keyMap="keyMap" :keyMap="keyMap"
:hasBtn="false" :hasBtn="false"
:gap="'10px'" :gap="'10px'"
:key="index" :key="index"
@click="handleClick(item)"
> >
<!-- <template #form-start="{ data }"> <template #form-direction="{ data }">
<div class="endSpecial"> <div class="endSpecial">
{{ data.start }} <img src="./assets/weater.png" /> {{
data.direction == 1
? "菏泽方向"
: data.direction == 2
? "双向"
: "济南方向"
}}
</div> </div>
</template> --> </template>
<template #form-deviceState="{ data }">
<div class="endSpecial">
{{ data.deviceState == 1 ? "在线" : "离线" }}
</div>
</template>
</Card> </Card>
</div> </div>
<div class="queryCharts"> <div class="queryCharts">
<WeateData class="charts-l" /> <WeateData class="charts-l" :data="dataItem" />
<TemperatureTrend ref="temper" class="charts-ms" /> <TemperatureTrend ref="temper" class="charts-ms" :data="weatherData" />
<VisibilityTrends ref="visibility" class="charts-ms" /> <VisibilityTrends
ref="visibility"
class="charts-ms"
:data="weatherData"
/>
</div> </div>
</div> </div>
</template> </template>
@ -48,27 +64,30 @@ export default {
keyMap: [ keyMap: [
{ {
label: "设备名称", label: "设备名称",
key: "name", key: "deviceName",
}, },
{ {
label: "设备位置", label: "设备位置",
key: "name", key: "stakeMark",
}, },
{ {
label: "所属方向", label: "所属方向",
key: "rote", key: "direction",
}, },
{ {
label: "采集时间", label: "采集时间",
key: "time", key: "createTime",
}, },
{ {
label: "气象状态", label: "设备状态",
key: "start", key: "deviceState",
}, },
], ],
deviceName: "",
selectIndex: 0, selectIndex: 0,
dataList: [], dataList: [],
dataItem: {},
weatherData: [],
data: Array.from({ length: 10 }).map(() => ({ data: Array.from({ length: 10 }).map(() => ({
name: "气象监测器1", name: "气象监测器1",
rote: "济南方向", rote: "济南方向",
@ -85,15 +104,27 @@ export default {
this.selectIndex = index; this.selectIndex = index;
}, },
resizeChart() { resizeChart() {
// console.log(this.$refs.temper);
this.$refs.temper.reiszeChart(); this.$refs.temper.reiszeChart();
this.$refs.visibility.reiszeChart(); this.$refs.visibility.reiszeChart();
}, },
getList() { getList() {
getListLatest().then((res) => { getListLatest().then((res) => {
console.log("_____________", res); this.dataList = res.rows;
this.dataItem = res.rows[0];
this.deviceName = res.rows[0].deviceName;
this.getWeather();
}); });
}, },
getWeather() {
getDeviceNameListLatest(this.deviceName).then((res) => {
this.weatherData = res.rows;
});
},
handleClick(item) {
this.dataItem = item;
this.deviceName = item.deviceName;
this.getWeather();
},
}, },
mounted() { mounted() {
this.getList(); this.getList();
@ -104,7 +135,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.endSpecial { .endSpecial {
position: relative; position: relative;
top: -10px; // top: -10px;
> img { > img {
display: inline-flex; display: inline-flex;
@ -147,6 +178,7 @@ export default {
height: 203px; height: 203px;
margin-top: 10px; margin-top: 10px;
margin-left: 20px; margin-left: 20px;
cursor: pointer;
} }
> div:nth-child(5n + 1) { > div:nth-child(5n + 1) {

Loading…
Cancel
Save