map/ui/dasadmin/src/views/backend/home/home.vue

643 lines
24 KiB
Vue
Raw Normal View History

2024-11-19 13:49:22 +08:00
<template>
<div class="default-main" ref="HomeHight">
2024-12-18 13:18:45 +08:00
<el-row style="margin: 0px;">
<el-col :md="24" :lg="24" class="col-center" style="padding-right: 10px;">
2024-11-19 13:49:22 +08:00
<div class="grid-content ep-bg-purple-light">
<!--风机矩阵-->
<div class="matrix panelBg">
2024-12-18 13:18:45 +08:00
<div class="homeHeader">
<div class="cardLabel">风机矩阵</div>
2024-12-19 15:05:36 +08:00
<div class="cardBtn">
<el-radio-group v-model="overviewSlotData">
2024-12-20 09:14:03 +08:00
<el-radio value="">全部</el-radio>
2024-12-19 15:05:36 +08:00
<el-radio value="一期">一期</el-radio>
<el-radio value="二期">二期</el-radio>
</el-radio-group>
</div>
<div class="headerRight">
<el-row>
<el-col>
<div class="overviewItem">
<div class="small-base">平均风速:<span>{{ realData.attributeMap.windfarmavgwindspeed}}m/s</span></div>
<div class="small-base">实时有功:<span>{{ realData.attributeMap.windfarmactivepower}}kW</span></div>
<div class="small-base">实时无功:<span>{{ realData.attributeMap.windfarmreactivepower}}kVar</span></div>
<div class="small-base">日发电量:<span>{{ realData.attributeMap.windfarmdayprodenergy}}万kWh</span></div>
<div class="small-base">月发电量:<span>{{ realData.attributeMap.windfarmmonthprodenergy}}万kWh</span></div>
<div class="small-base">年发电量:<span>{{ realData.attributeMap.windfarmyearprodenergy}}万kWh</span></div>
</div>
<div class="overviewItem" style="border: none;">
<div class="small-base">并网:<span>{{ realData.attributeMap.turbinecountpowerprod}}</span></div>
<div class="small-base">停机/待机:<span>{{ realData.attributeMap.turbinecountidle}}</span></div>
<div class="small-base">故障:<span>{{ realData.attributeMap.turbinecountfaulted}}</span></div>
<div class="small-base">维护:<span>{{ realData.attributeMap.turbinecountservice}}</span></div>
<div style="padding: 0;" class="small-base">无通讯:<span>{{ realData.attributeMap.turbinecountdisconnected}}</span></div>
</div>
</el-col>
</el-row>
</div>
2024-12-18 13:18:45 +08:00
</div>
2024-11-19 13:49:22 +08:00
<el-scrollbar>
<WindContent :parentData="FanList" @StatusListData="StatusListData"></WindContent>
</el-scrollbar>
</div>
</div>
</el-col>
</el-row>
</div>
</template>
<script setup lang="ts">
2024-12-18 13:18:45 +08:00
import { onMounted, reactive, ref, onUnmounted } from 'vue'
2024-11-19 13:49:22 +08:00
import { useI18n } from 'vue-i18n'
2024-12-18 13:18:45 +08:00
import WindContent from '/@/views/backend/home/windMatrixpage.vue'
2024-12-19 15:05:36 +08:00
import { getWindFarmRealData, getWindTurbineMatrixData } from '/@/api/backend/dashboard.ts'
2024-11-19 13:49:22 +08:00
import { dayjs, ElMessage, ElMessageBox, TableInstance } from 'element-plus'
2024-12-19 15:05:36 +08:00
import { getRealTimeState,malFunctionKeys } from '/@/views/backend/equipment/airBlower/utils.ts'
2024-11-19 13:49:22 +08:00
import { useRoute } from 'vue-router'
2024-12-18 13:18:45 +08:00
import { getParamList } from '/@/api/backend/SystemParam/request'
2024-12-19 15:05:36 +08:00
import { queryfaultCodeDict } from '/@/api/backend/theoreticalpowerCurve/request'
import { useEnumStore } from '/@/stores/enums'
2024-12-19 17:10:23 +08:00
import {equipList} from "/@/api/backend/realData/request";
2024-12-19 15:05:36 +08:00
2024-11-19 13:49:22 +08:00
2024-12-19 15:05:36 +08:00
const route = useRoute()
const enumStore = useEnumStore()
2024-11-19 13:49:22 +08:00
const d = new Date()
const { t } = useI18n()
let timer: any = null
let myTable = ref<TableInstance>()
2024-12-19 17:10:23 +08:00
const windList=ref([])
2024-11-19 13:49:22 +08:00
2024-12-20 09:14:03 +08:00
const overviewSlotData= ref('')
2024-12-19 15:05:36 +08:00
2024-11-19 13:49:22 +08:00
const realData = ref({
windFarmId: '',
attributeMap: {},
})
2024-12-18 13:18:45 +08:00
const attributeList = ref({
attributesList:[
'windfarmactivepower',
'windfarmreactivepower',
'windfarmavgwindspeed',
'windfarmdayprodenergy',
'windfarmmonthprodenergy',
'windfarmyearprodenergy',
'turbinecountpowerprod',
'turbinecountidle',
'turbinecountdisconnected',
2024-12-19 15:05:36 +08:00
'turbinecountservice',
'turbinecountfaulted'
2024-12-18 13:18:45 +08:00
]
})
2024-11-19 13:49:22 +08:00
const formatAttributeValue = (value: any) => {
if (value === undefined) {
return '-'
}
if (typeof value !== 'number') {
throw new Error('Invalid data type for attribute value')
}
return value % 1 === 0 ? value : value.toFixed(2)
}
const overviewList = () => {
2024-12-18 13:18:45 +08:00
getWindFarmRealData(attributeList.value).then((res) => {
2024-11-19 13:49:22 +08:00
if (res.code == 200) {
res.data.attributeMap.windfarmactivepower = formatAttributeValue(res.data.attributeMap.windfarmactivepower)
2024-12-18 13:18:45 +08:00
res.data.attributeMap.windfarmreactivepower = formatAttributeValue(res.data.attributeMap.windfarmreactivepower)
2024-11-19 13:49:22 +08:00
res.data.attributeMap.windfarmavgwindspeed = formatAttributeValue(res.data.attributeMap.windfarmavgwindspeed)
2024-12-18 13:18:45 +08:00
res.data.attributeMap.windfarmdayprodenergy = formatAttributeValue(res.data.attributeMap.windfarmdayprodenergy/10000)
res.data.attributeMap.windfarmmonthprodenergy = formatAttributeValue(res.data.attributeMap.windfarmmonthprodenergy/10000)
res.data.attributeMap.windfarmyearprodenergy = formatAttributeValue(res.data.attributeMap.windfarmyearprodenergy/10000)
res.data.attributeMap.turbinecountpowerprod =
res.data.attributeMap.turbinecountpowerprod !== undefined
? res.data.attributeMap.turbinecountpowerprod % 1 === 0
? res.data.attributeMap.turbinecountpowerprod
: res.data.attributeMap.turbinecountpowerprod.toFixed(0)
: '0'
res.data.attributeMap.turbinecountidle =
res.data.attributeMap.turbinecountidle !== undefined
? res.data.attributeMap.turbinecountidle % 1 === 0
? res.data.attributeMap.turbinecountidle
: res.data.attributeMap.turbinecountidle.toFixed(0)
: '0'
res.data.attributeMap.turbinecountdisconnected =
res.data.attributeMap.turbinecountdisconnected !== undefined
? res.data.attributeMap.turbinecountdisconnected % 1 === 0
? res.data.attributeMap.turbinecountdisconnected
: res.data.attributeMap.turbinecountdisconnected.toFixed(0)
: '0'
res.data.attributeMap.turbinecountservice =
res.data.attributeMap.turbinecountservice !== undefined
? res.data.attributeMap.turbinecountservice % 1 === 0
? res.data.attributeMap.turbinecountservice
: res.data.attributeMap.turbinecountservice.toFixed(0)
: '0'
2024-12-19 15:05:36 +08:00
res.data.attributeMap.turbinecountfaulted =
res.data.attributeMap.turbinecountfaulted !== undefined
? res.data.attributeMap.turbinecountfaulted % 1 === 0
? res.data.attributeMap.turbinecountfaulted
: res.data.attributeMap.turbinecountfaulted.toFixed(0)
: '0'
2024-11-19 13:49:22 +08:00
const data: any = {
windFarmId: res.data.windFarmId,
attributeMap: {
windfarmactivepower: res.data.attributeMap.windfarmactivepower,
2024-12-18 13:18:45 +08:00
windfarmreactivepower: res.data.attributeMap.windfarmreactivepower,
2024-11-19 13:49:22 +08:00
windfarmavgwindspeed: res.data.attributeMap.windfarmavgwindspeed,
2024-12-18 13:18:45 +08:00
windfarmdayprodenergy: res.data.attributeMap.windfarmdayprodenergy,
windfarmmonthprodenergy: res.data.attributeMap.windfarmmonthprodenergy,
2024-11-19 13:49:22 +08:00
windfarmyearprodenergy: res.data.attributeMap.windfarmyearprodenergy,
2024-12-18 13:18:45 +08:00
turbinecountpowerprod: res.data.attributeMap.turbinecountpowerprod,
turbinecountidle: res.data.attributeMap.turbinecountidle,
turbinecountdisconnected: res.data.attributeMap.turbinecountdisconnected,
2024-12-19 15:05:36 +08:00
turbinecountservice: res.data.attributeMap.turbinecountservice,
turbinecountfaulted: res.data.attributeMap.turbinecountfaulted,
2024-11-19 13:49:22 +08:00
},
}
realData.value = data
} else {
ElMessage.error({
message: res.msg,
type: 'error',
})
}
})
}
2024-12-18 13:18:45 +08:00
const PARAM_COLOR = 'paramColor';
const PARAM_LAYOUT = 'paramLayout';
const paramColorData=ref([])
const paramLayoutData=ref([])
const getList=()=>{
getParamList().then((res)=>{
res.data.forEach((item, index) => {
if (item.paramName === PARAM_COLOR && res.data && res.data[index]) {
paramColorData.value = res.data[index].paramValueJson;
}
if (item.paramName === PARAM_LAYOUT && res.data && res.data[index]) {
paramLayoutData.value = res.data[index].paramValueJson;
}
});
})
}
2024-11-19 13:49:22 +08:00
const currentDayStatus = ref({
windTurbineNum: 0,
installedCapacity: 0,
runCapacityTotal: 0,
runNum: 0,
standbyCapacityTotal: 0,
standbyNum: 0,
faultCapacityTotal: 0,
faultNum: 0,
offlineCapacityTotal: 0,
offlineNum: 0,
StandCapacityTotal: 0,
StandNum: 0,
StartCapacityTotal: 0,
StarteNum: 0,
})
2024-12-19 15:05:36 +08:00
2024-11-19 13:49:22 +08:00
const deviceCode = ref([])
const FanList = ref([])
const StatusListData = () => {
2024-12-19 15:05:36 +08:00
getWindTurbineMatrixData(
{
objectType: 10002,
2024-12-20 09:14:03 +08:00
belongProject: overviewSlotData.value,
2024-12-19 15:05:36 +08:00
attributesList: [
2024-12-19 15:16:02 +08:00
'iwindspeed',
2024-12-19 15:05:36 +08:00
'iturbineoperationmode',
'iyplevel',
'gridlostdetected',
'ibplevel',
'igenpower',
'ikwhthisday',
'Locked',
'ProcessedOperationMode',
'iRotorSpeed',
'ActiveStatusCode01',
'ActiveStatusCode02',
'ActiveStatusCode03',
'ActiveStatusCode04',
'ActiveStatusCode05',
'ActiveStatusCode06',
'ActiveStatusCode07',
'ActiveStatusCode08',
'FirstTriggeredCode'
]
}
).then((res) => {
2024-11-19 13:49:22 +08:00
if (res.code == 200) {
currentDayStatus.value.windTurbineNum = res.data.length
const data = res.data.map((item, index) => {
2024-12-18 13:18:45 +08:00
let color:any=''
2024-11-19 13:49:22 +08:00
const state = getRealTimeState(item.attributeMap)
2024-12-19 15:05:36 +08:00
let firsttriggeredcode=item.attributeMap.firsttriggeredcode
2024-12-19 16:23:48 +08:00
if (enumStore.keys.includes('FirstTriggeredCode')) {
2024-12-19 15:05:36 +08:00
firsttriggeredcode = enumStore.data['FirstTriggeredCode'][firsttriggeredcode]
2024-12-19 16:23:48 +08:00
}
2024-12-20 09:14:03 +08:00
/*if (malFunctionKeys.includes('FirstTriggeredCode')) {
2024-12-19 16:23:48 +08:00
firsttriggeredcode = malFunctionEnums?.[firsttriggeredcode] ?? firsttriggeredcode
}
2024-12-20 09:14:03 +08:00
*/
2024-12-18 13:18:45 +08:00
paramColorData.value.forEach((item, index) => {
if (item.state == state) {
color = item.color
}
})
2024-11-19 13:49:22 +08:00
item.attributeMap.iwindspeed =
item.attributeMap.iwindspeed !== undefined
? item.attributeMap.iwindspeed % 1 === 0
? item.attributeMap.iwindspeed
: item.attributeMap.iwindspeed.toFixed(2)
: '--'
item.attributeMap.igenpower =
item.attributeMap.igenpower !== undefined
? item.attributeMap.igenpower % 1 === 0
? item.attributeMap.igenpower
: item.attributeMap.igenpower.toFixed(2)
: '--'
item.attributeMap.ikwhthisday =
item.attributeMap.ikwhthisday !== undefined
? item.attributeMap.ikwhthisday % 1 === 0
? item.attributeMap.ikwhthisday
: item.attributeMap.ikwhthisday.toFixed(2)
: '--'
// 初始化计数器和累加器
if (index === 0) {
currentDayStatus.value.runNum = 0
currentDayStatus.value.standbyNum = 0
currentDayStatus.value.StandNum = 0
currentDayStatus.value.StarteNum = 0
currentDayStatus.value.offlineNum = 0
currentDayStatus.value.faultNum = 0
currentDayStatus.value.runCapacityTotal = 0
currentDayStatus.value.standbyCapacityTotal = 0
currentDayStatus.value.StandCapacityTotal = 0
currentDayStatus.value.StartCapacityTotal = 0
currentDayStatus.value.offlineCapacityTotal = 0
currentDayStatus.value.faultCapacityTotal = 0
currentDayStatus.value.installedCapacity = 0
}
// 更新容量
if (item.nominalCapacity !== undefined) {
currentDayStatus.value.installedCapacity += item.nominalCapacity
}
// 根据运行模式更新状态和数量
//const mode = item.attributeMap.iturbineoperationmode
if ([7, 8, 17, 18, 19, 20, 21].includes(state)) {
currentDayStatus.value.runCapacityTotal += item.nominalCapacity
currentDayStatus.value.runNum += 1
} else if ([1, 2, 3, 4, 5, 6].includes(state)) {
currentDayStatus.value.standbyCapacityTotal += item.nominalCapacity
currentDayStatus.value.standbyNum += 1
} else if ([9, 10, 12, 13, 14, 15].includes(state)) {
currentDayStatus.value.StandCapacityTotal += item.nominalCapacity
currentDayStatus.value.StandNum += 1
} else if (state === 16) {
currentDayStatus.value.StartCapacityTotal += item.nominalCapacity
currentDayStatus.value.StarteNum += 1
} else if (state === 0) {
currentDayStatus.value.offlineCapacityTotal += item.nominalCapacity
currentDayStatus.value.offlineNum += 1
} else if (state === 11) {
currentDayStatus.value.faultCapacityTotal += item.nominalCapacity
currentDayStatus.value.faultNum += 1
}
const propertiesToFormat = [
'runCapacityTotal',
'standbyCapacityTotal',
'StandCapacityTotal',
'StartCapacityTotal',
'offlineCapacityTotal',
'faultCapacityTotal',
'installedCapacity',
]
propertiesToFormat.forEach((property) => {
if (currentDayStatus.value[property] !== null && currentDayStatus.value[property] !== undefined) {
currentDayStatus.value[property] = Number(currentDayStatus.value[property].toFixed(1))
}
})
return {
irn: item.irn,
name: item.name ?? '-',
2024-12-18 13:18:45 +08:00
deviceCode:item.deviceCode,
2024-11-19 13:49:22 +08:00
model: item.model || '-',
modelId: item.modelId,
belongLine: item.belongLine || '-',
standard: item.standard,
2024-12-18 13:18:45 +08:00
layout:paramLayoutData.value[0],
2024-12-19 16:23:48 +08:00
madeinFactory: item.madeinFactory || '-',
2024-11-19 13:49:22 +08:00
attributeMap: {
iwindspeed: item.attributeMap.iwindspeed,
igenpower: item.attributeMap.igenpower,
ikwhthisday: item.attributeMap.ikwhthisday,
iturbineoperationmode: state,
2024-12-18 13:18:45 +08:00
processedoperationmode: state,
color:color,
2024-11-19 13:49:22 +08:00
locked: item.attributeMap.locked,
irotorspeed: item.attributeMap.irotorspeed,
2024-12-19 16:23:48 +08:00
firsttriggeredcode:firsttriggeredcode,
2024-12-19 17:10:23 +08:00
//firsttriggeredcode:item.attributeMap.firsttriggeredcode,
2024-11-19 13:49:22 +08:00
},
}
})
FanList.value = data
} else {
ElMessage.error({
message: res.msg,
type: 'error',
})
}
})
}
2024-12-19 16:23:48 +08:00
let malFunctionEnums: any = {}
2024-12-20 09:14:03 +08:00
/*const getMalfunctionEnums = () => {
2024-12-19 17:10:23 +08:00
windList.value.forEach((item)=> {
console.log({madeinfactory: item.madeinfactory, model: item.model })
queryfaultCodeDict({madeinfactory: item.madeinfactory, model: item.model }).then((res) => {
if (res.code == 200) {
const data: any = {}
res.data.forEach((item: any) => {
data[item.code] = item.description
})
malFunctionEnums = data
} else {
console.warn('查询故障代码字典失败:', res.message);
}
})
2024-12-19 16:23:48 +08:00
})
2024-12-19 17:10:23 +08:00
2024-12-20 09:14:03 +08:00
}*/
/*const requestedParams = new Set<string>();
const fetchData = async (item: any) => {
// 创建一个唯一的键来标识参数组合
const key = `${item.madeinFactory}-${item.model}`;
// 检查这个键是否已经在 Set 中
if (requestedParams.has(key)) {
console.log('Duplicate request detected, skipping...');
return;
}
// 将键添加到 Set 中
requestedParams.add(key);
try {
console.log({ madeinfactory: item.madeinFactory, model: item.model })
const response = await queryfaultCodeDict({ madeinfactory: item.madeinFactory, model: item.model });
if (response.code === 200) {
const data: any = {};
response.data.forEach((item: any) => {
data[item.code] = item.description;
});
malFunctionEnums = data;
} else {
console.warn('查询故障代码字典失败:', response.message);
}
} catch (error) {
console.error('请求出错:', error);
}
};*/
2024-11-19 13:49:22 +08:00
let autoUpdateForSecondTimer: any = null
const autoUpdate = () => {
if (!autoUpdateForSecondTimer) {
autoUpdateForSecondTimer = setInterval(() => {
StatusListData()
overviewList()
}, 2000)
}
2024-12-18 13:18:45 +08:00
2024-11-19 13:49:22 +08:00
}
const HomeHight = ref()
const computedHeight = reactive({
powerHeight: '298px',
centerHeight: '1100px',
alarmHeight: '350px',
})
const sizeChange = () => {
const rect = HomeHight.value?.getBoundingClientRect()
if (!rect) return
2024-12-19 15:05:36 +08:00
computedHeight.centerHeight = rect.height - 0 + 'px'
2024-11-19 13:49:22 +08:00
if (window.screen.width < 1360) {
2024-12-18 13:18:45 +08:00
computedHeight.centerHeight = rect.height - 0 + 'px'
2024-11-19 13:49:22 +08:00
}
if (rect.width < 1360) {
2024-12-18 13:18:45 +08:00
computedHeight.centerHeight = rect.height - 0 + 'px'
2024-11-19 13:49:22 +08:00
}
}
onMounted(() => {
2024-12-18 13:18:45 +08:00
getList()
2024-11-19 13:49:22 +08:00
window.addEventListener('resize', sizeChange)
sizeChange()
2024-12-19 17:10:23 +08:00
equipList({ objectType: 10002 }).then((res) => {
res.data.map((item: any) => {
deviceCode.value.push(item.code)
})
windList.value=res.data.map((item: any) => {
2024-12-20 09:14:03 +08:00
//fetchData(item)
2024-12-19 17:10:23 +08:00
return {
madeinfactory:item.madeinFactory,
model: item.model ?? '-',
}
})
2024-12-20 09:14:03 +08:00
//getMalfunctionEnums()
2024-12-19 17:10:23 +08:00
})
2024-11-19 13:49:22 +08:00
overviewList()
StatusListData()
autoUpdate()
})
onUnmounted(() => {
window.removeEventListener('resize', sizeChange)
clearInterval(timer)
autoUpdateForSecondTimer && clearInterval(autoUpdateForSecondTimer)
})
</script>
<style scoped lang="scss">
$marginNum: 10px;
2024-12-18 13:18:45 +08:00
$labelHeight: 30px;
2024-11-19 13:49:22 +08:00
@mixin cardDefaultStyle {
margin-top: $marginNum;
margin-bottom: $marginNum;
padding: 10px;
border-radius: 10px;
background-color: #fff;
}
@mixin cardlabel {
.cardLabel {
height: $labelHeight;
font-size: 18px;
font-weight: 600;
color: #4e5969;
2024-12-18 13:18:45 +08:00
line-height: 30px;
/* padding-left: 10px;*/
2024-11-19 13:49:22 +08:00
}
}
.default-main {
width: 100%;
height: 100%;
2024-12-18 13:18:45 +08:00
/* min-height: 920px;*/
2024-11-19 13:49:22 +08:00
padding: 0;
margin: 0;
color: #4e5969;
background-color: #f2f3f5;
.el-row {
width: calc(100% - 0px);
2024-12-18 13:18:45 +08:00
/* .el-col {
height: calc(100% - 10px);
}*/
2024-11-19 13:49:22 +08:00
}
.content-number {
color: #333333;
2024-12-18 13:18:45 +08:00
font-size: 22px;
2024-11-19 13:49:22 +08:00
}
.homelabel {
font-family: PingFangSC-Semibold;
font-size: 18px;
color: #4e5969;
letter-spacing: 0;
line-height: 18px;
font-weight: 600;
2024-12-18 13:18:45 +08:00
margin-bottom: 10px;
2024-11-19 13:49:22 +08:00
display: block;
}
2024-12-18 13:18:45 +08:00
.grid-content {
/* overflow-x: hidden;*/
width: 100%;
height: 100%;
.panelBg {
background-color: #ffffff;
padding: 10px;
border-radius: 5px;
margin-bottom: 10px;
}
2024-11-19 13:49:22 +08:00
.matrix {
2024-12-18 13:18:45 +08:00
@include cardlabel;
2024-12-19 15:05:36 +08:00
background: url('/@/assets/dashboard/bg3.png') no-repeat #ffffff;
2024-11-19 13:49:22 +08:00
background-size: 100% 100%;
width: 100%;
height: v-bind('computedHeight.centerHeight');
margin-bottom: 0;
.el-scrollbar {
height: calc(100% - 20px);
}
2024-12-18 13:18:45 +08:00
.homeHeader{
2024-11-19 13:49:22 +08:00
display: flex;
2024-12-19 15:05:36 +08:00
justify-content: space-between;
2024-12-18 13:18:45 +08:00
.cardLabel{
2024-12-19 15:05:36 +08:00
margin-right: 10px;
white-space: nowrap;
}
.cardBtn{
white-space: nowrap;
:deep(.el-radio-group){
flex-wrap: nowrap;
}
:deep(.el-radio){
margin-right: 12px;
}
2024-11-19 13:49:22 +08:00
}
2024-12-19 15:05:36 +08:00
.headerRight{
width: 100%;
display: flex;
background: #F0F6FF;
border-radius: 8px;
line-height: 30px;
padding: 0 10px;
.overviewItem{
display: inline-block;
.small-base{
display: inline-block;
padding-right: 8px;
color: #4E5969;
span{
color: #000000;
}
}
}
}
2024-11-19 13:49:22 +08:00
}
}
}
}
@media screen and (max-width: 1280px) {
.default-main {
2024-12-18 13:18:45 +08:00
font-size: 12px !important;
.content-number {
font-size: 16px !important;
2024-11-19 13:49:22 +08:00
}
2024-12-18 13:18:45 +08:00
.overviewItem{
.small-panel-pic{
width: 40px!important;
height: 40px!important;
2024-11-19 13:49:22 +08:00
}
2024-12-18 13:18:45 +08:00
2024-11-19 13:49:22 +08:00
}
}
}
2024-12-18 13:18:45 +08:00
2024-11-19 13:49:22 +08:00
@media screen and (max-width: 1360px) {
.default-main {
font-size: 11px !important;
}
}
@media screen and (max-width: 1480px) {
.default-main {
font-size: 12px !important;
2024-12-18 13:18:45 +08:00
.content-number {
font-size: 16px !important;
2024-11-19 13:49:22 +08:00
}
}
}
@media screen and (max-width: 1680px) {
.default-main {
/*font-size: 12px !important;*/
.content-number {
font-size: 16px !important;
}
2024-12-18 13:18:45 +08:00
.overviewItem{
.small-panel-pic{
width: 60px!important;
height: 60px!important;
}
}
2024-11-19 13:49:22 +08:00
.homelabel {
font-size: 16px !important;
margin-bottom: 10px !important;
}
.grid-content {
.cardLabel {
font-size: 16px !important;
}
.panelBg {
/* padding: 10px !important;*/
margin-bottom: 10px !important;
}
}
}
}
</style>