123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <template>
- <view>
- <u-mask :show="show" z-index="10000">
- <view class="warp">
- <view class="rect" @tap.stop>
- <!-- 关闭按钮 -->
- <view class="guanbiBox">
- <image src="../../static/images/origin/guanbi.png" class="guanbi" mode="" @click="showcos"></image>
- </view>
- <!-- 内容 -->
- <view>
- <image src="../../static/images/origin/banyuan.png" style="width: 100%;height: 44rpx;" mode=""></image>
- </view>
- <view style="padding: 30rpx;">
- <!-- 个人信息 -->
- <view class="user">
- <view>
- <image :src="listitem.headImage" style="width: 90rpx;height: 90rpx;border-radius: 50%;" mode=""></image>
- </view>
- <view style="margin-left: 20rpx;">
- <p style="margin-top: 5rpx; font-size: 28rpx;">{{ listitem.name }}</p>
- <p style="margin-top: 10rpx; font-size: 20rpx; color: #9A9A9A;">{{ listitem.extensionReason }}</p>
- </view>
- <view
- v-if="listitem.invitationCode"
- style="color: #C5AA7B;font-size: 24rpx;flex: 1; text-align: right;line-height: 90rpx;"
- >
- 邀请码:{{ listitem.invitationCode }}
- </view>
- </view>
- <!-- 图片宣传 -->
- <view class="flex-items-plus">
- <image :src="listitem.image" style="width: 450upx;height:450upx" mode=""></image>
- </view>
- <view style="display: flex;margin-top: 40upx;">
- <view style="flex: 1;line-height: 40rpx;">
- <p style="color: #343434;font-size: 24rpx;">点击二维码保存到本地长按识别小程序</p>
- <p style="color: #666666;font-size: 22rpx;">来自「shop商城」小程序</p>
- </view>
- <view v-if="listitem.ifLogo" style="margin-left: 60rpx;">
- <!-- <image src="../../static/images/origin/morentouxiang.png" style="width: 118rpx;height: 118rpx;" mode=""></image> -->
- <view class="qrimg-i" @click="saveQrcode">
- <TkiQrcode
- ref="qrcode2" cid="qrcode2" :val="erweima" :size="size"
- :onval="onval" :load-make="loadMake"
- :using-components="true"
- />
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 分享 -->
- <view class="fenx">
- <view class="shareBox">
- <button open-type="share">
- <view style="flex: 1;text-align: center;display: flex;" @click="WXfenx">
- <view style="margin-left: 120rpx;">
- <image src="../../static/images/origin/weixin2xx.png" mode=""></image>
- </view>
- <view style="margin-left: 10rpx;font-size: 28rpx;color: #333333">分享到微信</view>
- </view>
- </button>
- </view>
- <!-- <view class="share"> -->
- <!-- <button open-type="share"> -->
- <!-- <image :src="item.icon" mode='heightFix' @click="share_action"></image> -->
- <!-- <text>分享</text> -->
- <!-- </button> -->
- <!-- </view> -->
- <view class="linkBtnBox" @click="FZlianj">
- <view class="linkBox">
- <image src="../../static/images/origin/lianjie.png" mode=""></image>
- </view>
- <view style="margin-left: 10rpx;">
- 复制链接
- </view>
- </view>
- </view>
- </u-mask>
- </view>
- </template>
- <script>
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue'
- export default {
- components: { TkiQrcode: tkiQrcode },
- data() {
- return {
- size: 110, // 二维码大小
- onval: true, // val值变化时自动重新生成二维码
- loadMake: true, // 组件加载完成后自动生成二维码
- erweima: '',
- show: true,
- item: {},
- listitem: {},
- FindSalesPromQuery: {
- type: 2,
- tenantCode: ''
- },
- shopId: 0,
- distributorId: 0
- }
- },
- onLoad(item) {
- this.item = JSON.parse(item.tenantCode)
- this.shopId = item.shopId
- this.distributorId = item.distributorId
- this.erweima = '/pages_category_page1/store/index?storeId=' + this.shopId,
- this.getFindSalesPromConfig()
- },
- methods: {
- getFindSalesPromConfig() {
- NET.request(API.FindSalesPromConfig, {
- shopId: this.shopId,
- title: '邀请下级',
- distributorId: this.distributorId
- }, 'GET').then((res) => {
- this.listitem = res.data
- })
- .catch((res) => {
- })
- },
- showcos() {
- uni.navigateBack({
- delta: 1
- })
- },
- WXfenx() {
- },
- FZlianj() {
- // API.shareLink + '/h5/#/pages/store/index?storeId='+this.shopId+'&salesId='+this.salesId
- uni.setClipboardData({
- data: API.shareLink + '/#/pages_category_page1/store/index?storeId=' + this.shopId,
- success: (res) => {
- uni.showToast({
- title: '复制成功',
- icon: 'none',
- duration: 2000// 时间
- })
- }
- })
- },
- // 分享到朋友圈
- onShareTimeline(options) {
- const that = this
- const data = {
- title: '', // 默认是小程序的名称
- path: '/pages_category_page1/store/index?storeId=' + this.shopId,
- imageUrl: '', // 图片封面,本地文件路径、网络图片路,支持PNG及JPG,默认当前页面截图,显示图片长宽比是 5:4。
- success: (res) => {
- // 分享成功
- if (res.errMsg == 'shareAppMessage:ok') { }
- },
- fail: (res) => {
- // 用户取消
- if (res.errMsg == 'shareAppMessage:fail cancel') { }
- // 分享失败
- if (res.errMsg == 'shareAppMessage:fail') { }
- },
- complete: (res) => { }
- }
- return data
- },
- // 分享给好友
- onShareAppMessage(options) {
- var that = this
- // 设置菜单中的转发按钮触发转发事件时的转发内容
- var shareObj = {
- title: '', // 默认是小程序的名称(可以写slogan等)
- desc: '', // 小程序的描述
- path: '/pages_category_page1/store/index?storeId=' + this.shopId, // 默认是当前页面,必须是以‘/’开头的完整路径
- imageUrl: '', // 图片封面,本地文件路径、网络图片路,支持PNG及JPG,默认当前页面截图,显示图片长宽比是 5:4。
- success(res) {
- // 转发成功之后的回调
- if (res.errMsg == 'shareAppMessage:ok') {
- }
- },
- fail() {
- // 转发失败之后的回调
- if (res.errMsg == 'shareAppMessage:fail cancel') {
- // 用户取消转发
- } else if (res.errMsg == 'shareAppMessage:fail') {
- // 转发失败,其中 detail message 为详细失败信息
- }
- },
- complete() {
- // 转发结束之后的回调(转发成不成功都会执行)
- }
- }
- // 来自页面内的按钮的转发
- if (options.from == 'button') {
- var eData = options.target.dataset
- // 此处可以修改 shareObj 中的内容
- shareObj.path = '/pages_category_page1/store/index?storeId=' + this.shopId
- }
- // 返回shareObj
- return shareObj
- },
- saveQrcode() {
- this.$refs.qrcode._saveCode()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .guanbiBox {
- padding: 30upx 20upx;
- }
- .warp {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
- .qrimg-i {
- margin-right: 10px;
- }
- .guanbi {
- width: 46rpx;
- height: 46rpx;
- position: absolute;
- top: -100rpx;
- left: 50%;
- margin-left: -23rpx;
- }
- .rect {
- width: 75%;
- height: 65%;
- background-color: #fff;
- position: relative;
- .user {
- display: flex;
- }
- }
- .fenx {
- position: fixed;
- bottom: 118rpx;
- z-index: 10001;
- background-color: #F7F7F7;
- width: 100%;
- height: 98rpx;
- display: flex;
- color: #343434;
- view {
- line-height: 98rpx;
- }
- image {
- width: 50rpx;
- height: 50rpx;
- display: inline-block;
- margin-top: 25rpx;
- }
- }
- .linkBtnBox {
- flex: 1;
- text-align: center;
- display: flex;
- .linkBox {
- margin-left: 70rpx;
- }
- }
- // #ifdef H5
- .fenx {
- display: none;
- }
- // #endif
- </style>
|