wangfei
2024-11-18 a5a12dfed331c5d2508e1acee474c9d6dc35b774
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<script setup>
let indexFlag = $ref(1)
 
function changeRouter(index) {
  indexFlag = index
}
 
</script>
 
<template>
  <!-- <div id="main-div"> -->
 
 
  <div id="main-body">
    <router-view/>
  </div>
  <!-- </div> -->
</template>
 
<style scoped>
#main-div {
  width: 100%;
  height: 100%;
}
 
#div-title {
  height: 2%;
  width: 100%;
}
 
#searchButton {
  margin-top: -5px;
  margin-left: 1rem;
}
 
/* #searchButton1{
//margin-left: 10rem;
} */
/*main-body样式*/
#main-body {
  width: 100%;
  height: 95%;
  /* margin-top: 1%; */
}
 
#select {
  margin-left: 0.5rem;
}
 
:deep(.indexTag .el-breadcrumb__inner) {
  color: #5CADFE !important;
}
</style>