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
| <template>
| <view class="main-cont">
| <view class="txt-sty" style="margin-top: 4rem;">
| <image class="head-img" :src="wxhead"></image>
| </view>
| <view class="txt-sty head-txt">
| 微信号:{{wxtxt}}
| </view>
| <view class="txt-sty">
| <image :src="wxImg" class="ercode-img"></image>
| </view>
| <view class="txt-sty" style="font-weight: 700; margin-top: 1rem;">长按二维码,添加微信享受优惠</view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| wxImg: 'https://img.ushopvip.com/dfg/wxcode.png',
| wxhead: 'https://img.ushopvip.com/dfg/dfgapplogo.png',
| wxtxt: 'sedws22'
| }
| },
| onLoad() {
|
| },
| methods: {
|
|
| },
| }
| </script>
|
| <style>
| .txt-sty{
| text-align: center;
| }
| .main-cont {
|
| }
| .head-txt{
| margin: 0.4rem 0 2rem 0;
| }
|
| .head-img {
| width: 5rem;
| height: 5rem;
| }
| .ercode-img{
| width: 16rem;
| height: 16rem;
| }
| </style>
|
|