富文本样式问题修复

This commit is contained in:
BianLzhaoMin 2024-12-18 09:00:29 +08:00
parent f7929a7f35
commit 5a26725c0c
4 changed files with 8 additions and 3 deletions

4
env/.env.dev vendored
View File

@ -8,9 +8,9 @@ VITE_API_URL = '/proxyApi'
# VITE_proxyTarget = 'http://10.40.92.74:8080' #盛旭 # VITE_proxyTarget = 'http://10.40.92.74:8080' #盛旭
# VITE_proxyTarget = 'http://192.168.2.246:28080' # 马帅 # VITE_proxyTarget = 'http://192.168.2.246:28080' # 马帅
VITE_proxyTarget = 'http://192.168.2.127:28080' # 梁超 # VITE_proxyTarget = 'http://192.168.2.127:28080' # 梁超
# VITE_proxyTarget = 'http://36.33.26.201:17788/proxyApi' # 测试服务 # VITE_proxyTarget = 'http://36.33.26.201:17788/proxyApi' # 测试服务
# VITE_proxyTarget = 'http://192.168.0.244:28580' # 测试服务 VITE_proxyTarget = 'http://192.168.0.244:28580' # 测试服务
# VITE_proxyTarget = 'http://192.168.2.75:28080' # 盛旭 # VITE_proxyTarget = 'http://192.168.2.75:28080' # 盛旭
# VITE_proxyTarget = 'http://10.40.92.185:9206' # 赵福海 ( 设备类型) # VITE_proxyTarget = 'http://10.40.92.185:9206' # 赵福海 ( 设备类型)

View File

@ -95,6 +95,7 @@ const init = reactive({
skin_url: '/tinymce/skins/ui/oxide', // skin skin_url: '/tinymce/skins/ui/oxide', // skin
editable_root: props.editable_root, editable_root: props.editable_root,
height: 600, height: 600,
z_index: 10000000000000000,
branding: false, // Powered by TinyMCE branding: false, // Powered by TinyMCE
promotion: false, // upgrade promotion: false, // upgrade
// toolbar_sticky: true, // toolbar_sticky: true,

View File

@ -261,7 +261,7 @@ const isMyInfoPage = () => {
position: sticky; position: sticky;
top: 0; top: 0;
left: 0; left: 0;
z-index: 999; z-index: 88;
/* 头部个人信息部分 */ /* 头部个人信息部分 */
.header-box { .header-box {

View File

@ -588,4 +588,8 @@ onMounted(() => {
} }
} }
} }
:deep(.el-overlay) {
z-index: 99 !important;
}
</style> </style>