2022-10-17 10:13:22 +08:00
|
|
|
<template>
|
2022-10-20 09:09:17 +08:00
|
|
|
<div class="containerBox">
|
|
|
|
|
<div class="right1">
|
2022-10-20 13:59:11 +08:00
|
|
|
<span @click="change(0)" :class="number == 0 ? 'newStyle' : 'btn_anniu'">实时数据</span>
|
|
|
|
|
<span @click="change(1)" :class="number == 1 ? 'newStyle' : 'btn_anniu'">零碳展厅</span>
|
2022-10-20 09:09:17 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="right3">
|
2022-10-20 13:59:11 +08:00
|
|
|
<div class="dropDown" v-show="0 === number">
|
2022-10-24 14:06:32 +08:00
|
|
|
<el-select v-model="Equipment" >
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in options"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.value">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
2022-10-20 13:59:11 +08:00
|
|
|
</div>
|
|
|
|
|
<div v-show="0 === number" ref="centerChart" class="centerChart" id="right2"></div>
|
2022-10-20 11:19:41 +08:00
|
|
|
<div class="right4" v-show="1 === number">
|
|
|
|
|
<!-- <p><img src="@/views/projectAdmin/fourEngin/assets/images/common/video_bg.jpg"></p> -->
|
2022-10-20 13:59:11 +08:00
|
|
|
<videoPhoto class="video"></videoPhoto>
|
|
|
|
|
</div>
|
2022-10-17 10:13:22 +08:00
|
|
|
|
2022-10-20 13:59:11 +08:00
|
|
|
|
2022-10-17 10:13:22 +08:00
|
|
|
</div>
|
2022-10-20 09:09:17 +08:00
|
|
|
</div>
|
2022-10-17 10:13:22 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-10-20 11:19:41 +08:00
|
|
|
import videoPhoto from '@/views/projectAdmin/fourEngin/components/videoPhotoTwo'
|
2022-10-20 09:09:17 +08:00
|
|
|
// import centerTops from '@/views/projectAdmin/jlw/envirManage/centerTop'
|
2022-10-20 13:59:11 +08:00
|
|
|
import { environmentDevList } from '@/assets/js/api/environmentManage'
|
|
|
|
|
import { getRealTimeDustNoiseDataApi } from '@/assets/js/api/environmentManage'
|
|
|
|
|
import echarts from 'echarts4'
|
2022-10-17 10:13:22 +08:00
|
|
|
export default {
|
2022-10-20 13:59:11 +08:00
|
|
|
components: {
|
|
|
|
|
videoPhoto
|
2022-10-20 11:19:41 +08:00
|
|
|
},
|
2022-10-17 10:13:22 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
2022-10-24 14:06:32 +08:00
|
|
|
options:
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
value: '设备一',
|
|
|
|
|
label: '设备一'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '设备二',
|
|
|
|
|
label: '设备二'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: '设备三',
|
|
|
|
|
label: '设备三'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
Equipment: '设备一',
|
2022-10-20 09:09:17 +08:00
|
|
|
number: 0,
|
|
|
|
|
devList: [],
|
2022-10-17 10:13:22 +08:00
|
|
|
currentDevDetail: {},
|
|
|
|
|
onlineDevNum: 0,
|
|
|
|
|
offlineDevNum: 0,
|
|
|
|
|
realTimeDustNoiseDataTime: null, //圆形图实时刷新计时器
|
|
|
|
|
plantCap: {
|
2022-10-20 13:59:11 +08:00
|
|
|
crc: '--',
|
|
|
|
|
humidity: '--',
|
|
|
|
|
noise: '--',
|
|
|
|
|
plateHumidity: '--',
|
|
|
|
|
plateTemperature: '--',
|
|
|
|
|
pm10: '--',
|
|
|
|
|
pm25: '--',
|
|
|
|
|
pressure: '--',
|
|
|
|
|
temperature: '--',
|
|
|
|
|
tsp: '--',
|
|
|
|
|
voltage: '--',
|
|
|
|
|
winddirectionName: '--',
|
|
|
|
|
windspeed: '--'
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-17 10:13:22 +08:00
|
|
|
},
|
2022-10-20 13:59:11 +08:00
|
|
|
mounted() {
|
|
|
|
|
this.createCenterChart()
|
2022-10-20 09:09:17 +08:00
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// this.getDevList();
|
|
|
|
|
// });
|
2022-10-17 10:13:22 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getDevList() {
|
2022-10-20 13:59:11 +08:00
|
|
|
environmentDevList({ projectSn: this.$store.state.projectSn }).then(result => {
|
|
|
|
|
console.log('列表', result)
|
|
|
|
|
this.devList = result.result
|
|
|
|
|
console.log(this.devList)
|
|
|
|
|
if (result.result.length > 0) {
|
|
|
|
|
this.currentDevDetail = result.result[0]
|
2022-10-17 10:13:22 +08:00
|
|
|
|
2022-10-20 13:59:11 +08:00
|
|
|
this.$emit('custClick', this.currentDevDetail)
|
2022-10-17 10:13:22 +08:00
|
|
|
|
2022-10-20 13:59:11 +08:00
|
|
|
this.offlineDevNum = 0
|
|
|
|
|
this.onlineDevNum = 0
|
|
|
|
|
this.devList.forEach(element => {
|
|
|
|
|
if (element.isClosed == 2) {
|
|
|
|
|
this.offlineDevNum++
|
|
|
|
|
} else {
|
|
|
|
|
this.onlineDevNum++
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.getRealTimeDustNoiseData()
|
|
|
|
|
// this.realTimeDustNoiseDataTime = setInterval( () => {
|
|
|
|
|
// this.getRealTimeDustNoiseData();
|
|
|
|
|
// },5000)
|
|
|
|
|
// this.selectDustNoiseData(); 近24H
|
|
|
|
|
} else {
|
|
|
|
|
// this.createCenterChart();
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
})
|
2022-10-17 10:13:22 +08:00
|
|
|
},
|
2022-10-20 09:09:17 +08:00
|
|
|
/** 查询 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.getDevList()
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// // 切换设备
|
|
|
|
|
realTimeMonitor(value) {
|
|
|
|
|
if (this.realTimeDustNoiseDataTime) {
|
2022-10-20 13:59:11 +08:00
|
|
|
clearInterval(this.realTimeDustNoiseDataTime)
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
console.log('id换了吗', value)
|
|
|
|
|
this.currentDevDetail = value
|
2022-10-20 09:09:17 +08:00
|
|
|
|
2022-10-20 13:59:11 +08:00
|
|
|
this.getRealTimeDustNoiseData()
|
2022-10-20 09:09:17 +08:00
|
|
|
// this.realTimeDustNoiseDataTime = setInterval( () => {
|
|
|
|
|
// this.getRealTimeDustNoiseData();
|
|
|
|
|
// },5000)
|
|
|
|
|
// this.getRealTimeDustNoiseData();
|
|
|
|
|
|
|
|
|
|
// this.selectDustNoiseData(); 近24H
|
|
|
|
|
},
|
2022-10-17 10:13:22 +08:00
|
|
|
//获取环境设备详情数据
|
|
|
|
|
getRealTimeDustNoiseData() {
|
|
|
|
|
let data = {
|
|
|
|
|
deviceId: this.currentDevDetail.deviceId,
|
2022-10-20 09:09:17 +08:00
|
|
|
projectSn: this.$store.state.projectSn
|
2022-10-20 13:59:11 +08:00
|
|
|
}
|
|
|
|
|
console.log(data)
|
2022-10-17 10:13:22 +08:00
|
|
|
getRealTimeDustNoiseDataApi(data).then(res => {
|
|
|
|
|
if (res.code == 200) {
|
2022-10-20 13:59:11 +08:00
|
|
|
console.log(res.result)
|
2022-10-20 09:09:17 +08:00
|
|
|
if (res.result != null) {
|
2022-10-20 13:59:11 +08:00
|
|
|
this.plantCap = res.result
|
2022-10-17 10:13:22 +08:00
|
|
|
} else {
|
|
|
|
|
this.plantCap = {
|
2022-10-20 13:59:11 +08:00
|
|
|
crc: '--',
|
|
|
|
|
humidity: '--',
|
|
|
|
|
noise: '--',
|
|
|
|
|
plateHumidity: '--',
|
|
|
|
|
plateTemperature: '--',
|
|
|
|
|
pm10: '--',
|
|
|
|
|
pm25: '--',
|
|
|
|
|
pressure: '--',
|
|
|
|
|
temperature: '--',
|
|
|
|
|
tsp: '--',
|
|
|
|
|
voltage: '--',
|
|
|
|
|
winddirectionName: '--',
|
|
|
|
|
windspeed: '--'
|
|
|
|
|
}
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
this.createCenterChart()
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
})
|
2022-10-17 10:13:22 +08:00
|
|
|
},
|
2022-10-20 09:09:17 +08:00
|
|
|
//展示数据/视频播放切换
|
2022-10-20 13:59:11 +08:00
|
|
|
change: function(index) {
|
|
|
|
|
console.log(111)
|
|
|
|
|
this.number = index
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
2022-10-20 13:59:11 +08:00
|
|
|
|
2022-10-20 09:09:17 +08:00
|
|
|
//环境监测实时数据--图表
|
|
|
|
|
createCenterChart() {
|
2022-10-20 13:59:11 +08:00
|
|
|
let centerChart = echarts.init(this.$refs.centerChart)
|
|
|
|
|
console.log('this.$refs.centerChart')
|
|
|
|
|
console.log(this.$refs.centerChart.offsetHeight)
|
|
|
|
|
centerChart.clear()
|
|
|
|
|
let detailData = this.$t('message.environmentalOverview.plantCap')
|
2022-10-20 09:09:17 +08:00
|
|
|
for (let i = 0; i < detailData.length; i++) {
|
|
|
|
|
if (detailData[i].id == 1) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.humidity //湿度
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 2) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.pm25 //pm2.5
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 3) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.temperature //温度
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 4) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.tsp //tsp
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 5) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.windspeed //风速
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 6) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.pm10 // pm10
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 7) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.winddirectionName
|
2022-10-20 09:09:17 +08:00
|
|
|
} else if (detailData[i].id == 8) {
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value = this.plantCap.pressure ? this.plantCap.pressure : '--'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
detailData[i].value += detailData[i].unit
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
var plantCap = detailData
|
2022-10-20 09:09:17 +08:00
|
|
|
|
|
|
|
|
var datalist = [
|
|
|
|
|
{
|
|
|
|
|
offset: [50, 55],
|
|
|
|
|
symbolSize: 100,
|
|
|
|
|
opacity: 0.95,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#29c0fb'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#2dc5b9'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: [30, 85],
|
|
|
|
|
symbolSize: 70,
|
|
|
|
|
opacity: 0.95,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#35d17e'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#49ddb2'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: [15, 50],
|
|
|
|
|
symbolSize: 80,
|
|
|
|
|
opacity: 0.95,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#e5d273'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#e4a37f'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: [40, 20],
|
|
|
|
|
symbolSize: 70,
|
|
|
|
|
opacity: 0.95,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#277aec'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#57c5ec'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: [85, 58],
|
|
|
|
|
symbolSize: 65,
|
|
|
|
|
opacity: 0.95,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#e54948'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#f08456'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: [76, 20],
|
|
|
|
|
symbolSize: 70,
|
|
|
|
|
opacity: 0.7,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#11c46e'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#f08456'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: [68, 82],
|
|
|
|
|
symbolSize: 65,
|
|
|
|
|
opacity: 0.68,
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#6367E0'
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#B667F0'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
]
|
|
|
|
|
var datas = []
|
2022-10-20 09:09:17 +08:00
|
|
|
for (var i = 0; i < plantCap.length; i++) {
|
2022-10-20 13:59:11 +08:00
|
|
|
var item = plantCap[i]
|
|
|
|
|
var itemToStyle = datalist[i]
|
2022-10-20 09:09:17 +08:00
|
|
|
datas.push({
|
2022-10-20 13:59:11 +08:00
|
|
|
name: item.value + '\n' + item.name,
|
2022-10-20 09:09:17 +08:00
|
|
|
value: itemToStyle.offset,
|
|
|
|
|
symbolSize: itemToStyle.symbolSize,
|
|
|
|
|
label: {
|
|
|
|
|
normal: {
|
|
|
|
|
textStyle: {
|
|
|
|
|
fontSize: 16,
|
|
|
|
|
fontWeight: 800,
|
|
|
|
|
lineHeight: 22
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
color: itemToStyle.color,
|
|
|
|
|
opacity: itemToStyle.opacity
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
})
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
let option1 = {
|
|
|
|
|
grid: {
|
|
|
|
|
show: false,
|
|
|
|
|
top: 10,
|
|
|
|
|
bottom: 10
|
|
|
|
|
},
|
|
|
|
|
xAxis: [
|
|
|
|
|
{
|
|
|
|
|
gridIndex: 0,
|
2022-10-20 13:59:11 +08:00
|
|
|
type: 'value',
|
2022-10-20 09:09:17 +08:00
|
|
|
show: false,
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 100,
|
2022-10-20 13:59:11 +08:00
|
|
|
nameLocation: 'middle',
|
2022-10-20 09:09:17 +08:00
|
|
|
nameGap: 5
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
yAxis: [
|
|
|
|
|
{
|
|
|
|
|
gridIndex: 0,
|
|
|
|
|
min: 0,
|
|
|
|
|
show: false,
|
|
|
|
|
max: 100,
|
2022-10-20 13:59:11 +08:00
|
|
|
nameLocation: 'middle',
|
2022-10-20 09:09:17 +08:00
|
|
|
nameGap: 30
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
series: [
|
|
|
|
|
{
|
2022-10-20 13:59:11 +08:00
|
|
|
type: 'effectScatter',
|
2022-10-20 09:09:17 +08:00
|
|
|
// symbol: 'circle',
|
|
|
|
|
// symbolSize: 120,
|
|
|
|
|
|
|
|
|
|
hoverAnimation: true,
|
|
|
|
|
label: {
|
|
|
|
|
normal: {
|
|
|
|
|
show: true,
|
2022-10-20 13:59:11 +08:00
|
|
|
formatter: '{b}',
|
|
|
|
|
color: '#fff',
|
2022-10-20 09:09:17 +08:00
|
|
|
textStyle: {
|
2022-10-20 13:59:11 +08:00
|
|
|
fontSize: '20'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
2022-10-20 13:59:11 +08:00
|
|
|
color: '#00acea'
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data: datas
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-10-20 13:59:11 +08:00
|
|
|
}
|
|
|
|
|
centerChart.setOption(option1)
|
|
|
|
|
window.onresize = centerChart.resize
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-20 09:09:17 +08:00
|
|
|
},
|
2022-10-20 13:59:11 +08:00
|
|
|
watch: {
|
|
|
|
|
plantCap: {
|
|
|
|
|
handler(newVal, oldVal) {
|
|
|
|
|
if (newVal != oldVal) {
|
|
|
|
|
this.createCenterChart()
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-17 10:13:22 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.containerBox {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin-top: 3%;
|
2022-10-20 09:09:17 +08:00
|
|
|
|
|
|
|
|
.right1 {
|
2022-10-17 10:13:22 +08:00
|
|
|
width: 100%;
|
2022-10-20 09:09:17 +08:00
|
|
|
height: 10%;
|
2022-10-17 10:13:22 +08:00
|
|
|
display: flex;
|
2022-10-20 09:09:17 +08:00
|
|
|
margin-left: 35%;
|
2022-10-20 13:59:11 +08:00
|
|
|
|
2022-10-20 09:09:17 +08:00
|
|
|
.btn_anniu {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
// margin-top: 5px;
|
|
|
|
|
// padding-top: 15px;
|
|
|
|
|
width: 140px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-image: url(../assets/images/common/bg_water.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.newStyle {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
// margin-top: 5px;
|
|
|
|
|
// padding-top: 15px; num_bg.png
|
|
|
|
|
width: 140px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-image: url(../assets/images/common/num_bg.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
|
color: #5ce2f6;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-20 09:09:17 +08:00
|
|
|
.right3 {
|
2022-10-20 13:59:11 +08:00
|
|
|
width: 100%;
|
2022-10-20 09:09:17 +08:00
|
|
|
height: 80%;
|
|
|
|
|
margin-top: 25px;
|
2022-10-20 13:59:11 +08:00
|
|
|
.centerChart {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 22px);
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
|
|
|
|
|
#right2 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
.right4 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.video {
|
|
|
|
|
margin-bottom: -50px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-left: 25px;
|
|
|
|
|
width: 850px;
|
|
|
|
|
height: 550px;
|
|
|
|
|
}
|
2022-10-20 09:09:17 +08:00
|
|
|
}
|
2022-10-20 13:59:11 +08:00
|
|
|
.dropDown {
|
|
|
|
|
float: right;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-right: 40px;
|
|
|
|
|
margin-top: -20px;
|
|
|
|
|
width: 100px;
|
2022-10-24 14:06:32 +08:00
|
|
|
height: 20px;
|
|
|
|
|
line-height: 20px;
|
2022-10-20 13:59:11 +08:00
|
|
|
background-color: #305c6d;
|
|
|
|
|
background-image: url(../assets/images/common/bg_sby.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
font-size: 8px;
|
2022-10-24 14:06:32 +08:00
|
|
|
::v-deep .el-select{
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-input__inner {
|
|
|
|
|
background-color: #3e7c86;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-select__caret {
|
|
|
|
|
color: #fff;
|
2022-10-20 13:59:11 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
</style>
|