he wei
2022-11-13 b4816f6294646157b50bb49f1d19eaf306e0ac8c
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<template>
  <div class="contain">
    <div class="inner">
      <!-- <a href="https://www.baidu.com" target="view_window">百度</a> -->
      <div class="info">请扫描二维码, 观看相关视频, 谢谢!</div>
      <div class="wrap">
        <div class="qrcode">
          <div class="img-contain"><img src="/qrcode.jpg" alt="二维码(仪表)" /></div>
          <!-- <div class="title">仪表操作视频</div> -->
        </div>
        <!-- <div class="qrcode">
          <div class="img-contain"><img src="/qrcode.jpg" alt="二维码(软件)" /></div>
          <div class="title">软件操作视频</div>
        </div> -->
      </div>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "",
 
  data() {
    return {};
  },
  components: {},
  methods: {},
 
  mounted() {},
};
</script>
 
<style lang="less" scoped>
.contain {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    .info {
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      font-style: italic;
      margin-bottom: 0.6em;
    }
    .wrap {
      display: flex;
      flex-direction: row;
    }
    .qrcode {
      box-shadow: 4px 4px 10px -2px #000;
      background: #fff;
      & + .qrcode {
        margin-left: 60px;
      }
      .title {
        background: transparent;
        padding: 10px 0;
      }
      .img-contain {
        width: 18em;
        height: 18em;
        // border: 2px solid #000;
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
    }
  }
}
</style>