25 lines
414 B
Vue
25 lines
414 B
Vue
<template>
|
|
<view class="wechat-wrap">
|
|
<u-navbar autoBack title="关注公众号"></u-navbar>
|
|
<image src="@/static/images/qrcod.jpg" style="width:100%" mode="widthFix"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
page,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
.wechat-wrap {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
padding-top: 90rpx;
|
|
text-align: center;
|
|
}
|
|
</style>
|