privacy.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. "use strict";
  2. const common_vendor = require("../../common/vendor.js");
  3. const _sfc_main = {
  4. data() {
  5. return {
  6. statusBarHeight: 20,
  7. privacyNodes: `
  8. <div style="line-height: 1.8; color: #444; font-size: 14px;">
  9. <h3 style="color: #000; margin-top: 20px;">1. 我们收集的信息</h3>
  10. <p>我们仅收集实现业务功能所必需的信息。包括您的登录手机号、企业授权名称、操作日志以及必要业务参数。</p>
  11. <h3 style="color: #000; margin-top: 20px;">2. 信息安全保障</h3>
  12. <p>我们采用行业标准的加密技术对您的数据进行存储,并建立了严格的内部访问控制体系。</p>
  13. </div>
  14. `
  15. };
  16. },
  17. computed: {
  18. scrollHeight() {
  19. return `calc(100vh - ${this.statusBarHeight + 44}px)`;
  20. }
  21. },
  22. onLoad() {
  23. const info = common_vendor.index.getSystemInfoSync();
  24. this.statusBarHeight = info.statusBarHeight;
  25. },
  26. methods: {
  27. goBack() {
  28. common_vendor.index.navigateBack();
  29. }
  30. }
  31. };
  32. function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
  33. return {
  34. a: common_vendor.o((...args) => $options.goBack && $options.goBack(...args)),
  35. b: $data.statusBarHeight + "px",
  36. c: $data.privacyNodes,
  37. d: $options.scrollHeight
  38. };
  39. }
  40. const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-e3a5845b"]]);
  41. wx.createPage(MiniProgramPage);
  42. //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/mine/privacy.js.map