about.js 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. const common_vendor = require("../../common/vendor.js");
  3. const _sfc_main = {
  4. methods: {
  5. goBack() {
  6. common_vendor.index.navigateBack();
  7. },
  8. goToUserAgreement() {
  9. common_vendor.index.showToast({
  10. title: "用户协议",
  11. icon: "none"
  12. });
  13. },
  14. goToPrivacyPolicy() {
  15. common_vendor.index.showToast({
  16. title: "隐私政策",
  17. icon: "none"
  18. });
  19. }
  20. }
  21. };
  22. function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
  23. return {
  24. a: common_vendor.o((...args) => $options.goBack && $options.goBack(...args)),
  25. b: common_vendor.o((...args) => $options.goToUserAgreement && $options.goToUserAgreement(...args)),
  26. c: common_vendor.o((...args) => $options.goToPrivacyPolicy && $options.goToPrivacyPolicy(...args))
  27. };
  28. }
  29. const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-13a78ac6"]]);
  30. wx.createPage(MiniProgramPage);
  31. //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/about/about.js.map