mycode.vue
640 字节
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>
<!-- 居中 -->
<view class="wrapper">
<image mode="widthFix" :src="qrcode"></image>
</view>
</template>
<script>
import request from "../../../App.vue"
export default {
data() {
return {
qrcode:''
};
},
onLoad:function(){
request.post('/api/user/userPoster').then(r=>{
if(r.code == 1){
this.qrcode = r.data.url
}
})
}
}
</script>
<style lang="scss" scoped>
page {
background-image: url("../../../static/imgs/codeback.png");
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.wrapper{
>image{
width: 622rpx;
}
}
</style>