You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.4 KiB
101 lines
2.4 KiB
<template> |
|
<view class="page"> |
|
<view class="wrap"> |
|
<view class="info"> |
|
<image class="avatar" :src="avatar" mode=""></image> |
|
<view class="text"> |
|
<view class="invite"> |
|
<text class="name">{{ userName }}</text> 邀请你加入 |
|
</view> |
|
<view class="com">{{ team.partnerClassificationName }}</view> |
|
</view> |
|
</view> |
|
<view class="qrcode"> |
|
<u-qrcode ref="qrcode" canvas-id="qrcode" :size="size" :value="link"></u-qrcode> |
|
</view> |
|
<view class="tips">扫一扫,加入我们吧</view> |
|
<view class="warn">邀请二维码失效日期:{{ expireTime }}</view> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { generateInvitationCode } from '@/apis/modules/parner.js' |
|
export default { |
|
data() { |
|
return { |
|
avatar: uni.getStorageSync('avatar') || '@/static/image/avatar.png', |
|
userName: uni.getStorageSync('userName'), |
|
expireTime: '', |
|
qrcode: '', |
|
link: '', |
|
size: uni.upx2px(420), |
|
team: uni.getStorageSync('team') |
|
} |
|
}, |
|
onShow() { |
|
this.getQrcode() |
|
|
|
}, |
|
methods: { |
|
// 生成二维码 |
|
getQrcode() { |
|
const { team } = this |
|
generateInvitationCode(uni.getStorageSync('team').accountId).then(({ expireTime }) => { |
|
const date = new Date(Date.now() + expireTime * 1000) // 返回的秒,要*1000 |
|
this.expireTime = `${date.getFullYear()}-${this.$util.preZero(date.getMonth() + 1)}-${this.$util.preZero(date.getDate())} ${this.$util.preZero(date.getHours())}:${this.$util.preZero(date.getMinutes())}:${this.$util.preZero(date.getMinutes())}` |
|
const team = this.team |
|
// this.link = `http://39.108.250.202/nakadai/#/join?accountId=${team.accountId}&id=${team.partnerId}` |
|
this.link = `http://192.168.31.126:8086/#/join?accountId=${team.accountId}&id=${team.teamId}&isTeam=0` |
|
}).catch(e => {}) |
|
}, |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.page { |
|
overflow: hidden; |
|
} |
|
.wrap { |
|
padding: 40rpx 80rpx; |
|
margin: 120rpx 80rpx 0; |
|
text-align: center; |
|
background-color: #fff; |
|
.info { |
|
display: flex; |
|
align-items: center; |
|
text-align: left; |
|
} |
|
.avatar { |
|
width: 80rpx; |
|
height: 80rpx; |
|
margin-right: 20rpx; |
|
border-radius: 50%; |
|
} |
|
.invite { |
|
margin-bottom: 10rpx; |
|
font-size: 26rpx; |
|
} |
|
.name { |
|
margin-right: 5rpx; |
|
font-size: 30rpx; |
|
color: $uni-primary; |
|
} |
|
.com { |
|
font-size: 30rpx; |
|
} |
|
.qrcode { |
|
margin-top: 80rpx; |
|
} |
|
.tips { |
|
margin: 80rpx 0 20rpx; |
|
font-size: 12px; |
|
color: #333; |
|
} |
|
.warn { |
|
font-size: 24rpx; |
|
color: #f00; |
|
} |
|
} |
|
</style>
|
|
|