Files
FreeERP.Applet/miniprogram/pages/agreement/agreement.ts

61 lines
1007 B
TypeScript
Raw Normal View History

import { base } from "@/utils/config";
2025-11-28 16:49:36 +08:00
Page({
/**
*
*/
data: {
type: "",
},
/**
* --
*/
onLoad(options) {
const appletName = base.appletName;
this.setData({ type: options.type });
2025-11-28 16:49:36 +08:00
wx.setNavigationBarTitle({
title: `${appletName}${
options.type == "user" ? "平台用户服务协议" : "隐私权政策"
}`,
2025-11-28 16:49:36 +08:00
});
},
/**
* --
*/
onReady() {},
/**
* --
*/
onShow() {},
/**
* --
*/
onHide() {},
/**
* --
*/
onUnload() {},
/**
* --
*/
onPullDownRefresh() {},
/**
*
*/
onReachBottom() {},
/**
*
*/
// onShareAppMessage() {
// }
});