cyywl_server/yudao-ui-app/pages/users/wechat/index.vue

37 lines
654 B
Vue
Raw Normal View History

2023-06-01 11:53:24 +08:00
<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>