信达小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
13 KiB

1 month ago
const app = getApp<IAppOption>()
Page({
data: {
durgInfo: {},
pagePath: '',
id: '',
Content: `<p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;">知情同意书</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> </span></p><p style="line-height: 1.5;"><br></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;">【重症肌无力患者支持“gMG给力加油站”项目】(以下简称“我们”)深知个人信息对您的重要性,并会尽全力保护您的个人信息安全可靠。我们致力于维持您对我们的信任,恪守以下原则,保护您的个人信息:权责一致原则、目的明确原则、选择同意原则、最少用原则、确保安全原则、公开透明原则等。同时,我们承诺,我们将按照业界成熟的安全标准,采取相应的安全保护措施来保护您的个人信息</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 请在使用我们的产品(或服务)前,仔细阅读并立即本《知情同意书》。</span></p><p style="line-height: 1.5;"><br></p><p style="line-height: 1.5;"><br></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 一、我们如何收集和使用您的个人信息</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 个人信息是指以电子或者其它方式记录的能够单独或者与其它信息结合识别特定自然人身份或者反映特定自然人活动情况的各种信息。</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 我们仅会处于以下目的,收集和使用您的个人信息</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; &nbsp;1、注册成为用户:为完成创建账号,你需提供以下信息:</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 你的姓名、手机号码,年龄,性别,重症肌无力疾病确诊证明材料。您提供的上述信息,将在您使用本服务期间持续授权我们使用。在您注销账号时,我们将停止使用并删除上述信息。</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; &nbsp;2、个性化推荐疾病知识及服务:为了给您提供个性化的疾病知识及推荐服务,我们将记录您在使用本服务期间的就诊记录、预约信息、内容的浏览记录等。在您注销账号时,我们将停止使用并删除上述信息。</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; &nbsp; 3,用药患者支持模块的注册将需要提供,你的姓名,手机号,年龄 性别 用药处方信息的证明材料,您提供的上述信息,将在您使用本服务期间持续授权我们使用。在您注销账号时,我们将停止使用并删除上述信息。</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; &nbsp;4、中心内部数据分析和研究:我们收集数据是根据您与我们的互动和您做出的选择,包括隐私设置以及IP地址、设备型号等;我们要将信息用于本文未载明的其它用途时,会事先征求您的同意。</span></p><p style="line-height: 1.5;"><br></p><p style="line-height: 1.5;"><br></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 二、我们如何共享、转让、披露您的个人信息</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; (一)共享</span></p><p style="line-height: 1.5;"><span style="color: rgb(89, 89, 89); font-size: 14px;"> &nbsp; &nbsp; 我们不会向其它任何公司、组织和个人分享您的个人信息,但以下情况除外:</span></p><p style="line-height: 1.5;"><span style="color: rgb
},
onLoad(options) {
this.setData({
pagePath: options.page,
id: options.id,
})
app.waitLogin({ isReg: false, loginPage: true }).then(() => {
app.zdMpBehavior({ PageName: 'PG_PATIENTINFORMEDCONSENT' })
})
},
handleBack() {
app.zdMpBehavior({ PageName: 'BTN_PATIENTCONSENTDISAGREE' })
wx.navigateBack()
},
handleSure(e) {
app.zdMpBehavior({ PageName: 'BTN_PATIENTCONSENTAGREE' })
const { replace } = e.currentTarget.dataset
const { pagePath, id } = this.data
if (replace) {
wx.redirectTo({
url: `${pagePath}?ignoreAgreement=1` + `&id=${id}`,
})
} else {
wx.navigateTo({
url: `${pagePath}?page=/pages/enterInfo/index&ignoreAgreement=1&id=${id}&proces=1`,
})
}
},
})
export {}