feat: 大屏可视化中间地球动画

master
LCJ-MinYa 11 months ago
parent 6f75e66cf6
commit 2e02ffae0a

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

@ -67,6 +67,7 @@ import ItemWrap from './components/common/item-wrap';
import AccessStatus from './components/AccessStatus.vue'; import AccessStatus from './components/AccessStatus.vue';
import MajorSystemHealthStatus from './components/MajorSystemHealthStatus.vue'; import MajorSystemHealthStatus from './components/MajorSystemHealthStatus.vue';
import MajorAlert from './components/MajorAlert.vue'; import MajorAlert from './components/MajorAlert.vue';
import AccessSituation from './components/AccessSituation.vue';
/** 机构切换配置 */ /** 机构切换配置 */
const orgList = ref([ const orgList = ref([
@ -110,6 +111,9 @@ const getComponent = (componentName) => {
case 'MajorAlert': case 'MajorAlert':
component = shallowRef(MajorAlert); component = shallowRef(MajorAlert);
break; break;
case 'AccessSituation':
component = shallowRef(AccessSituation);
break;
} }
return component; return component;
}; };
@ -122,6 +126,9 @@ const getComponentClass = computed(() => (componentName) => {
case 'MajorSystemHealthStatus': case 'MajorSystemHealthStatus':
className = 'content_lb-item'; className = 'content_lb-item';
break; break;
case 'AccessSituation':
className = 'content_ct-item';
break;
} }
return className; return className;
}); });
@ -137,7 +144,10 @@ const getLayout = (id) => {
{ title: '综合看板', componentName: 'AccessStatus' }, { title: '综合看板', componentName: 'AccessStatus' },
{ title: '重要系统健康状态', componentName: 'MajorSystemHealthStatus' }, { title: '重要系统健康状态', componentName: 'MajorSystemHealthStatus' },
], ],
center: [{ title: '重要告警', componentName: 'MajorAlert' }], center: [
{ title: '重要告警', componentName: 'MajorAlert' },
{ title: 'IT资源接入情况', componentName: 'AccessSituation' },
],
right: [], right: [],
}; };
break; break;
@ -147,7 +157,10 @@ const getLayout = (id) => {
{ title: '综合看板', componentName: 'AccessStatus' }, { title: '综合看板', componentName: 'AccessStatus' },
{ title: '重要系统健康状态', componentName: 'MajorSystemHealthStatus' }, { title: '重要系统健康状态', componentName: 'MajorSystemHealthStatus' },
], ],
center: [{ title: '重要告警', componentName: 'MajorAlert' }], center: [
{ title: '重要告警', componentName: 'MajorAlert' },
{ title: 'IT资源接入情况', componentName: 'AccessSituation' },
],
right: [], right: [],
}; };
break; break;

Loading…
Cancel
Save