cloudroam
2024-11-29 2b98925a0c57e8fa901f51619c641af8c86382f6
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>
  <dv-full-screen-container>
    <self-header title="ITM Device Monitoring System"></self-header>
    <div class="area-global" @click="toAreaAll"></div>
  </dv-full-screen-container>
</template>
 
<script>
import selfHeader from "@/components/header";
 
export default {
  components: { selfHeader },
 
  methods: {
    toAreaAll() {
      this.$router.push({ path: "/area-all" });
    },
  },
};
</script>
 
<style lang="scss" scoped>
.area-global {
  background-image: url("../../assets/area-global3.jpg");
  background-size: 100% 100%;
  width: 140rem;
  /* max-width: 100vh; */
  height: 70rem;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
.area-global::after{
  content: "《博世汽车部件(苏州)有限公司》";
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  position: absolute;
  bottom: 5rem;
  right: 5rem;
}
</style>