Squashed commit of the following:
All checks were successful
CI / Docker-Build (push) Successful in 2m58s

commit 530a6cf1a3
Author: joylink_zhaoerwei <Bob_Engineer@163.com>
Date:   Thu Jun 27 16:40:19 2024 +0800

    驱采绘制点击变背景色

commit d4c5e5a4a8
Author: joylink_zhaoerwei <Bob_Engineer@163.com>
Date:   Thu Jun 27 15:41:42 2024 +0800

    继电器增加批量操作
This commit is contained in:
joylink_zhaoerwei 2024-06-27 16:41:21 +08:00
parent f0cdd8c3b4
commit ba60c0b313
2 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,10 @@
col > 1 &&
ciCjList?.cjList[col - 2].bitList[row - 2].refRelays.length,
changeCellSize: col == 1,
clickHeightLight:
relayCabinetStore.editCiCjConfigIndex &&
relayCabinetStore.editCiCjConfigIndex.row == row - 1 &&
relayCabinetStore.editCiCjConfigIndex.col == col - 1,
}"
v-for="col in showSetCellMessage.cols"
:key="col"
@ -216,4 +220,7 @@ function onMouseOver(e: MouseEvent) {
.heightLight {
background-color: orange;
}
.clickHeightLight {
background-color: red;
}
</style>

View File

@ -10,6 +10,10 @@
col > 1 &&
ciQdList?.qdList[col - 2].bitList[row - 2].refRelays.length,
changeCellSize: col == 1,
clickHeightLight:
relayCabinetStore.editCiCjConfigIndex &&
relayCabinetStore.editCiCjConfigIndex.row == row - 1 &&
relayCabinetStore.editCiCjConfigIndex.col == col - 1,
}"
v-for="col in showSetCellMessage.cols"
:key="col"
@ -212,4 +216,7 @@ function onMouseOver(e: MouseEvent) {
.heightLight {
background-color: orange;
}
.clickHeightLight {
background-color: red;
}
</style>