123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <template>
- <view class="content">
- <u-navbar title="邀请好友" @leftClick="leftClick" :bgColor="bgColor" placeholder safeAreaInsetTop></u-navbar>
- <view class="title">邀请好友加入忆象</view>
- <view class="box vflex acenter jcenter">
- <view class="user hflex acenter">
- <image :src="user.avatar" mode="aspectFill"></image>
- <view class="user-right vflex jbetween">
- <text>{{user.username}}</text>
- <text>分享邀请码或者链接给好友</text>
- </view>
- </view>
- <view class="code-text vflex acenter">
- <view class="hflex acenter jcenter">
- <view class="text">邀请码</view>
- <view class="text">{{user.invite_code}}</view>
- </view>
- <view class="copy" @click="copy">复制邀请码</view>
- </view>
- <view class="img-box hflex acenter jcenter">
- <yz-qr :qrPath.sync="qrPath" :text="user.invite_code" :size="200" quality="L" colorDark="#000000"
- colorLight="#ffffff"></yz-qr>
- </view>
- </view>
- <view class="bottom hflex acenter jbetween">
- <button class="save" @click="setimg">保存图片</button>
- <button class="invite" @click="share">邀请好友</button>
- </view>
- <view class="poster-pop" v-if="posterImageStatus">
- <image :src="posterImage"></image>
- </view>
- <view class="mask" v-if="posterImageStatus"></view>
- <canvas class="canvas" canvas-id="myCanvas" v-if="canvasStatus"></canvas>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- user: {},
- qrPath: '',
- text: 'hello',
- posterImage: '',
- posterImageStatus: false,
- canvasStatus: false,
- bgColor: 'rgba(0, 0, 0, 0)'
- }
- },
- onLoad() {
- that = this
- this.getuser()
- },
- onPageScroll(e) {
- console.log(e);
- if (e.scrollTop > 0) {
- this.bgColor = 'rgba(255,255,255)'
- } else {
- this.bgColor = 'rgba(0, 0, 0, 0)'
- }
- },
- watch: {
- qrPath(newVal, oldVal) {
- return this.qrPath;
- }
- },
- methods: {
- share() {
- // this.goPoster();
- uni.share({
- provider: "weixin",
- scene: "WXSceneSession",
- type: 2,
- imageUrl: this.qrPath,
- success: function (res) {
- console.log("success:" + JSON.stringify(res));
- },
- fail: function (err) {
- console.log("fail:" + JSON.stringify(err));
- }
- });
- },
- setimg() {
- uni.saveImageToPhotosAlbum({
- filePath: this.qrPath,
- success: function () {
- console.log('save success');
- $api.info('保存成功')
- }
- });
- },
- goPoster() {
- },
- copy() {
- uni.setClipboardData({
- data: this.user.invite_code,
- success: function() {
- this.$u.toasta('复制成功')
- }
- })
- },
- getuser() {
- $api.req({
- url: 'user/info',
- }, function(res) {
- if (res.code == 10000) {
- that.user = res.data
- }
- })
- },
- leftClick() {
- uni.navigateBack()
- },
- },
- }
- </script>
- <style lang="scss">
- .content::v-deep {
- background: url('static/invite_bg.png') no-repeat;
- min-height: 100vh;
- background-size: 100% 100%;
- padding: 42rpx 34rpx;
- .u-navbar--fixed {
- z-index: 999;
- }
- .title {
- width: 100%;
- text-align: center;
- font-size: 44rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #222222;
- padding: 88rpx 0 38rpx;
- }
- .box {
- background: #FFFFFF;
- border-radius: 20rpx;
- box-sizing: border-box;
- width: 100%;
- padding: 48rpx 30rpx;
- .user {
- width: 100%;
- image {
- width: 92rpx;
- height: 92rpx;
- border-radius: 50%;
- }
- .user-right {
- padding: 0 0 0 20rpx;
- height: 92rpx;
- text:first-child {
- font-size: 32rpx;
- font-family: SFPro, SFPro;
- font-weight: 500;
- color: #222222;
- }
- text:last-child {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- }
- }
- .code-text {
- width: 602rpx;
- background: #F4F4F4;
- border-radius: 12rpx;
- padding: 40rpx 0;
- margin: 36rpx 0 68rpx;
- .text {
- font-size: 36rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #222222;
- padding: 0 48rpx 0 0;
- }
- .text:nth-child(2) {
- padding: 0 0 0 48rpx;
- border-left: 1px solid #E0E0E0;
- }
- .copy {
- padding: 32rpx 0 0;
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #0C66C2;
- }
- }
- .img-box {
- width: 526rpx;
- height: 526rpx;
- background: url('static/code_bg.png') no-repeat;
- background-size: 100% 100%;
- margin: 0 0 34rpx;
- image {
- width: 422rpx;
- height: 422rpx;
- }
- }
- }
- .bottom {
- padding: 28rpx 0 60rpx;
- .save {
- width: 296rpx;
- height: 96rpx;
- background: #E3E3E3;
- border-radius: 56rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #444444;
- padding: 0;
- line-height: 96rpx;
- }
- .invite {
- width: 352rpx;
- height: 96rpx;
- background: #00B0B0;
- border-radius: 48rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- padding: 0;
- line-height: 96rpx;
- }
- }
- .u-navbar {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- }
- }
- </style>
|