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