|
@@ -1,7 +1,12 @@
|
|
|
<template>
|
|
|
<div class="drinkWater">
|
|
|
- <div class="reply" :style="{color: color}">全场饮水情况</div>
|
|
|
- <x-form :formItems="formItems" :day="day" @setDay="setDay" @onClickType="onClickType"></x-form>
|
|
|
+ <div class="reply" :style="{ color: color }">全场饮水情况</div>
|
|
|
+ <x-form
|
|
|
+ :formItems="formItems"
|
|
|
+ :day="day"
|
|
|
+ @setDay="setDay"
|
|
|
+ @onClickType="onClickType"
|
|
|
+ ></x-form>
|
|
|
<div class="echarts" v-if="allWaterCount && allWaterList.length > 0">
|
|
|
<div class="echarts-l">
|
|
|
<chart-water-pie :waterCount="allWaterCount"></chart-water-pie>
|
|
@@ -10,23 +15,33 @@
|
|
|
<chart-water :dataValue="allWaterList"></chart-water>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="echarts" v-else>
|
|
|
+ <div class="echarts" v-else>
|
|
|
<el-empty description="暂无数据" style="width: 100%;"></el-empty>
|
|
|
</div>
|
|
|
- <br/>
|
|
|
- <div class="reply" :style="{color: color}">饮用水详情</div>
|
|
|
- <el-skeleton style="width: 100%; height: 150px;" :loading="loading" animated>
|
|
|
+ <br />
|
|
|
+ <div class="reply" :style="{ color: color }">饮用水详情</div>
|
|
|
+ <el-skeleton
|
|
|
+ style="width: 100%; height: 150px;"
|
|
|
+ :loading="loading"
|
|
|
+ animated
|
|
|
+ >
|
|
|
<div class="carousel">
|
|
|
<swiper class="swiper" :options="swiperOption">
|
|
|
- <swiper-slide v-for="(item, i) in list" :key="i" style="padding-top: 10px">
|
|
|
+ <swiper-slide
|
|
|
+ v-for="(item, i) in list"
|
|
|
+ :key="i"
|
|
|
+ style="padding-top: 10px"
|
|
|
+ >
|
|
|
<div class="box">
|
|
|
- <p>{{item.room}}</p>
|
|
|
+ <p>{{ item.room }}</p>
|
|
|
<div class="flex">
|
|
|
<div>
|
|
|
<i class="icon1"></i>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <span>{{item.water == null ? '设备暂无数据' : item.water + '吨'}}</span>
|
|
|
+ <span>{{
|
|
|
+ item.water == null ? "设备暂无数据" : item.water + "吨"
|
|
|
+ }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -37,15 +52,25 @@
|
|
|
</swiper>
|
|
|
</div>
|
|
|
</el-skeleton>
|
|
|
- <br/>
|
|
|
- <div class="reply" :style="{color: color}">筛选查询</div>
|
|
|
- <x-form :formItems="selectItems" :day="day1" @setDay="setDay1" @setChange="setChange" @onClickType="onClickType1"></x-form>
|
|
|
- <div class="echarts" v-if=" waterList.length > 0">
|
|
|
+ <br />
|
|
|
+ <div class="reply" :style="{ color: color }">筛选查询</div>
|
|
|
+ <x-form
|
|
|
+ :formItems="selectItems"
|
|
|
+ :day="day1"
|
|
|
+ @setDay="setDay1"
|
|
|
+ @setChange="setChange"
|
|
|
+ @onClickType="onClickType1"
|
|
|
+ ></x-form>
|
|
|
+ <div class="echarts" v-if="waterList.length > 0">
|
|
|
<div class="echarts-l">
|
|
|
<chart-water-pie :id="'1'" :waterCount="waterCount"></chart-water-pie>
|
|
|
</div>
|
|
|
<div class="echarts-r">
|
|
|
- <chart-water :id="'1'" :dataValue="waterList" :room="waterRoom"></chart-water>
|
|
|
+ <chart-water
|
|
|
+ :id="'1'"
|
|
|
+ :dataValue="waterList"
|
|
|
+ :room="waterRoom"
|
|
|
+ ></chart-water>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="echarts" v-else>
|
|
@@ -58,11 +83,18 @@
|
|
|
import XForm from "@/components/XForm";
|
|
|
import ChartWaterPie from "@/views/Env/chart/ChartWaterPie";
|
|
|
import ChartWater from "@/views/dashboard/chart/ChartWater";
|
|
|
-import { swiper, swiperSlide } from 'vue-awesome-swiper';
|
|
|
-import 'swiper/css/swiper.css';
|
|
|
-import { mapState } from 'vuex';
|
|
|
-import {getAllDayWater, getByFloor, getListAllWater, getListWater, getSchool, getUid} from "../../utils/api";
|
|
|
-import {timeDate} from "../../utils";
|
|
|
+import { swiper, swiperSlide } from "vue-awesome-swiper";
|
|
|
+import "swiper/css/swiper.css";
|
|
|
+import { mapState } from "vuex";
|
|
|
+import {
|
|
|
+ getAllDayWater,
|
|
|
+ getByFloor,
|
|
|
+ getListAllWater,
|
|
|
+ getListWater,
|
|
|
+ getSchool,
|
|
|
+ getUid,
|
|
|
+} from "../../utils/api";
|
|
|
+import { timeDate } from "../../utils";
|
|
|
|
|
|
export default {
|
|
|
name: "DrinkWater",
|
|
@@ -71,56 +103,56 @@ export default {
|
|
|
ChartWaterPie,
|
|
|
ChartWater,
|
|
|
swiper,
|
|
|
- swiperSlide
|
|
|
+ swiperSlide,
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(['color'])
|
|
|
+ ...mapState(["color"]),
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
formItems: [
|
|
|
{
|
|
|
id: 1,
|
|
|
- type: 'text',
|
|
|
- text: '今日',
|
|
|
+ type: "text",
|
|
|
+ text: "今日",
|
|
|
value: 1,
|
|
|
- col: 1
|
|
|
+ col: 1,
|
|
|
},
|
|
|
{
|
|
|
id: 2,
|
|
|
- type: 'text',
|
|
|
- text: '本周',
|
|
|
+ type: "text",
|
|
|
+ text: "本周",
|
|
|
value: 2,
|
|
|
- col: 1
|
|
|
+ col: 1,
|
|
|
},
|
|
|
{
|
|
|
id: 3,
|
|
|
- type: 'text',
|
|
|
- text: '本月',
|
|
|
+ type: "text",
|
|
|
+ text: "本月",
|
|
|
value: 3,
|
|
|
- col: 1
|
|
|
+ col: 1,
|
|
|
},
|
|
|
{
|
|
|
id: 4,
|
|
|
- type: 'datepicker',
|
|
|
+ type: "datepicker",
|
|
|
placeholder: [],
|
|
|
- field: 'value1',
|
|
|
- col: 6
|
|
|
+ field: "value1",
|
|
|
+ col: 6,
|
|
|
},
|
|
|
{
|
|
|
id: 6,
|
|
|
- type: 'button',
|
|
|
- text: '查询',
|
|
|
+ type: "button",
|
|
|
+ text: "查询",
|
|
|
col: 2,
|
|
|
- click: 'search'
|
|
|
+ click: "search",
|
|
|
},
|
|
|
{
|
|
|
id: 5,
|
|
|
- type: 'button',
|
|
|
- text: '导出数据',
|
|
|
+ type: "button",
|
|
|
+ text: "导出数据",
|
|
|
col: 2,
|
|
|
- click: 'derive'
|
|
|
- }
|
|
|
+ click: "derive",
|
|
|
+ },
|
|
|
],
|
|
|
day: 1,
|
|
|
swiperOption: {
|
|
@@ -128,79 +160,79 @@ export default {
|
|
|
spaceBetween: 30,
|
|
|
autoplay: {
|
|
|
delay: 2500,
|
|
|
- disableOnInteraction: false
|
|
|
+ disableOnInteraction: false,
|
|
|
},
|
|
|
pagination: {
|
|
|
- el: '.swiper-pagination',
|
|
|
- type: 'progressbar'
|
|
|
+ el: ".swiper-pagination",
|
|
|
+ type: "progressbar",
|
|
|
},
|
|
|
navigation: {
|
|
|
- nextEl: '.swiper-button-next',
|
|
|
- prevEl: '.swiper-button-prev'
|
|
|
- }
|
|
|
+ nextEl: ".swiper-button-next",
|
|
|
+ prevEl: ".swiper-button-prev",
|
|
|
+ },
|
|
|
},
|
|
|
selectItems: [
|
|
|
{
|
|
|
id: 1,
|
|
|
- type: 'select',
|
|
|
- label: '栋舍:',
|
|
|
- placeholder: '请选择栋舍',
|
|
|
- field: 'floorId',
|
|
|
+ type: "select",
|
|
|
+ label: "栋舍:",
|
|
|
+ placeholder: "请选择栋舍",
|
|
|
+ field: "floorId",
|
|
|
options: [],
|
|
|
- col: 4
|
|
|
+ col: 4,
|
|
|
},
|
|
|
{
|
|
|
id: 2,
|
|
|
- type: 'select',
|
|
|
- label: '楼层:',
|
|
|
- placeholder: '请选择楼层',
|
|
|
- field: 'uid',
|
|
|
+ type: "select",
|
|
|
+ label: "楼层:",
|
|
|
+ placeholder: "请选择楼层",
|
|
|
+ field: "uid",
|
|
|
options: [],
|
|
|
- col: 4
|
|
|
+ col: 4,
|
|
|
},
|
|
|
{
|
|
|
id: 10,
|
|
|
- type: 'select',
|
|
|
- label: '单元:',
|
|
|
- placeholder: '请选择单元',
|
|
|
- field: 'unitId',
|
|
|
+ type: "select",
|
|
|
+ label: "单元:",
|
|
|
+ placeholder: "请选择单元",
|
|
|
+ field: "unitId",
|
|
|
options: [],
|
|
|
- col: 4
|
|
|
+ col: 4,
|
|
|
},
|
|
|
{
|
|
|
id: 3,
|
|
|
- type: 'text',
|
|
|
- text: '今日',
|
|
|
+ type: "text",
|
|
|
+ text: "今日",
|
|
|
value: 1,
|
|
|
- col: 1
|
|
|
+ col: 1,
|
|
|
},
|
|
|
{
|
|
|
id: 4,
|
|
|
- type: 'text',
|
|
|
- text: '本周',
|
|
|
+ type: "text",
|
|
|
+ text: "本周",
|
|
|
value: 2,
|
|
|
- col: 1
|
|
|
+ col: 1,
|
|
|
},
|
|
|
{
|
|
|
id: 5,
|
|
|
- type: 'text',
|
|
|
- text: '本月',
|
|
|
+ type: "text",
|
|
|
+ text: "本月",
|
|
|
value: 3,
|
|
|
- col: 1
|
|
|
+ col: 1,
|
|
|
},
|
|
|
{
|
|
|
id: 6,
|
|
|
- type: 'datepicker',
|
|
|
+ type: "datepicker",
|
|
|
placeholder: [],
|
|
|
- field: 'value1',
|
|
|
- col: 6
|
|
|
+ field: "value1",
|
|
|
+ col: 6,
|
|
|
},
|
|
|
{
|
|
|
id: 8,
|
|
|
- type: 'button',
|
|
|
- text: '查询',
|
|
|
+ type: "button",
|
|
|
+ text: "查询",
|
|
|
col: 1,
|
|
|
- click: 'search'
|
|
|
+ click: "search",
|
|
|
},
|
|
|
// {
|
|
|
// id: 7,
|
|
@@ -217,237 +249,237 @@ export default {
|
|
|
allWaterCount: null,
|
|
|
waterList: [],
|
|
|
waterCount: null,
|
|
|
- waterRoom: '',
|
|
|
+ waterRoom: "",
|
|
|
loading: true,
|
|
|
- }
|
|
|
+ };
|
|
|
},
|
|
|
methods: {
|
|
|
init() {
|
|
|
- getAllDayWater({}).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ getAllDayWater({}).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
setTimeout(() => {
|
|
|
- this.list = res.data
|
|
|
- this.loading = false
|
|
|
- }, 1000)
|
|
|
+ this.list = res.data;
|
|
|
+ this.loading = false;
|
|
|
+ }, 1000);
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
initAllWater() {
|
|
|
- getListAllWater({}).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ getListAllWater({}).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
let that = this;
|
|
|
that.allWaterList = res.data.data;
|
|
|
that.allWaterCount = res.data.countWater;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
initWater() {
|
|
|
- getListWater({}).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ getListWater({}).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
this.waterList = res.data.data;
|
|
|
this.waterCount = res.data.countWater;
|
|
|
this.waterRoom = res.data.room;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
getSchool() {
|
|
|
- getSchool({}).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
- res.data.forEach(item => {
|
|
|
+ getSchool({}).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
+ res.data.forEach((item) => {
|
|
|
item.value = item.id;
|
|
|
item.label = item.floorName;
|
|
|
- })
|
|
|
+ });
|
|
|
this.selectItems[0].options = res.data;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
setChange(item) {
|
|
|
- if(item.type === 'floorId') {
|
|
|
+ if (item.type === "floorId") {
|
|
|
let params = {
|
|
|
- floorId: item.data
|
|
|
- }
|
|
|
- getByFloor(params).then(res => {
|
|
|
- res.data.forEach(item => {
|
|
|
+ floorId: item.data,
|
|
|
+ };
|
|
|
+ getByFloor(params).then((res) => {
|
|
|
+ res.data.forEach((item) => {
|
|
|
item.value = item.uid;
|
|
|
- item.label = item.alias
|
|
|
- })
|
|
|
+ item.label = item.alias;
|
|
|
+ });
|
|
|
this.selectItems[1].options = res.data;
|
|
|
- })
|
|
|
- } else if(item.type === 'uid') {
|
|
|
+ });
|
|
|
+ } else if (item.type === "uid") {
|
|
|
let params = {
|
|
|
- uid: item.data
|
|
|
- }
|
|
|
- getUid(params).then(res => {
|
|
|
- res.data.forEach(item => {
|
|
|
+ uid: item.data,
|
|
|
+ };
|
|
|
+ getUid(params).then((res) => {
|
|
|
+ res.data.forEach((item) => {
|
|
|
item.value = item.id;
|
|
|
- item.label = item.roomName
|
|
|
- })
|
|
|
- this.selectItems[2].options = res.data
|
|
|
- })
|
|
|
+ item.label = item.roomName;
|
|
|
+ });
|
|
|
+ this.selectItems[2].options = res.data;
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
setDay(data) {
|
|
|
this.day = data.type;
|
|
|
let params = {
|
|
|
endDate: timeDate(new Date().getTime()),
|
|
|
- type: this.day
|
|
|
- }
|
|
|
- getListAllWater(params).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ type: this.day,
|
|
|
+ };
|
|
|
+ getListAllWater(params).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
let that = this;
|
|
|
that.allWaterList = res.data.data;
|
|
|
that.allWaterCount = res.data.countWater;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
onClickType(data) {
|
|
|
let params = {};
|
|
|
- if(data.data.value1) {
|
|
|
+ if (data.data.value1) {
|
|
|
params = {
|
|
|
startDate: data.data.value1[0],
|
|
|
endDate: data.data.value1[1],
|
|
|
- type: 4
|
|
|
- }
|
|
|
+ type: 4,
|
|
|
+ };
|
|
|
} else {
|
|
|
params = {
|
|
|
endDate: timeDate(new Date().getTime()),
|
|
|
- type: this.day
|
|
|
- }
|
|
|
+ type: this.day,
|
|
|
+ };
|
|
|
}
|
|
|
- getListAllWater(params).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ getListAllWater(params).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
let that = this;
|
|
|
that.allWaterList = res.data.data;
|
|
|
that.allWaterCount = res.data.countWater;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
setDay1(data) {
|
|
|
this.day1 = data.type;
|
|
|
let data1 = data.data;
|
|
|
- if(data1.unitId) {
|
|
|
- let end = timeDate(new Date().getTime())
|
|
|
+ if (data1.unitId) {
|
|
|
+ let end = timeDate(new Date().getTime());
|
|
|
let params = {
|
|
|
roomId: data1.unitId,
|
|
|
endDate: end,
|
|
|
- type: this.day1
|
|
|
- }
|
|
|
- getListWater(params).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ type: this.day1,
|
|
|
+ };
|
|
|
+ getListWater(params).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
this.waterList = res.data.data;
|
|
|
this.waterCount = res.data.countWater;
|
|
|
this.waterRoom = res.data.room;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
} else {
|
|
|
- this.$message.error('请选择栋舍楼层单元查询');
|
|
|
+ this.$message.error("请选择栋舍楼层单元查询");
|
|
|
}
|
|
|
},
|
|
|
onClickType1(data) {
|
|
|
- if(data.type === 'search') {
|
|
|
+ if (data.type === "search") {
|
|
|
let data1 = data.data;
|
|
|
- if(data1.unitId) {
|
|
|
+ if (data1.unitId) {
|
|
|
let params;
|
|
|
- if(data1.value1) {
|
|
|
+ if (data1.value1) {
|
|
|
params = {
|
|
|
roomId: data1.unitId,
|
|
|
startDate: data1.value1[0],
|
|
|
endDate: data1.value1[1],
|
|
|
type: 4,
|
|
|
- }
|
|
|
+ };
|
|
|
} else {
|
|
|
- let end = timeDate(new Date().getTime())
|
|
|
+ let end = timeDate(new Date().getTime());
|
|
|
params = {
|
|
|
roomId: data1.unitId,
|
|
|
endDate: end,
|
|
|
- type: this.day1
|
|
|
- }
|
|
|
+ type: this.day1,
|
|
|
+ };
|
|
|
}
|
|
|
- getListWater(params).then(res => {
|
|
|
- if(res.code === 10000) {
|
|
|
+ getListWater(params).then((res) => {
|
|
|
+ if (res.code === 10000) {
|
|
|
this.waterList = res.data.data;
|
|
|
this.waterCount = res.data.countWater;
|
|
|
this.waterRoom = res.data.room;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
} else {
|
|
|
- this.$message.error('请选择栋舍楼层单元查询');
|
|
|
+ this.$message.error("请选择栋舍楼层单元查询");
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.initAllWater()
|
|
|
- this.initWater()
|
|
|
- this.init()
|
|
|
- this.getSchool()
|
|
|
- }
|
|
|
-}
|
|
|
+ this.initAllWater();
|
|
|
+ this.initWater();
|
|
|
+ this.init();
|
|
|
+ this.getSchool();
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
- .drinkWater {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- padding: 20px 20px 0 20px;
|
|
|
- }
|
|
|
- .reply {
|
|
|
- width: 100%;
|
|
|
- border: 1px solid #ddd;
|
|
|
- border-bottom: 0;
|
|
|
- height: 50px;
|
|
|
- background-color: #F3F3F3;
|
|
|
- line-height: 50px;
|
|
|
- font-size: 18px;
|
|
|
- box-sizing: border-box;
|
|
|
- padding-left: 20px;
|
|
|
- }
|
|
|
- .echarts {
|
|
|
- width: 100%;
|
|
|
- height: 401px;
|
|
|
- box-sizing: border-box;
|
|
|
- border: 1px solid #ddd;
|
|
|
- border-top: 0;
|
|
|
- display: flex;
|
|
|
- }
|
|
|
- .echarts-l {
|
|
|
- width: 30%;
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
- .echarts-r {
|
|
|
- width: 70%;
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
- .carousel {
|
|
|
- width: 100%;
|
|
|
- height: 150px;
|
|
|
- border-top: 1px solid #ddd;
|
|
|
- }
|
|
|
- .swiper {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
- .box {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- border: 1px solid #ddd;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 30px 0;
|
|
|
- text-align: center;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
- .flex {
|
|
|
- width: 100%;
|
|
|
- height: 32px;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- }
|
|
|
- .icon1 {
|
|
|
- width: 32px;
|
|
|
- height: 32px;
|
|
|
- background: url('../../assets/images/u3077.svg') no-repeat;
|
|
|
- display: inline-block;
|
|
|
- background-size: 100% 100%;
|
|
|
- }
|
|
|
+.drinkWater {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ padding: 20px 20px 0 20px;
|
|
|
+}
|
|
|
+.reply {
|
|
|
+ width: 100%;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ border-bottom: 0;
|
|
|
+ height: 50px;
|
|
|
+ background-color: #f3f3f3;
|
|
|
+ line-height: 50px;
|
|
|
+ font-size: 18px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-left: 20px;
|
|
|
+}
|
|
|
+.echarts {
|
|
|
+ width: 100%;
|
|
|
+ height: 401px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ border-top: 0;
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.echarts-l {
|
|
|
+ width: 30%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.echarts-r {
|
|
|
+ width: 70%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.carousel {
|
|
|
+ width: 100%;
|
|
|
+ height: 150px;
|
|
|
+ border-top: 1px solid #ddd;
|
|
|
+}
|
|
|
+.swiper {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.box {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 30px 0;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.flex {
|
|
|
+ width: 100%;
|
|
|
+ height: 32px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.icon1 {
|
|
|
+ width: 32px;
|
|
|
+ height: 32px;
|
|
|
+ background: url("../../assets/images/u3077.svg") no-repeat;
|
|
|
+ display: inline-block;
|
|
|
+ background-size: 100% 100%;
|
|
|
+}
|
|
|
</style>
|