From e9eb9ee7bec1dd64e3b9a494a2814a5bc3952709 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期五, 27 十二月 2024 11:57:43 +0800 Subject: [PATCH] 1、主要优化业务类型加载过慢由于重复加载平台的属性、枚举数据,属性数据通过第一次加载全部进行传递解决,枚举数据通过新增枚举的本地线程工具类来进行实现。 --- Source/plt-web/plt-web-ui/src/components/flow-cycle/components/ContextMenu.vue | 46 ++++++++++++++++++++++++---------------------- 1 files changed, 24 insertions(+), 22 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/components/flow-cycle/components/ContextMenu.vue b/Source/plt-web/plt-web-ui/src/components/flow-cycle/components/ContextMenu.vue index 1b66514..f999664 100644 --- a/Source/plt-web/plt-web-ui/src/components/flow-cycle/components/ContextMenu.vue +++ b/Source/plt-web/plt-web-ui/src/components/flow-cycle/components/ContextMenu.vue @@ -48,32 +48,34 @@ background: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); + padding: 5px; } +::v-deep { + .contextMenu .command.disable .item { + color: rgba(0, 0, 0, 0.25); + cursor: auto; + } -.contextMenu .command.disable .item { - color: rgba(0, 0, 0, 0.25); - cursor: auto; -} + .contextMenu .command.disable .item:hover { + background: #fff; + } -.contextMenu .command.disable .item:hover { - background: #fff; -} + .contextMenu .item { + display: flex; + align-items: center; + padding: 5px 12px; + cursor: pointer; + transition: all 0.3s; + user-select: none; + } -.contextMenu .item { - display: flex; - align-items: center; - padding: 5px 12px; - cursor: pointer; - transition: all 0.3s; - user-select: none; -} + .contextMenu .item:hover { + background: #e6f7ff; + } -.contextMenu .item:hover { - background: #e6f7ff; -} - -.contextMenu .item i { - margin-right: 8px; - margin-top: 3px; + .contextMenu .item i { + margin-right: 8px; + margin-top: 3px; + } } </style> -- Gitblit v1.9.3