huang
4 天以前 9dcde5b27b70a4b0c0885347af5405eb2d1ef089
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
<script setup>
let indexFlag = $ref(1)
 
function changeRouter(index) {
  indexFlag = index
}
</script>
<template>
  <div id="main-body">
    <router-view/>
  </div>
</template>
<style scoped>
#main-div {
  width: 100%;
  height: 100%;
}
 
#div-title {
  height: 2%;
  width: 100%;
}
 
#searchButton {
  margin-top: -5px;
  margin-left: 1rem;
}
 
#main-body {
  width: 100%;
  height: 95%;
}
 
#select {
  margin-left: 0.5rem;
}
 
:deep(.indexTag .el-breadcrumb__inner) {
  color: #5CADFE !important;
}
</style>