兼兼街公众号代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
556 B

<template>
<view class="page">
<view class="box">
<image class="img" :src="src"></image>
正在为您拉起微信授权...
</view>
</view>
</template>
<script>
export default{
props:{
src: require('@/static/img/wechat-icon.png')
},
data(){
return {
}
},
methods:{
}
}
</script>
<style lang="scss" scoped>
.page {
width: 100vw;
background-color: #fff;
}
.box {
width: 500rpx;
height: 800rpx;
margin: 80rpx auto;
text-align: center;
}
.img{
width: 500rpx;
height: 500rpx;
}
</style>