From 0180efc1c85885b3605c59fd25fabcc670f060b6 Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: 星期一, 08 八月 2022 12:42:48 +0800
Subject: [PATCH] 添加修改页面
---
src/views/safeKnowledgeSys/index.vue | 39 +++++++++++++++++++++++++++++++++++++++
src/views/intellectInspect/intelligentMap/index.vue | 12 ++++++------
2 files changed, 45 insertions(+), 6 deletions(-)
diff --git a/src/views/intellectInspect/intelligentMap/index.vue b/src/views/intellectInspect/intelligentMap/index.vue
index b365a52..95a4e8f 100644
--- a/src/views/intellectInspect/intelligentMap/index.vue
+++ b/src/views/intellectInspect/intelligentMap/index.vue
@@ -795,9 +795,9 @@
.section-1{
position: absolute;
left: 70px;
- top: -10px;
+ top: -20px;
width: calc((200vw - 240px) / 7 + 60px);
- height: 630px;
+ height: calc(80vh - 109px);
background: rgba(0,100,190,.1);
border: 1px solid rgba(0,100,190,.4);
border-radius: 8px;
@@ -805,9 +805,9 @@
.section-2{
position: absolute;
left: calc((400vw - 480px)/ 7 + 70px);
- top: 150px;
+ top: calc((100vh - 130px)/ 5 - 20px);
width: calc((200vw - 240px) / 7 + 60px);
- height: 470px;
+ height: calc((300vh - 390px)/ 5 - 5px);
background: rgba(0,100,190,.1);
border: 1px solid rgba(0,100,190,.4);
border-radius: 8px;
@@ -815,9 +815,9 @@
.section-3{
position: absolute;
left: 100px;
- top: 630px;
+ top: calc(80vh - 119px);
width: calc((500vw - 600px)/ 7 + 30px);
- height: 180px;
+ height: calc((100vh - 130px)/ 5 + 20px);
background: rgba(0,100,190,.1);
border: 1px solid rgba(0,100,190,.4);
border-radius: 8px;
diff --git a/src/views/safeKnowledgeSys/index.vue b/src/views/safeKnowledgeSys/index.vue
new file mode 100644
index 0000000..354a082
--- /dev/null
+++ b/src/views/safeKnowledgeSys/index.vue
@@ -0,0 +1,39 @@
+<template>
+ <div class="home-container">
+ <iframe src="http://39.104.85.193"></iframe>
+ </div>
+</template>
+
+<script>
+export default {
+ name: 'safeKnowledgeSys',
+ props: {
+
+ },
+ data(){
+ return{
+
+ }
+ },
+ created() {
+
+ },
+ methods:{
+
+ }
+}
+</script>
+
+<!-- Add "scoped" attribute to limit CSS to this component only -->
+<style scoped lang="scss">
+ .home-container{
+ height: calc(100vh - 114px);
+ box-sizing: border-box;
+ overflow: hidden;
+
+ iframe{
+ width: 100%;
+ height: 100%;
+ }
+ }
+</style>
--
Gitblit v1.9.2