Files
memind/miniapp/pages/legal/index/index.js
john 048f25f580 feat(miniapp): add privacy consent and legal pages
Show privacy popup on launch, gate login on legal consent, and link
user agreement and privacy policy pages in the mini program.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 12:18:54 +08:00

16 lines
295 B
JavaScript

const { openPrivacyContract } = require('../../../utils/privacy');
Page({
openTerms() {
wx.navigateTo({ url: '/pages/legal/terms/index' });
},
openPrivacy() {
wx.navigateTo({ url: '/pages/legal/privacy/index' });
},
openWechatPrivacy() {
openPrivacyContract();
},
});