<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>
|
|
|