首页取Locked属性判断是否锁定

This commit is contained in:
fengrong 2024-11-04 10:42:27 +08:00
parent 10846b3a2e
commit c1bc43dd56
2 changed files with 17 additions and 16 deletions

View File

@ -484,6 +484,7 @@ const StatusListData = () => {
igenpower: item.attributeMap.igenpower,
ikwhthisday: item.attributeMap.ikwhthisday,
iturbineoperationmode: state,
locked: item.attributeMap.locked,
}
}
});
@ -515,18 +516,6 @@ const powerChartData: { time: any; values: any } = {
time: {},
values: {},
}
/*const powerChartData = {
time: {
iGenPower:['00:00','00:05','00:10','00:15'],
iTheoreticalPower:['00:00','00:05','00:10','00:15'],
iWindSpeed:['00:00','00:05','00:10','00:15']
},
values: {
iGenPower:[0,5,2,7],
iTheoreticalPower:[0,0,0,0],
iWindSpeed:[3,8,9,1]
},
}*/
const initpowerChart = () => {
const powerChart = state.charts.powerChart ?? echarts.init(powerChartRef.value as unknown as HTMLElement)
const option = {
@ -1127,10 +1116,9 @@ const tabhandleClick = () => {
inittrendChart(trendChartType.value)
})
}
onMounted(() => {
getAllChartData()
//inittrendChart(trendChartType.value)
//initpowerChart()
createScroll()
overviewList()
StatusListData()

View File

@ -56,6 +56,9 @@
</el-col>
</el-row>
</div>
<div class="fanlist-bottom">
<el-tag v-if="item.attributeMap.locked === 1" class="tag-panel is-danger">已锁定</el-tag>
</div>
</div>
</div>
@ -183,7 +186,8 @@ const animationDuration=reactive({
.fanlist-main{
width: 100%;
display: flex;
padding: 10px;
/*padding: 10px;*/
padding: 10px 10px 0 10px;
text-align: center;
.fanlist-pic{
display: flex;
@ -241,7 +245,7 @@ const animationDuration=reactive({
}
}
.fanlist-text{
margin-top:30px;
margin-top:10px;
display: flex;
flex-direction: column;
.content-number{
@ -255,5 +259,14 @@ const animationDuration=reactive({
}
}
.fanlist-bottom{
display: flex;
justify-content: end;
height: 24px;
.tag-panel{
border-radius: 0 0 8px 0;
line-height: 20px;
}
}
}
</style>