diff --git a/src/views/screen/components/AccessSituation.vue b/src/views/screen/components/AccessSituation.vue new file mode 100644 index 0000000..604a965 --- /dev/null +++ b/src/views/screen/components/AccessSituation.vue @@ -0,0 +1,2003 @@ + + + + + diff --git a/src/views/screen/img/earth/535gqbottomright.png b/src/views/screen/img/earth/535gqbottomright.png new file mode 100644 index 0000000..853b316 Binary files /dev/null and b/src/views/screen/img/earth/535gqbottomright.png differ diff --git a/src/views/screen/img/earth/53centercircle.png b/src/views/screen/img/earth/53centercircle.png new file mode 100644 index 0000000..04f8c9b Binary files /dev/null and b/src/views/screen/img/earth/53centercircle.png differ diff --git a/src/views/screen/img/earth/53cloud.png b/src/views/screen/img/earth/53cloud.png new file mode 100644 index 0000000..a10c6e7 Binary files /dev/null and b/src/views/screen/img/earth/53cloud.png differ diff --git a/src/views/screen/img/earth/53earth.png b/src/views/screen/img/earth/53earth.png new file mode 100644 index 0000000..4aa085a Binary files /dev/null and b/src/views/screen/img/earth/53earth.png differ diff --git a/src/views/screen/img/earth/53gqbottomleft.png b/src/views/screen/img/earth/53gqbottomleft.png new file mode 100644 index 0000000..1ae53d5 Binary files /dev/null and b/src/views/screen/img/earth/53gqbottomleft.png differ diff --git a/src/views/screen/img/earth/53gqleft.png b/src/views/screen/img/earth/53gqleft.png new file mode 100644 index 0000000..b46bf22 Binary files /dev/null and b/src/views/screen/img/earth/53gqleft.png differ diff --git a/src/views/screen/img/earth/53gqright.png b/src/views/screen/img/earth/53gqright.png new file mode 100644 index 0000000..b452755 Binary files /dev/null and b/src/views/screen/img/earth/53gqright.png differ diff --git a/src/views/screen/img/earth/circle.png b/src/views/screen/img/earth/circle.png new file mode 100644 index 0000000..75a793f Binary files /dev/null and b/src/views/screen/img/earth/circle.png differ diff --git a/src/views/screen/img/earth/circle1.png b/src/views/screen/img/earth/circle1.png new file mode 100644 index 0000000..4ab89f3 Binary files /dev/null and b/src/views/screen/img/earth/circle1.png differ diff --git a/src/views/screen/img/earth/circle2.png b/src/views/screen/img/earth/circle2.png new file mode 100644 index 0000000..0862872 Binary files /dev/null and b/src/views/screen/img/earth/circle2.png differ diff --git a/src/views/screen/index.vue b/src/views/screen/index.vue index 1ff7405..e0b6c19 100644 --- a/src/views/screen/index.vue +++ b/src/views/screen/index.vue @@ -67,6 +67,7 @@ import ItemWrap from './components/common/item-wrap'; import AccessStatus from './components/AccessStatus.vue'; import MajorSystemHealthStatus from './components/MajorSystemHealthStatus.vue'; import MajorAlert from './components/MajorAlert.vue'; +import AccessSituation from './components/AccessSituation.vue'; /** 机构切换配置 */ const orgList = ref([ @@ -110,6 +111,9 @@ const getComponent = (componentName) => { case 'MajorAlert': component = shallowRef(MajorAlert); break; + case 'AccessSituation': + component = shallowRef(AccessSituation); + break; } return component; }; @@ -122,6 +126,9 @@ const getComponentClass = computed(() => (componentName) => { case 'MajorSystemHealthStatus': className = 'content_lb-item'; break; + case 'AccessSituation': + className = 'content_ct-item'; + break; } return className; }); @@ -137,7 +144,10 @@ const getLayout = (id) => { { title: '综合看板', componentName: 'AccessStatus' }, { title: '重要系统健康状态', componentName: 'MajorSystemHealthStatus' }, ], - center: [{ title: '重要告警', componentName: 'MajorAlert' }], + center: [ + { title: '重要告警', componentName: 'MajorAlert' }, + { title: 'IT资源接入情况', componentName: 'AccessSituation' }, + ], right: [], }; break; @@ -147,7 +157,10 @@ const getLayout = (id) => { { title: '综合看板', componentName: 'AccessStatus' }, { title: '重要系统健康状态', componentName: 'MajorSystemHealthStatus' }, ], - center: [{ title: '重要告警', componentName: 'MajorAlert' }], + center: [ + { title: '重要告警', componentName: 'MajorAlert' }, + { title: 'IT资源接入情况', componentName: 'AccessSituation' }, + ], right: [], }; break;