DESKTOP-GJP2N7J\lx
2023-08-11 49cd08187c9c49df199a954bd0a5a5bca40f8f1a
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="panel">
    <div class="panel-header">
      小程序信息
    </div>
    <div class="img-container">
      <!-- <img class="img-items" src="../../../image/screen/xiaochengxuma.jpg" alt=""> -->
      <img class="img-items" :src="wxMiniQrClientUrl" alt="">
    </div>
  </div>
</template>
<script>
 
export default {
  data() {
    return {
 
    }
  },
  props: {
    wxMiniQrClientUrl: {
      type: String,
      default: () => {}
    }
  },
  created() {},
  methods: {}
}
</script>
 
<style lang="scss" scoped>
// @import url(../index.scss);
.img-container {
  display: flex;
  justify-content: center;
  height: 22vh;
  align-items: center;
  .img-items {
    width: 50%;
    // height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:5px;
  }
}
</style>