|
@@ -19,7 +19,7 @@
|
|
|
area.canClick ? '' : 'click-disable',
|
|
|
selectArea.id === area.id ? 'select' : '',
|
|
|
isSetSpace ? 'use-select' : '',
|
|
|
- area.disabled ? 'space-disable-box' : '',
|
|
|
+ area.disabled ? 'space-disable-box' : 'space-box-bg',
|
|
|
]"
|
|
|
@click.stop="checkSpace(area)"
|
|
|
:style="{
|
|
@@ -502,9 +502,9 @@ export default defineComponent({
|
|
|
* 切换空间
|
|
|
*/
|
|
|
checkSpace(area: any) {
|
|
|
- if (!area.disabled) {
|
|
|
- return;
|
|
|
- }
|
|
|
+ // if (!area.disabled) {
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
proxyData.isSetSearchSpace = false;
|
|
|
if (area && area.canClick) {
|
|
|
proxyData.setSelectSpacePosition(area);
|
|
@@ -1239,7 +1239,20 @@ export default defineComponent({
|
|
|
padding: 5px;
|
|
|
}
|
|
|
.space-disable-box {
|
|
|
- opacity: 0.4;
|
|
|
+ // opacity: 0.4;
|
|
|
+ }
|
|
|
+ .space-box-bg {
|
|
|
+ // background: #5e8bcf;
|
|
|
+ background: rgba(94, 139, 207, 0.4) !important;
|
|
|
+ // color: #fff;
|
|
|
+ .select-device {
|
|
|
+ span {
|
|
|
+ color: #fff !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .device span {
|
|
|
+ color: #fff !important;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.space {
|