2026-03-22 08:34:28 +08:00
|
|
|
|
const accessManager = require('../../utils/chapterAccessManager')
|
2026-02-23 14:07:41 +08:00
|
|
|
|
const app = getApp()
|
2026-03-17 18:22:06 +08:00
|
|
|
|
const { trackClick } = require('../../utils/trackClick')
|
2026-02-23 14:07:41 +08:00
|
|
|
|
|
|
|
|
|
|
Page({
|
|
|
|
|
|
data: {
|
|
|
|
|
|
statusBarHeight: 44,
|
|
|
|
|
|
isVip: false,
|
|
|
|
|
|
daysRemaining: 0,
|
|
|
|
|
|
expireDateStr: '',
|
|
|
|
|
|
price: 1980,
|
2026-02-24 14:35:58 +08:00
|
|
|
|
originalPrice: 6980,
|
2026-02-28 15:16:23 +08:00
|
|
|
|
/* 按 premium_membership_landing_v1 设计稿 */
|
2026-02-24 14:35:58 +08:00
|
|
|
|
contentRights: [
|
2026-03-23 18:38:23 +08:00
|
|
|
|
{ key: 'match', title: '匹配伙伴', desc: '精准匹配创业伙伴', icon: 'users' },
|
|
|
|
|
|
{ key: 'party', title: '派对专属', desc: '创业派对房专享', icon: 'star' },
|
|
|
|
|
|
{ key: 'rank', title: '老板排行', desc: '创业老板排行榜', icon: 'bar-chart' },
|
|
|
|
|
|
{ key: 'top', title: '轮流置顶', desc: '首页获客曝光位', icon: 'chevron-up' }
|
2026-02-24 14:35:58 +08:00
|
|
|
|
],
|
|
|
|
|
|
socialRights: [
|
2026-03-23 18:38:23 +08:00
|
|
|
|
{ key: 'cases', title: '案例宝库', desc: '100+赚钱案例库', icon: 'book-open' },
|
|
|
|
|
|
{ key: 'fullbook', title: '全书解锁', desc: '365天全案精读', icon: 'folder' },
|
|
|
|
|
|
{ key: 'daily', title: '每日总结', desc: 'AI每日精华推送', icon: 'lightbulb' },
|
|
|
|
|
|
{ key: 'leads', title: '获取客资', desc: '文章@你即可获客', icon: 'link' }
|
2026-02-24 14:35:58 +08:00
|
|
|
|
],
|
2026-02-23 14:07:41 +08:00
|
|
|
|
purchasing: false
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
onLoad() {
|
2026-02-27 14:22:58 +08:00
|
|
|
|
wx.showShareMenu({ withShareTimeline: true })
|
2026-02-23 14:07:41 +08:00
|
|
|
|
this.setData({ statusBarHeight: app.globalData.statusBarHeight })
|
|
|
|
|
|
this.loadVipInfo()
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
async loadVipInfo() {
|
|
|
|
|
|
const userId = app.globalData.userInfo?.id
|
|
|
|
|
|
if (!userId) return
|
|
|
|
|
|
try {
|
2026-02-25 11:50:07 +08:00
|
|
|
|
const res = await app.request({ url: `/api/miniprogram/vip/status?userId=${userId}`, silent: true })
|
2026-02-23 14:07:41 +08:00
|
|
|
|
if (res?.success) {
|
|
|
|
|
|
const d = res.data
|
|
|
|
|
|
let expStr = ''
|
|
|
|
|
|
if (d.expireDate) {
|
|
|
|
|
|
const dt = new Date(d.expireDate)
|
|
|
|
|
|
expStr = `${dt.getFullYear()}-${String(dt.getMonth()+1).padStart(2,'0')}-${String(dt.getDate()).padStart(2,'0')}`
|
|
|
|
|
|
}
|
2026-03-10 18:06:10 +08:00
|
|
|
|
// 同步 VIP 状态到全局(与「我的」页保持一致)
|
|
|
|
|
|
const isVip = !!d.isVip
|
|
|
|
|
|
app.globalData.isVip = isVip
|
|
|
|
|
|
app.globalData.vipExpireDate = d.expireDate || expStr || ''
|
|
|
|
|
|
const userInfo = app.globalData.userInfo || {}
|
|
|
|
|
|
userInfo.isVip = isVip
|
|
|
|
|
|
userInfo.vipExpireDate = app.globalData.vipExpireDate
|
|
|
|
|
|
app.globalData.userInfo = userInfo
|
|
|
|
|
|
wx.setStorageSync('userInfo', userInfo)
|
|
|
|
|
|
|
2026-02-23 14:07:41 +08:00
|
|
|
|
this.setData({
|
2026-03-10 18:06:10 +08:00
|
|
|
|
isVip,
|
2026-02-23 14:07:41 +08:00
|
|
|
|
daysRemaining: d.daysRemaining,
|
|
|
|
|
|
expireDateStr: expStr,
|
2026-02-24 14:35:58 +08:00
|
|
|
|
price: d.price || 1980
|
2026-02-23 14:07:41 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2026-02-24 14:35:58 +08:00
|
|
|
|
} catch (e) { console.log('[VIP] 加载失败', e) }
|
2026-02-23 14:07:41 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
async handlePurchase() {
|
2026-03-17 18:22:06 +08:00
|
|
|
|
trackClick('vip', 'btn_click', '开通VIP')
|
2026-02-24 14:35:58 +08:00
|
|
|
|
let userId = app.globalData.userInfo?.id
|
|
|
|
|
|
let openId = app.globalData.openId || app.globalData.userInfo?.open_id
|
|
|
|
|
|
if (!userId || !openId) {
|
|
|
|
|
|
wx.showLoading({ title: '登录中...', mask: true })
|
|
|
|
|
|
try {
|
|
|
|
|
|
await app.login()
|
|
|
|
|
|
userId = app.globalData.userInfo?.id
|
|
|
|
|
|
openId = app.globalData.openId || app.globalData.userInfo?.open_id
|
|
|
|
|
|
wx.hideLoading()
|
|
|
|
|
|
if (!userId || !openId) {
|
|
|
|
|
|
wx.showToast({ title: '登录失败,请重试', icon: 'none' })
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
wx.hideLoading()
|
|
|
|
|
|
wx.showToast({ title: '登录失败', icon: 'none' })
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-03-23 18:38:23 +08:00
|
|
|
|
// VIP 购买成功后再跳转资料页:购买前不拦截
|
2026-02-23 14:07:41 +08:00
|
|
|
|
this.setData({ purchasing: true })
|
2026-03-17 11:44:36 +08:00
|
|
|
|
const amount = this.data.price
|
2026-02-23 14:07:41 +08:00
|
|
|
|
try {
|
2026-03-17 11:44:36 +08:00
|
|
|
|
// 0. 尝试余额支付(若余额足够)
|
|
|
|
|
|
const referralCode = wx.getStorageSync('referral_code') || ''
|
|
|
|
|
|
try {
|
|
|
|
|
|
const balanceRes = await app.request({ url: `/api/miniprogram/balance?userId=${userId}`, silent: true })
|
|
|
|
|
|
const balance = balanceRes?.data?.balance || 0
|
|
|
|
|
|
if (balance >= amount) {
|
|
|
|
|
|
const consumeRes = await app.request({
|
|
|
|
|
|
url: '/api/miniprogram/balance/consume',
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
data: {
|
|
|
|
|
|
userId,
|
|
|
|
|
|
productType: 'vip',
|
|
|
|
|
|
productId: 'vip_annual',
|
|
|
|
|
|
amount,
|
|
|
|
|
|
referralCode: referralCode || undefined
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
if (consumeRes?.success) {
|
|
|
|
|
|
this.setData({ purchasing: false })
|
|
|
|
|
|
wx.showToast({ title: 'VIP开通成功', icon: 'success' })
|
|
|
|
|
|
await this._onVipPaymentSuccess()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.warn('[VIP] 余额支付失败,改用微信支付:', e)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 1. 微信支付
|
2026-02-24 14:35:58 +08:00
|
|
|
|
const payRes = await app.request('/api/miniprogram/pay', {
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
data: {
|
|
|
|
|
|
openId,
|
|
|
|
|
|
userId,
|
|
|
|
|
|
productType: 'vip',
|
|
|
|
|
|
productId: 'vip_annual',
|
2026-03-17 11:44:36 +08:00
|
|
|
|
amount,
|
2026-02-24 14:35:58 +08:00
|
|
|
|
description: '卡若创业派对VIP年度会员(365天)'
|
2026-02-23 14:07:41 +08:00
|
|
|
|
}
|
2026-02-24 14:35:58 +08:00
|
|
|
|
})
|
|
|
|
|
|
if (payRes?.success && payRes.data?.payParams) {
|
|
|
|
|
|
wx.requestPayment({
|
|
|
|
|
|
...payRes.data.payParams,
|
2026-03-06 12:12:13 +08:00
|
|
|
|
success: async () => {
|
2026-02-24 14:35:58 +08:00
|
|
|
|
wx.showToast({ title: 'VIP开通成功', icon: 'success' })
|
2026-03-06 12:12:13 +08:00
|
|
|
|
await this._onVipPaymentSuccess()
|
2026-02-24 14:35:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
fail: () => wx.showToast({ title: '支付取消', icon: 'none' })
|
|
|
|
|
|
})
|
2026-02-23 14:07:41 +08:00
|
|
|
|
} else {
|
2026-02-24 14:35:58 +08:00
|
|
|
|
wx.showToast({ title: payRes?.error || '支付参数获取失败', icon: 'none' })
|
2026-02-23 14:07:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.error('[VIP] 购买失败', e)
|
2026-02-24 14:35:58 +08:00
|
|
|
|
wx.showToast({ title: '购买失败,请稍后重试', icon: 'none' })
|
2026-02-23 14:07:41 +08:00
|
|
|
|
} finally { this.setData({ purchasing: false }) }
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2026-03-06 12:12:13 +08:00
|
|
|
|
async _onVipPaymentSuccess() {
|
|
|
|
|
|
wx.showLoading({ title: '同步权益中...', mask: true })
|
|
|
|
|
|
try {
|
|
|
|
|
|
await new Promise(r => setTimeout(r, 1500))
|
|
|
|
|
|
await accessManager.refreshUserPurchaseStatus()
|
2026-03-10 18:06:10 +08:00
|
|
|
|
// 重新拉取 VIP 状态并同步到全局
|
2026-03-06 12:12:13 +08:00
|
|
|
|
await this.loadVipInfo()
|
|
|
|
|
|
const pages = getCurrentPages()
|
|
|
|
|
|
pages.forEach(p => {
|
|
|
|
|
|
if (typeof p.initUserStatus === 'function') p.initUserStatus()
|
|
|
|
|
|
else if (typeof p.updateUserStatus === 'function') p.updateUserStatus()
|
|
|
|
|
|
})
|
2026-03-18 20:33:50 +08:00
|
|
|
|
|
2026-03-19 18:26:45 +08:00
|
|
|
|
// 超级个体购买后:弹窗提示,强制跳转资料编辑页
|
|
|
|
|
|
wx.hideLoading()
|
|
|
|
|
|
wx.showModal({
|
2026-03-23 18:38:23 +08:00
|
|
|
|
title: '补全 VIP 资料',
|
|
|
|
|
|
content: '补全资料后,找伙伴、提现与 VIP 群对接会更顺畅;手机号等为必填项。',
|
|
|
|
|
|
confirmText: '去填写',
|
2026-03-19 18:26:45 +08:00
|
|
|
|
showCancel: false,
|
|
|
|
|
|
success: () => {
|
|
|
|
|
|
wx.redirectTo({ url: '/pages/profile-edit/profile-edit?from=vip' })
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2026-03-06 12:12:13 +08:00
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.error('[VIP] 支付后同步失败:', e)
|
2026-03-19 18:26:45 +08:00
|
|
|
|
wx.hideLoading()
|
2026-03-06 12:12:13 +08:00
|
|
|
|
}
|
2026-03-18 20:33:50 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2026-03-06 15:16:19 +08:00
|
|
|
|
goBack() { getApp().goBackOrToHome() },
|
2026-02-25 11:47:36 +08:00
|
|
|
|
|
2026-03-23 18:38:23 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 权益卡片跳转:会员权利 / 派对权利 统一点击进对应能力页
|
|
|
|
|
|
*/
|
|
|
|
|
|
onBenefitTap(e) {
|
|
|
|
|
|
const key = e.currentTarget.dataset.key
|
|
|
|
|
|
if (!key) return
|
|
|
|
|
|
trackClick('vip', 'benefit_tap', key)
|
|
|
|
|
|
const tab = (path) => {
|
|
|
|
|
|
wx.switchTab({ url: path })
|
|
|
|
|
|
}
|
|
|
|
|
|
const nav = (path) => {
|
|
|
|
|
|
wx.navigateTo({ url: path })
|
|
|
|
|
|
}
|
|
|
|
|
|
const routes = {
|
|
|
|
|
|
match: () => tab('/pages/match/match'),
|
|
|
|
|
|
party: () => nav('/pages/mentors/mentors'),
|
|
|
|
|
|
rank: () => tab('/pages/index/index'),
|
|
|
|
|
|
top: () => tab('/pages/index/index'),
|
|
|
|
|
|
cases: () => tab('/pages/chapters/chapters'),
|
|
|
|
|
|
fullbook: () => tab('/pages/chapters/chapters'),
|
|
|
|
|
|
daily: () => tab('/pages/chapters/chapters'),
|
|
|
|
|
|
leads: () => nav('/pages/profile-edit/profile-edit')
|
|
|
|
|
|
}
|
|
|
|
|
|
const fn = routes[key]
|
|
|
|
|
|
if (typeof fn === 'function') fn()
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2026-02-25 11:47:36 +08:00
|
|
|
|
onShareAppMessage() {
|
|
|
|
|
|
const ref = app.getMyReferralCode()
|
|
|
|
|
|
return {
|
2026-03-20 11:31:04 +08:00
|
|
|
|
title: '卡若创业派对 - VIP会员',
|
2026-02-25 11:47:36 +08:00
|
|
|
|
path: ref ? `/pages/vip/vip?ref=${ref}` : '/pages/vip/vip'
|
|
|
|
|
|
}
|
2026-02-27 14:22:58 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
onShareTimeline() {
|
|
|
|
|
|
const ref = app.getMyReferralCode()
|
2026-03-20 11:31:04 +08:00
|
|
|
|
return { title: '卡若创业派对 - VIP会员', query: ref ? `ref=${ref}` : '' }
|
2026-02-25 11:47:36 +08:00
|
|
|
|
}
|
2026-02-23 14:07:41 +08:00
|
|
|
|
})
|