ZengTao
2025-05-13 9ea7e2fb231db817d16c1c5158ba9adb6dba73c7
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
<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%;
  /* margin-top: 1%; */
}
#select {
  margin-left: 0.5rem;
}
:deep(.indexTag .el-breadcrumb__inner) {
  color: #5CADFE !important;
}
</style>