2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
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
<template>
  <div class="right">
    <!-- <div class="right_top"></div> -->
    <rightMain ref="__rightMain"></rightMain>
  </div>
</template>
 
<script>
import rightMain from "./rightViewer/rightMain.vue"
export default {
  components: {
    rightMain
  },
  data() {
    return {
      a: 1
    }
  },
 
}
</script>
 
<style lang="less" scoped>
.right {
  width: 476px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 10;
 
  .right_top {
    position: absolute;
    width: 467px;
    height: 101px;
    background: url("../../assets/img/right_top_img.png") no-repeat;
    background-size: 100% 100%;
  }
 
 
}
</style>