基于廊坊系统为基础,国防科技大学系统演示Demo
surprise
2024-04-28 83ff2ebbb1d61c2cd7762df33f61ff0418b2b1c9
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
 
<template>
  <div class="dictionaryBox">
    <My-bread :list="[
        `数据资源管理`,
        `仿真模型管理`,
      ]"></My-bread>
    <el-divider />
    <div class="mainBox">
 
    </div>
  </div>
</template>
 
<script>
 
import MyBread from "@/components/MyBread.vue";
 
export default {
  name: "multimedia",
  components: { MyBread },
  data () {
    return {
 
    };
  },
  watch: {
 
  },
  created () {
 
  },
  methods () {
 
  }
};
</script>
<style lang="less" scoped>
//@import url(); 引入公共css类
.dictionaryBox {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  padding: 10px;
  background: #f4f8ff;
  margin: 10px;
  border-radius: 5px;
}
</style>