37 lines
654 B
Vue
37 lines
654 B
Vue
|
<template>
|
||
|
<view class="wechat-wrap">
|
||
|
<u-navbar autoBack title="关注公众号"></u-navbar>
|
||
|
<view class="bg"></view>
|
||
|
<image src="@/static/images/qrcod.jpg" mode="widthFix" style="width: 400rpx;"></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
page,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.bg {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: linear-gradient(0deg, #F94B78 0%, #FFD35C 100%);
|
||
|
opacity: 0.18;
|
||
|
z-index: 0
|
||
|
}
|
||
|
|
||
|
.wechat-wrap {
|
||
|
width: 100%;
|
||
|
min-height: 100%;
|
||
|
padding: 260rpx 20rpx 0 20rpx;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|