bug
zhangzeli
2022-01-25 18e631a28d5b0fc6bb273e9c6e18bb7158d5f83e
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
<style lang="less">
.weapp {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
}
.weapp-imgs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  img {
    width: 260px;
    height: 563px;
    margin: 10px 0;
  }
}
</style>
<template>
  <div>
    <Card>
      <Alert type="warning" show-icon>
        说明:全新重构设计微信小程序,现已开源!后端正在XBoot中开发
        <a href="http://xpay.exrick.cn/pay?xboot" target="_blank">立即获取完整版</a>
      </Alert>
      <div class="weapp">
        <Poptip trigger="hover" title="打开微信扫一扫">
          <div slot="content">
            <img src="https://ooo.0o0.ooo/2019/10/06/yrtuPTL9DXQUvd2.jpg" width="180px" />
          </div>
          <Button
            type="primary"
            icon="md-qr-scanner"
            shape="circle"
            style="margin-right:20px;"
          >微信扫码体验</Button>
        </Poptip>
        <Button
          to="https://www.bilibili.com/video/av70226175"
          target="_blank"
          shape="circle"
          icon="ios-videocam"
          style="margin-right:20px;"
        >小程序宣传视频</Button>
        <Button
          to="https://github.com/Exrick/xmall-weapp"
          target="_blank"
          shape="circle"
          icon="logo-github"
        >Github地址</Button>
      </div>
      <div class="weapp-imgs">
        <img src="https://ooo.0o0.ooo/2019/07/08/5d22e3df51b3b41948.png" />
        <img src="https://ooo.0o0.ooo/2019/07/08/5d22e3def39a024428.png" />
        <img src="https://ooo.0o0.ooo/2019/07/08/5d22e3df6ee8d14238.png" />
        <img src="https://ooo.0o0.ooo/2019/07/08/5d22e3df80a8539956.png" />
      </div>
    </Card>
  </div>
</template>
 
<script>
export default {
  name: "weapp",
  data() {
    return {};
  },
  methods: {
    init() {}
  },
  mounted() {
    this.init();
  }
};
</script>