123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570 |
- <template>
- <div class="table-box">
- <div class="card table-search" style="overflow: hidden;">
- <el-form ref="formRef" :model="searchParam" :inline="true" label-width="auto">
- <el-form-item label="所属基地:" prop="base">
- <el-select v-model="searchParam.base" placeholder="请选择" style="width: 200px">
- <el-option v-for="item in baseOptions" :key="item.value" :label="item.label"
- :value="item.value" />
- </el-select>
- </el-form-item>
- <el-form-item>
- <div>
- <el-button type="primary">查询</el-button>
- <el-button plain @click="resetForm(formRef)">重置</el-button>
- </div>
- </el-form-item>
- </el-form>
- </div>
- <div class="main_list ">
- <el-row :gutter="15">
- <el-col :xs="24" :sm="12" :md="8" :lg="8">
- <div class="chart_item zhuti">
- <div style="font-weight: bold;" class="item_title">
- <span>设备工况(单位:台)</span>
- </div>
- <div class="mt5">
- <div ref="device" class="ve-ring" style="height: 200px"></div>
- </div>
- </div>
- </el-col>
- <el-col :xs="24" :sm="12" :md="8" :lg="8">
- <div class="chart_item zhuti">
- <div style="font-weight: bold;" class="item_title">
- <span>检定周期(单位:台)</span>
- </div>
- <div class="mt5">
- <div ref="period" class="ve-ring" style="height: 200px"></div>
- </div>
- </div>
- </el-col>
- <el-col :xs="24" :sm="12" :md="8" :lg="8">
- <div class="chart_item zhuti">
- <div style="font-weight: bold;" class="item_title">
- <span>FTP链路</span>
- </div>
- <div class="mt5">
- <div class="FTP_box" style="height: 200px">
- <div class="FTP_item">
- <img src="@/assets/images/centerStation.png" alt="">
- <div>中心站FTP</div>
- </div>
- <div class="FTP_item">
- <img src="@/assets/images/areaStation.png" alt="">
- <div>中心站FTP</div>
- </div>
- </div>
- </div>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="15">
- <el-col :span="24">
- <div class="chart_item zhuti">
- <div style="font-weight: bold;" class="item_title">
- <span>危险天气</span>
- </div>
- <el-row :gutter="15">
- <el-col :span="8">
- <div class="mt5">
- <div ref="weather" class="ve-ring" style="height: 300px"></div>
- </div>
- </el-col>
- <el-col :span="16" style="margin-bottom: 0;">
- <div>
- <div ref="element" class="ve-ring" style="height: 300px"></div>
- </div>
- </el-col>
- </el-row>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="15">
- <el-col :span="24">
- <div class="chart_item zhuti">
- <div style="font-weight: bold;" class="item_title">
- <span>到报监控</span>
- </div>
- <div class="mt5">
- <div ref="control" class="ve-ring" style="height: 300px"></div>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- </div>
- </template>
- <script setup lang="ts" name="allDevice">
- import * as echarts from 'echarts';
- import { ref, reactive, onMounted, computed, watch } from "vue";
- import { useRouter } from "vue-router";
- import { useGlobalStore } from "@/stores/modules/global";
- const formRef = ref()
- const device = ref()
- const period = ref()
- const weather = ref()
- const element = ref()
- const control = ref()
- const router = useRouter();
- const searchParam = reactive({
- base: undefined,
- })
- const baseOptions = ref([{
- value: 0,
- label: '基地1',
- },
- {
- value: 1,
- label: '基地2',
- }])
- // resetForm
- const resetForm = (formEl) => {
- if (!formEl) return;
- formEl.resetFields();
- };
- const globalStore = useGlobalStore();
- const isDark = computed(() => globalStore.isDark);
- const showDevice = () => {
- // console.log(isDark.value,'颜色');
- let mychart = echarts.init(device.value);
- let option = {
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b}: {c}台"
- },
- legend: {
- bottom: '1%',
- left: 'center',
- textStyle: {//图例文字的样式
- color: isDark.value ? '#fff' : "#000",
- }
- },
- series: [
- {
- name: '设备工况',
- type: 'pie',
- radius: ['50%', '70%'],
- center: ['50%', '45%'],
- hoverAnimation: false,
- itemStyle: {
- borderRadius: 3,
- borderColor: '#fff',
- borderWidth: 1
- },
- label: {
- normal: {
- show: true,
- position: 'outer',
- formatter: '{b}:{c}',
- overflow: 'none',
- fontSize: 15,
- },
- },
- emphasis: {
- label: {
- show: true,
- fontSize: 20,
- fontWeight: 'bold'
- }
- },
- //设置提示线
- labelLine: {
- normal: {
- show: true,//开启提示线展示
- length: 15,//设置第一条提示线长度
- length2: 30,//设置第二条提示线长度
- }
- },
- data: [
- {
- value: 4,
- name: '正常',
- itemStyle: { color: '#00C4B3' },
- label: { color: '#00C4B3' }
- },
- {
- value: 1,
- name: '告警',
- itemStyle: { color: '#EF6666' },
- label: { color: '#EF6666' }
- }
- ]
- }
- ]
- };
- mychart.setOption(option)
- window.addEventListener("resize", function () {
- mychart.resize();
- });
- }
- const showPeriod = () => {
- let mychart = echarts.init(period.value);
- let option = {
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b}: {c}台"
- },
- legend: {
- bottom: 0,
- left: 'center',
- textStyle: {//图例文字的样式
- color: isDark.value ? '#fff' : "#000",
- }
- },
- series: [
- {
- name: '检定周期',
- type: 'pie',
- radius: '70%',
- center: ['50%', '45%'],
- data: [
- { value: 3, name: '剩余31-60天', itemStyle: { color: '#5470C6' } },
- { value: 1, name: '剩余1-30天', itemStyle: { color: '#FAC858' } },
- { value: 1, name: '已过检', itemStyle: { color: '#EF6666' } }
- ],
- emphasis: {
- itemStyle: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- }
- }
- ]
- };
- mychart.setOption(option)
- window.addEventListener("resize", function () {
- mychart.resize();
- });
- }
- const allSataion = ref(5)
- const showWeather = () => {
- let mychart = echarts.init(weather.value);
- let option = {
- title: {
- text: `${allSataion.value} \n 总站数 `,
- left: "center",
- top: "38%",
- textStyle: {
- fontSize: 20,
- color: '#000',
- },
- },
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b}: {c}"
- },
- legend: {
- bottom: '1%',
- left: 'center',
- textStyle: {//图例文字的样式
- color: isDark.value ? '#fff' : "#000",
- }
- },
- series: [
- {
- name: '设备工况',
- type: 'pie',
- radius: ['50%', '70%'],
- center: ['50%', '45%'],
- hoverAnimation: false,
- itemStyle: {
- borderRadius: 3,
- borderColor: '#fff',
- borderWidth: 1
- },
- label: {
- normal: {
- show: true,
- position: 'outer',
- formatter: '{b}:{c}',
- overflow: 'none',
- fontSize: 15,
- },
- },
- emphasis: {
- label: {
- show: true,
- fontSize: 20,
- fontWeight: 'bold'
- }
- },
- //设置提示线
- labelLine: {
- normal: {
- show: true,//开启提示线展示
- length: 15,//设置第一条提示线长度
- length2: 30,//设置第二条提示线长度
- }
- },
- data: [
- {
- value: 4,
- name: '正常',
- itemStyle: { color: '#5470C6' },
- label: { color: '#5470C6' }
- },
- {
- value: 1,
- name: '告警',
- itemStyle: { color: '#EF6666' },
- label: { color: '#EF6666' }
- }
- ]
- }
- ]
- };
- mychart.setOption(option)
- window.addEventListener("resize", function () {
- mychart.resize();
- });
- }
- const showElement = () => {
- let mychart = echarts.init(element.value);
- let option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- grid: {
- top: '3%',
- left: '3%',
- right: '4%',
- bottom: '0%',
- containLabel: true
- },
- xAxis: [
- {
- type: 'category',
- data: [
- '能见度',
- '风速',
- '大气电场',
- '云量',
- '云高',
- '温度',
- '湿度',
- '小时雨量'
- ]
- }
- ],
- yAxis: [
- {
- type: 'value'
- }
- ],
- series: [
- {
- name: '正常',
- barWidth: '50%',
- type: 'bar',
- stack: 'Ad',
- emphasis: {
- focus: 'series'
- },
- itemStyle: {
- color: '#5470C6'
- },
- data: [5, 5, 5, 5, 4, 5, 5, 5]
- },
- {
- name: '告警',
- barWidth: '50%',
- type: 'bar',
- stack: 'Ad',
- emphasis: {
- focus: 'series'
- },
- itemStyle: {
- color: '#EF6666'
- },
- data: [0, 0, 0, 0, 1, 0, 0, 0]
- }
- ]
- };
- mychart.setOption(option)
- window.addEventListener("resize", function () {
- mychart.resize();
- });
- }
- const showControl = () => {
- let mychart = echarts.init(control.value);
- let option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- legend: {
- textStyle: {//图例文字的样式
- color: isDark.value ? '#fff' : "#000",
- }
- },
- grid: {
- left: '15',
- right: '15',
- bottom: '3%',
- containLabel: true
- },
- xAxis: [
- {
- type: 'category',
- data: ['00:00', '01:00', '02:00', '03:00', '04:00', '05:00', '06:00', '07:00', '08:00', '09:00', '10:00', '11:00', '12:00', '13:00', '14:00', '15:00', '16:00', '17:00', '18:00', '19:00', '20:00', '21:00', '22:00', '23:00']
- }
- ],
- yAxis: [
- {
- type: 'value'
- }
- ],
- series: [
- {
- name: '应报情况',
- type: 'bar',
- stack: 'Ad',
- emphasis: {
- focus: 'series'
- },
- itemStyle: {
- color: '#3BA272' // 蓝色
- },
- data: [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]
- },
- {
- name: '实报情况',
- type: 'bar',
- stack: 'Ad',
- emphasis: {
- focus: 'series'
- },
- itemStyle: {
- color: '#5470C6' // 绿色
- },
- data: [5, 4, 1, 2, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5]
- },
- {
- name: '未报情况',
- type: 'bar',
- stack: 'Ad',
- emphasis: {
- focus: 'series'
- },
- itemStyle: {
- color: '#EF6666' // 红色
- },
- data: [1, 2, 5, 4, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1]
- },
- ]
- };
- mychart.setOption(option)
- window.addEventListener("resize", function () {
- mychart.resize();
- });
- }
- watch(isDark, () => { showDevice(), showPeriod(), showWeather(), showElement(), showControl() });
- onMounted(() => {
- showDevice()
- showPeriod()
- showWeather()
- showElement()
- showControl()
- })
- </script>
- <style scoped lang="scss">
- .el-row .el-col {
- margin-bottom: 15px;
- }
- .main_list {
- background: transparent !important;
- box-shadow: none !important;
- padding: 0 !important;
- height: calc(100vh - 150px);
- margin-bottom: 10px;
- overflow-y: scroll;
- overflow-x: hidden;
- .chart_item {
- border-radius: 10px;
- padding: 10px;
- background-color: #fff;
- // height: 100%;
- // margin-bottom: 15px;
- .item_title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .FTP_box {
- padding: 0 50px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .FTP_item {
- flex: 1;
- flex-shrink: 0;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- img {
- width: 56px;
- margin-bottom: 20px;
- }
- }
- }
- }
- .info_box {
- .info_title {
- color: #999999;
- font-size: 16px;
- }
- .info_content {
- height: 40px;
- font-weight: bold;
- color: #000;
- font-size: 26px;
- }
- }
- }
- </style>
|