join.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. <template>
  2. <view class="page">
  3. <!-- 加载中 -->
  4. <view class="loading" v-if="loading">
  5. <view class="loading-icon">⏳</view>
  6. <text class="loading-text">加载中...</text>
  7. </view>
  8. <!-- 邀请信息卡片(仅用于展示,不做交互) -->
  9. <view class="invite-card" v-if="!loading && inviteInfo">
  10. <view class="invite-header">
  11. <view class="invite-icon">🏠</view>
  12. <text class="invite-title">家庭邀请</text>
  13. </view>
  14. <view class="invite-body">
  15. <image
  16. class="inviter-avatar"
  17. :src="(inviteInfo.inviterAvatar || '/static/default-avatar.png')"
  18. mode="aspectFill"
  19. ></image>
  20. <text class="family-name">{{ inviteInfo.familyName }}</text>
  21. <text class="inviter" v-if="inviteInfo.inviterName">
  22. 邀请人:{{ inviteInfo.inviterName }}
  23. </text>
  24. <text class="member-count">
  25. 已有 {{ inviteInfo.memberCount }} 位家庭成员
  26. </text>
  27. </view>
  28. <view class="action-area">
  29. <text class="tip-text">{{ tipText }}</text>
  30. <button class="btn btn-primary" @tap="goNext" :disabled="redirecting">
  31. <text v-if="!redirecting">{{ btnText }}</text>
  32. <text v-else>跳转中...</text>
  33. </button>
  34. </view>
  35. </view>
  36. <!-- 推广码绑定卡片(兼容旧链接) -->
  37. <view class="invite-card" v-if="!loading && refCode && !bindDone">
  38. <view class="invite-header">
  39. <view class="invite-icon">🤝</view>
  40. <text class="invite-title">推广绑定</text>
  41. </view>
  42. <view class="invite-body">
  43. <text class="member-count">推荐人推广码:{{ refCode }}</text>
  44. </view>
  45. <view class="action-area" v-if="isLoggedIn">
  46. <button class="btn btn-primary" @tap="bindRef" :disabled="bindLoading">
  47. <text v-if="!bindLoading">绑定推荐人</text>
  48. <text v-else>绑定中...</text>
  49. </button>
  50. <text class="tip-text">绑定后该推荐人后续消费时记入其家庭公共账户</text>
  51. </view>
  52. <view class="action-area" v-else>
  53. <button class="btn btn-primary" @tap="goLoginWithRef" :disabled="loginLoading">
  54. <text v-if="!loginLoading">微信一键登录</text>
  55. <text v-else>登录中...</text>
  56. </button>
  57. <text class="tip-text">登录后可绑定推荐人</text>
  58. </view>
  59. </view>
  60. <!-- 推广码绑定成功 -->
  61. <view class="invite-card" v-if="!loading && refCode && bindDone">
  62. <view class="success-area">
  63. <view class="success-icon">✅</view>
  64. <text class="success-text">绑定成功</text>
  65. <text class="success-sub">已绑定推荐人,可进入首页探索</text>
  66. <button class="btn btn-primary" @tap="goHome">进入首页</button>
  67. </view>
  68. </view>
  69. <!-- 邀请无效 -->
  70. <view class="error-card" v-if="!loading && error">
  71. <view class="error-icon">❌</view>
  72. <text class="error-text">{{ error }}</text>
  73. <button class="btn btn-outline" @tap="goHome">返回首页</button>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. import { validateInvitation, validateFamilyCode, checkUserFamily, bindReferral } from '@/utils/api.js'
  79. export default {
  80. data() {
  81. return {
  82. // 家庭邀请码(单一参数)
  83. familyInviteCode: '',
  84. // 推广码(兼容)
  85. refCode: '',
  86. bindLoading: false,
  87. bindDone: false,
  88. loading: true,
  89. loginLoading: false,
  90. redirecting: false,
  91. isLoggedIn: false,
  92. inviteInfo: null,
  93. familyStatus: null,
  94. error: '',
  95. // 动态文案
  96. tipText: '',
  97. btnText: ''
  98. }
  99. },
  100. onLoad(query) {
  101. this._onLoadFired = true
  102. query = query || {}
  103. // 0. 防御:若 URL 直接带 familyInviteCode(未经过本页分享链路的直达场景),
  104. // 确保本地 pendingFamilyInviteCode 已写入,供 user-edit 识别家庭邀请流程
  105. if (query.familyInviteCode) {
  106. uni.setStorageSync('pendingFamilyInviteCode', query.familyInviteCode)
  107. }
  108. // 1. 解析家庭邀请码(单一参数,兼容 inviteCode/familyInviteCode/token)
  109. // token 为家庭成员管理页(family-members.vue)分享卡片/小程序码传入的邀请令牌,值与邀请码一致
  110. var familyInviteCode = query.familyInviteCode || query.inviteCode || query.token || ''
  111. if (!familyInviteCode && query.scene) {
  112. var sceneDecoded = decodeURIComponent(query.scene)
  113. // 支持 scene=invite=xxx(小程序码)、fam_xxx 或 ref=xxx 格式
  114. if (sceneDecoded.indexOf('invite=') === 0) {
  115. familyInviteCode = sceneDecoded.substring(7)
  116. } else if (sceneDecoded.indexOf('fam_') === 0) {
  117. familyInviteCode = sceneDecoded
  118. } else if (sceneDecoded.indexOf('ref=') === 0) {
  119. // ref=xxx 归为推广码
  120. } else if (sceneDecoded.length >= 6) {
  121. // 兜底:长度>=6 视为家庭邀请码
  122. familyInviteCode = familyInviteCode || sceneDecoded
  123. }
  124. }
  125. // 2. 解析推广码(兼容旧链接)
  126. var refCode = query.refCode || ''
  127. if (!refCode && query.scene) {
  128. var sceneDecoded = decodeURIComponent(query.scene)
  129. if (sceneDecoded.indexOf('ref=') === 0) {
  130. refCode = sceneDecoded.substring(4)
  131. }
  132. }
  133. // 3. 无任何有效参数 -> 首页
  134. if (!familyInviteCode && !refCode) {
  135. uni.reLaunch({ url: '/pages/index-home/index' })
  136. return
  137. }
  138. // 4. 有家庭邀请码 -> 存储并校验
  139. if (familyInviteCode) {
  140. this.familyInviteCode = familyInviteCode
  141. // 存入本地,供登录页/个人信息页使用
  142. uni.setStorageSync('pendingFamilyInviteCode', familyInviteCode)
  143. // 必须先初始化登录状态:已登录用户走"去完善信息"直达个人信息页,未登录才引导去登录
  144. this.checkLoginStatus()
  145. this.validateFamilyInvite(familyInviteCode)
  146. return
  147. }
  148. // 5. 仅有推广码 -> 走原有推广绑定流程
  149. this.refCode = refCode
  150. this.loading = false
  151. this.checkLoginStatus()
  152. },
  153. onShow() {
  154. // 首次进入:onLoad 已处理,跳过避免双发;从登录页返回时重新检查
  155. if (this._onLoadFired) {
  156. this._onLoadFired = false
  157. return
  158. }
  159. // 从登录页返回,重新检查
  160. if (this.familyInviteCode) {
  161. this.checkLoginStatus()
  162. if (!this.inviteInfo) {
  163. this.validateFamilyInvite(this.familyInviteCode)
  164. }
  165. } else if (this.refCode) {
  166. this.checkLoginStatus()
  167. }
  168. },
  169. methods: {
  170. checkLoginStatus() {
  171. var token = uni.getStorageSync('token')
  172. this.isLoggedIn = !!token
  173. },
  174. // 校验家庭邀请码有效性(仅获取家庭信息用于展示)
  175. // 兼容两种格式:32位hex为邀请令牌token(走 validateInvitation),否则为家庭短邀请码(走 validateFamilyCode)
  176. async validateFamilyInvite(code) {
  177. this.loading = true
  178. try {
  179. var isToken = /^[0-9a-fA-F]{32}$/.test(code)
  180. var res = isToken ? await validateInvitation(code) : await validateFamilyCode(code)
  181. if (res && res.code === 200) {
  182. this.inviteInfo = res.data
  183. // 已登录用户:检查是否已在目标家庭
  184. if (this.isLoggedIn) {
  185. await this.checkFamilyAndRedirect()
  186. } else {
  187. // 未登录:设置文案引导去登录
  188. this.setRedirectInfo(false)
  189. this.loading = false
  190. }
  191. } else {
  192. this.error = '邀请已失效'
  193. this.loading = false
  194. }
  195. } catch (e) {
  196. this.error = e.message || '邀请验证失败'
  197. this.loading = false
  198. }
  199. },
  200. // 检查家庭状态并决定跳转
  201. async checkFamilyAndRedirect() {
  202. try {
  203. var res = await checkUserFamily()
  204. if (res && res.data) {
  205. this.familyStatus = res.data
  206. // 同步 familyId
  207. if (res.data.inFamily && res.data.familyId) {
  208. this.$store && this.$store.commit('setFamilyId', res.data.familyId)
  209. uni.setStorageSync('familyId', res.data.familyId)
  210. }
  211. // 已在目标家庭 -> 直接进首页
  212. if (this.inviteInfo && this.familyStatus.inFamily &&
  213. this.familyStatus.familyId === this.inviteInfo.familyId) {
  214. this.setRedirectInfo(true)
  215. this.loading = false
  216. // 延迟跳转,让用户看到成功提示
  217. setTimeout(() => this.goHome(), 1000)
  218. return
  219. }
  220. // 不在目标家庭 -> 去完善个人信息页提交申请
  221. this.setRedirectInfo(false)
  222. this.loading = false
  223. } else {
  224. this.setRedirectInfo(false)
  225. this.loading = false
  226. }
  227. } catch (e) {
  228. console.log('检查家庭状态失败', e)
  229. this.setRedirectInfo(false)
  230. this.loading = false
  231. }
  232. },
  233. setRedirectInfo(isInTargetFamily) {
  234. if (isInTargetFamily) {
  235. this.tipText = '您已是该家庭成员'
  236. this.btnText = '进入首页'
  237. } else {
  238. this.tipText = '完善个人信息后将自动提交加入申请'
  239. this.btnText = '去完善信息'
  240. }
  241. },
  242. // 统一跳转逻辑
  243. goNext() {
  244. if (this.redirecting) return
  245. this.redirecting = true
  246. // 已在目标家庭 -> 直接进首页
  247. if (this.inviteInfo && this.familyStatus && this.familyStatus.inFamily &&
  248. this.familyStatus.familyId === this.inviteInfo.familyId) {
  249. this.redirecting = false
  250. this.goHome()
  251. return
  252. }
  253. // 未登录:先去登录(pendingFamilyInviteCode 已存本地,登录后新用户流程会提交加入申请)
  254. if (!this.isLoggedIn) {
  255. this.redirecting = false
  256. this.goLogin()
  257. return
  258. }
  259. // 已登录但不在目标家庭:跳个人信息完善页。
  260. // 需带 token+userId+autoParent=true,让 user-edit 进入 isNewUserFlow 模式,
  261. // 才会显示「家庭身份」下拉并在保存时提交加入申请(requestJoinByCode)
  262. this.goUserEdit()
  263. },
  264. // 已登录用户跳转个人信息完善页(新用户家庭邀请流程)
  265. goUserEdit() {
  266. var token = uni.getStorageSync('token') || ''
  267. var userId = uni.getStorageSync('userId') || ''
  268. uni.navigateTo({
  269. url: '/pages/user-edit/user-edit?token=' + encodeURIComponent(token) +
  270. '&userId=' + userId +
  271. '&autoParent=true' +
  272. '&familyInviteCode=' + encodeURIComponent(this.familyInviteCode || '')
  273. })
  274. },
  275. goHome() {
  276. uni.reLaunch({ url: '/pages/index-home/index' })
  277. },
  278. // 登录页跳转(带上邀请码)
  279. goLogin() {
  280. uni.navigateTo({
  281. url: '/pages/login/login?familyInviteCode=' + this.familyInviteCode
  282. })
  283. },
  284. // 推广码场景:去登录
  285. goLoginWithRef() {
  286. uni.navigateTo({
  287. url: '/pages/login/login?refCode=' + this.refCode
  288. })
  289. },
  290. // 推广码绑定
  291. async bindRef() {
  292. if (!this.refCode) {
  293. uni.showToast({ title: '推广码为空', icon: 'none' })
  294. return
  295. }
  296. this.bindLoading = true
  297. try {
  298. var res = await bindReferral(this.refCode)
  299. if (res && res.code === 200) {
  300. this.bindDone = true
  301. uni.showToast({ title: '绑定成功', icon: 'success' })
  302. } else {
  303. uni.showToast({ title: (res && res.message) || '绑定失败', icon: 'none' })
  304. }
  305. } catch (e) {
  306. uni.showToast({ title: e.message || '绑定失败', icon: 'none' })
  307. }
  308. this.bindLoading = false
  309. }
  310. }
  311. }
  312. </script>
  313. <style scoped>
  314. .page {
  315. padding: 32rpx;
  316. min-height: 100vh;
  317. background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
  318. display: flex;
  319. flex-direction: column;
  320. align-items: center;
  321. }
  322. .loading {
  323. display: flex;
  324. flex-direction: column;
  325. align-items: center;
  326. justify-content: center;
  327. min-height: 60vh;
  328. }
  329. .loading-icon {
  330. font-size: 80rpx;
  331. margin-bottom: 20rpx;
  332. }
  333. .loading-text {
  334. color: #666;
  335. font-size: 28rpx;
  336. }
  337. .invite-card {
  338. width: 100%;
  339. max-width: 600rpx;
  340. background: #FFFFFF;
  341. border-radius: 24rpx;
  342. padding: 40rpx;
  343. box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 008);
  344. margin-top: 10vh;
  345. }
  346. .invite-header {
  347. display: flex;
  348. flex-direction: column;
  349. align-items: center;
  350. margin-bottom: 32rpx;
  351. }
  352. .invite-icon {
  353. font-size: 80rpx;
  354. margin-bottom: 16rpx;
  355. }
  356. .invite-title {
  357. font-size: 32rpx;
  358. font-weight: 700;
  359. color: #1E293B;
  360. }
  361. .invite-body {
  362. display: flex;
  363. flex-direction: column;
  364. align-items: center;
  365. margin-bottom: 40rpx;
  366. padding: 24rpx;
  367. background: #FFF7ED;
  368. border-radius: 16rpx;
  369. }
  370. .family-name {
  371. font-size: 40rpx;
  372. font-weight: 700;
  373. color: #F97316;
  374. margin-bottom: 12rpx;
  375. }
  376. .inviter {
  377. font-size: 28rpx;
  378. color: #64748B;
  379. margin-bottom: 8rpx;
  380. }
  381. .inviter-avatar {
  382. width: 80rpx;
  383. height: 80rpx;
  384. border-radius: 50%;
  385. margin-bottom: 12rpx;
  386. background: #F1F5F9;
  387. }
  388. .member-count {
  389. font-size: 24rpx;
  390. color: #94A3B8;
  391. }
  392. .action-area {
  393. display: flex;
  394. flex-direction: column;
  395. gap: 16rpx;
  396. width: 100%;
  397. }
  398. .tip-text {
  399. font-size: 24rpx;
  400. color: #94A3B8;
  401. text-align: center;
  402. }
  403. .btn {
  404. width: 100%;
  405. padding: 28rpx;
  406. border-radius: 16rpx;
  407. font-size: 30rpx;
  408. font-weight: 600;
  409. text-align: center;
  410. border: none;
  411. }
  412. .btn-primary {
  413. background: linear-gradient(135deg, #F97316, #EA580C);
  414. color: #FFFFFF;
  415. }
  416. .btn-primary:disabled {
  417. opacity: 06;
  418. }
  419. .btn-outline {
  420. background: #FFFFFF;
  421. color: #F97316;
  422. border: 2rpx solid #F97316;
  423. }
  424. .success-area {
  425. display: flex;
  426. flex-direction: column;
  427. align-items: center;
  428. gap: 16rpx;
  429. }
  430. .success-icon {
  431. font-size: 80rpx;
  432. }
  433. .success-text {
  434. font-size: 36rpx;
  435. font-weight: 700;
  436. color: #16A34A;
  437. }
  438. .success-sub {
  439. font-size: 28rpx;
  440. color: #6B7280;
  441. margin-bottom: 24rpx;
  442. }
  443. .error-card {
  444. width: 100%;
  445. max-width: 600rpx;
  446. background: #FFFFFF;
  447. border-radius: 24rpx;
  448. padding: 60rpx 40rpx;
  449. display: flex;
  450. flex-direction: column;
  451. align-items: center;
  452. gap: 20rpx;
  453. margin-top: 10vh;
  454. }
  455. .error-icon {
  456. font-size: 80rpx;
  457. }
  458. .error-text {
  459. font-size: 30rpx;
  460. color: #6B7280;
  461. text-align: center;
  462. }
  463. </style>