需求:注册账号时,需要用户可以在线浏览注册协议。
1.注册页面关键代码
// html代码 <view class="word"> <text>我已阅读并同意</text ><text class="text" @click="previewFile" >《xxx服务平台协议》</text ><text>条款</text> </view> // js代码 // 预览协议的方法 previewFile() { uni.downloadFile({ url: "https://xxx.pdf", // 后端提供的pdf地址 success(res) { let path = res.tempFilePath; uni.openDocument({ filePath: res.tempFilePath, fileType: "pdf", showMenu: true, success: function (res) { console.log("打开文档成功"); }, fail: function (res) { uni.showToast({ title: "打开文档失败", }); }, }); }, }); },