048f25f580
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>
16 lines
295 B
JavaScript
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();
|
|
},
|
|
});
|