| 12345678910111213141516171819202122232425262728293031 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- methods: {
- goBack() {
- common_vendor.index.navigateBack();
- },
- goToUserAgreement() {
- common_vendor.index.showToast({
- title: "用户协议",
- icon: "none"
- });
- },
- goToPrivacyPolicy() {
- common_vendor.index.showToast({
- title: "隐私政策",
- icon: "none"
- });
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_vendor.o((...args) => $options.goBack && $options.goBack(...args)),
- b: common_vendor.o((...args) => $options.goToUserAgreement && $options.goToUserAgreement(...args)),
- c: common_vendor.o((...args) => $options.goToPrivacyPolicy && $options.goToPrivacyPolicy(...args))
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-13a78ac6"]]);
- wx.createPage(MiniProgramPage);
- //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/about/about.js.map
|