| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- statusBarHeight: 20,
- agreementNodes: `
- <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>
- <h3 style="color: #000; margin-top: 20px;">3. 知识产权</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)),
- b: $data.statusBarHeight + "px",
- c: $data.agreementNodes,
- d: $options.scrollHeight
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-85e80c25"]]);
- wx.createPage(MiniProgramPage);
- //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/mine/agreement.js.map
|