chore: 隐藏测试模块

This commit is contained in:
Free-sss 2025-09-01 16:46:18 +08:00
parent 97a7efab9f
commit 35acd39545
6 changed files with 54 additions and 64 deletions

View File

@ -1,5 +1,5 @@
import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public'
import { LineDropdownConfig } from './index' import { LineDropdownConfinedConfig } from './index'
import { CreateComponentType } from '@/packages/index.d' import { CreateComponentType } from '@/packages/index.d'
import cloneDeep from 'lodash/cloneDeep' import cloneDeep from 'lodash/cloneDeep'
import dataJson from './data.json' import dataJson from './data.json'
@ -108,7 +108,7 @@ const option = {
} }
export default class Config extends PublicConfigClass implements CreateComponentType { export default class Config extends PublicConfigClass implements CreateComponentType {
public key: string = LineDropdownConfig.key public key: string = LineDropdownConfinedConfig.key
public chartConfig = cloneDeep(LineDropdownConfig) public chartConfig = cloneDeep(LineDropdownConfinedConfig)
public option = echartOptionProfixHandle(option, includes) public option = echartOptionProfixHandle(option, includes)
} }

View File

@ -1,10 +1,10 @@
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
// import { ChatCategoryEnum, ChatCategoryEnumName } from '../..' // import { ChatCategoryEnum, ChatCategoryEnumName } from '../..'
export const LineDropdownConfig: ConfigType = { export const LineDropdownConfinedConfig: ConfigType = {
key: 'LineDropdown_ConfinedSpace', key: 'LineDropdownConfined',
chartKey: 'VLineDropdown_ConfinedSpace', chartKey: 'VLineDropdownConfined',
conKey: 'VCLineDropdown_ConfinedSpace', conKey: 'VCLineDropdownConfined',
title: '下拉折线图', title: '下拉折线图',
category: 'ConfinedSpace', category: 'ConfinedSpace',
categoryName: '有限空间组件', categoryName: '有限空间组件',

View File

@ -408,7 +408,7 @@ const handleDropdownChange = () => {
transform: translateY(-50%) rotate(180deg); transform: translateY(-50%) rotate(180deg);
} }
.custom-dropdown1:focus + .dropdown-arrow { .custom-dropdown1:focus+.dropdown-arrow {
transform: translateY(-50%) rotate(180deg); transform: translateY(-50%) rotate(180deg);
color: rgba(58, 160, 255, 1); color: rgba(58, 160, 255, 1);
text-shadow: 0 0 8px rgba(58, 160, 255, 0.5); text-shadow: 0 0 8px rgba(58, 160, 255, 0.5);
@ -462,33 +462,21 @@ const handleDropdownChange = () => {
} }
} }
.header-title{ .header-title {
position: absolute; position: absolute;
top: 0; top: 0;
height: 45px; height: 45px;
line-height: 45px; line-height: 45px;
left: 80px; left: 70px;
font-size: 16px;
font-weight: bold;
color: #eee;
font-style: italic;
text-shadow: 0 0 10px #00E5FF;
white-space: nowrap; white-space: nowrap;
font-family: 'CustomFont';
font-style: italic;
letter-spacing: 0.5px;
color: #eee;
text-shadow: 1px 3px 10px #000000;
font-size: 16px;
} }
.header-title{
position: absolute;
top: 0;
height: 45px;
line-height: 45px;
left: 80px;
font-size: 16px;
font-weight: bold;
color: #eee;
font-style: italic;
text-shadow: 0 0 10px #00E5FF;
white-space: nowrap;
}
.svg { .svg {
width: 100%; width: 100%;

View File

@ -1,11 +1,13 @@
import { MapConfig } from './Map' import { MapConfig } from './Map'
import { PieCircleCommenConfig } from './PieCircleCommen' import { PieCircleCommenConfig } from './PieCircleCommen'
import { AlarmNowListConfig } from './AlarmNowList' import { AlarmNowListConfig } from './AlarmNowList'
import { LineDropdownConfig } from './LineDropdown' // import { LineDropdownConfig } from './LineDropdown'
// import { SmallBorder01CoConfig } from './SmallBorder01Co' // import { SmallBorder01CoConfig } from './SmallBorder01Co'
import { videoCheckConfig } from './videoCheck' import { videoCheckConfig } from './videoCheck'
import {FiniteSpatialDistributionConfig} from './FiniteSpatialDistribution' import { FiniteSpatialDistributionConfig } from './FiniteSpatialDistribution'
export default [MapConfig, videoCheckConfig, LineDropdownConfig, PieCircleCommenConfig, AlarmNowListConfig,FiniteSpatialDistributionConfig] export default [MapConfig, videoCheckConfig,
// LineDropdownConfig,
PieCircleCommenConfig, AlarmNowListConfig, FiniteSpatialDistributionConfig]